/* ==========================================================================
   Future Studios Bangladesh — Coming Soon
   Monochrome maintenance page. Static, no build step.
   ========================================================================== */

:root {
  --ink: #F4F4F2;
  --bg: #0A0A0A;
  --hairline: rgba(244, 244, 242, 0.16);
  --muted: rgba(244, 244, 242, 0.55);
  --body: rgba(244, 244, 242, 0.82);
  --shell-max: 1760px;
  --pad-x: clamp(20px, 3vw, 56px);
  --sans: Archivo, Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: #9A9A98; }

::selection { background: var(--ink); color: var(--bg); }


/* Page shell
   ========================================================================== */

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vh, 72px);
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: var(--pad-x);
}


/* Background layers
   ========================================================================== */

.bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(244, 244, 242, 0.055) 0 1px, transparent 1px 25%);
  background-position: center;
}

.bg-pixels {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


/* Masthead
   ========================================================================== */

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-bottom: clamp(16px, 2vw, 26px);
  border-bottom: 1px solid var(--hairline);
}

.logo {
  display: block;
  height: clamp(17px, 2vw, 32px);
  width: auto;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  animation: fsb-blink 2.4s ease-in-out infinite;
}

.status-label {
  font-family: var(--mono);
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 244, 242, 0.78);
}


/* Hero
   ========================================================================== */

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(32px, 5vh, 64px);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(28px, 4vw, 72px);
}

.hero-head {
  flex: 1 1 min(100%, 560px);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 clamp(14px, 2vh, 26px);
  font-family: var(--mono);
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 244, 242, 0.6);
}

.headline {
  margin: 0;
  font-weight: 900;
  font-size: clamp(3.6rem, 13.2vw, 16rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.headline span {
  display: inline-block;
  transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.headline span:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-0.035em);
}

.hero-note {
  flex: 0 1 min(100%, 420px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: clamp(4px, 1vh, 16px);
}

.hero-note p {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.55;
  color: var(--body);
  text-wrap: pretty;
}

.rule {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(244, 244, 242, 0.4);
}


/* Meta row
   ========================================================================== */

.meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(20px, 2.4vw, 40px);
  padding-top: clamp(20px, 2.6vh, 32px);
  border-top: 1px solid var(--hairline);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-value {
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
}

.meta-value--mono {
  font-family: var(--mono);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}


/* Notify
   ========================================================================== */

.notify {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.notify-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  border-bottom: 1px solid rgba(244, 244, 242, 0.34);
}

.notify-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 18px);
}

.notify-form input::placeholder { color: rgba(244, 244, 242, 0.34); }

.notify-form button {
  flex: none;
  padding: 10px 0;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.16s ease;
}

.notify-form button:hover { opacity: 0.55; }

.notify-done {
  margin: 0;
  padding: 10px 0;
  width: 100%;
  max-width: 460px;
  border-bottom: 1px solid rgba(244, 244, 242, 0.34);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
}

[hidden] { display: none !important; }


/* Ticker
   ========================================================================== */

.ticker {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
}

.ticker-track {
  display: flex;
  flex: none;
  white-space: nowrap;
  padding: clamp(12px, 1.6vw, 22px) 0;
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 42px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  animation: fsb-marquee 38s linear infinite;
}

.ticker-track span { padding: 0 clamp(16px, 2vw, 32px); }
.ticker-track .dim { color: rgba(244, 244, 242, 0.42); }


/* Footer
   ========================================================================== */

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 244, 242, 0.62);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(14px, 1.6vw, 20px) var(--pad-x);
}


/* Motion
   ========================================================================== */

@keyframes fsb-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-100%, 0, 0); }
}

@keyframes fsb-blink {
  0%, 44%  { opacity: 1; }
  50%, 94% { opacity: 0.12; }
  100%     { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .status-dot { animation: none; }
  .headline span { transition: none; }
}
