/* ============================================================
   COMING SOON — style.css
   ============================================================ */

/* ─── Reset & Variables ──────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-deep:    #07111f;
  --blue-wall:    #0c1d38;
  --steel:        #1e4a8a;
  --ice:          #4a8fd4;
  --ice-light:    #6aaee8;
  --white:        #dce8f5;
  --muted:        #6a8aaa;
  --dim:          #2e4e72;
  --glass:        rgba(8, 18, 36, 0.6);
  --glass-border: rgba(74, 143, 212, 0.2);
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  color: var(--white);
}

/* ─── Wall Background ─────────────────────────────────────── */
.wall {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg,   transparent, transparent 59px,  rgba(0,0,0,0.18) 59px,  rgba(0,0,0,0.18) 60px),
    repeating-linear-gradient(90deg,  transparent, transparent 119px, rgba(0,0,0,0.10) 119px, rgba(0,0,0,0.10) 120px),
    linear-gradient(170deg, #112244 0%, #0a1a32 45%, #060f1c 100%);
}

.wall::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50%   -8%,  rgba(26, 58,120,0.60) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at  0%  100%,  rgba( 5, 12, 24,0.85) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 100% 100%,  rgba( 5, 12, 24,0.85) 0%, transparent 55%);
}

.wall::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ─── Scanlines ───────────────────────────────────────────── */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.025) 2px,
    rgba(0, 0, 0, 0.025) 4px
  );
}

/* ─── Page Layout ─────────────────────────────────────────── */
.layout {
  position: relative;
  z-index: 10;
  width: min(620px, 93vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pageIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* ─── Header Text ─────────────────────────────────────────── */
.site-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.6;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.15s both;
}

.headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 11vw, 88px);
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--white);
  text-shadow: 0 0 80px rgba(74,143,212,0.28), 0 4px 32px rgba(0,0,0,0.7);
  margin-bottom: 8px;
  animation: fadeUp 0.7s 0.28s both;
}

.headline span {
  color: var(--ice);
}

.sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 42px;
  animation: fadeUp 0.7s 0.42s both;
}

/* ─── Glass Card ──────────────────────────────────────────── */
.glass-card {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-top-color: rgba(74, 143, 212, 0.35);
  border-radius: 2px;
  padding: 44px 44px 38px;
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 30px 90px rgba(0, 0, 12, 0.55),
    inset 0 1px 0 rgba(74, 143, 212, 0.22);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s 0.55s both;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,143,212,0.7), transparent);
}

/* ─── Clock Section ───────────────────────────────────────── */
.clock-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin-bottom: 34px;
}

/* Analog Clock */
.clock-face {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: radial-gradient(circle at 38% 32%, #162e52, #040d1c);
  border: 1.5px solid rgba(74, 143, 212, 0.3);
  box-shadow:
    0 0 0 5px rgba(6, 14, 28, 0.7),
    0 0 0 6px rgba(74, 143, 212, 0.1),
    0 14px 50px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(74, 143, 212, 0.18),
    inset 0 0 40px rgba(0, 0, 12, 0.6);
}

.clock-face canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.clock-center {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ice);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 10px var(--ice), 0 0 20px rgba(74, 143, 212, 0.4);
}

.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 3px 3px 0 0;
}

.hand-hour {
  width: 3px;
  height: 44px;
  margin-left: -1.5px;
  background: linear-gradient(to top, rgba(220,235,255,0.9), rgba(180,210,255,0.5));
  box-shadow: 0 0 6px rgba(180, 210, 255, 0.3);
}

.hand-min {
  width: 2px;
  height: 60px;
  margin-left: -1px;
  background: linear-gradient(to top, var(--ice-light), rgba(106,174,232,0.55));
  box-shadow: 0 0 8px rgba(74, 143, 212, 0.5);
}

.hand-sec {
  width: 1px;
  height: 68px;
  margin-left: -0.5px;
  background: #e03c3c;
  box-shadow: 0 0 6px rgba(220, 60, 60, 0.65);
}

/* Digital Clock */
.digital-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.digital-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 40px rgba(74, 143, 212, 0.45);
}

.colon {
  color: var(--ice);
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

.ampm {
  font-size: 18px;
  color: var(--muted);
  vertical-align: super;
  margin-left: 3px;
}

.dig-secs {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}

.dig-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--dim);
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 1px solid rgba(74, 143, 212, 0.12);
  margin-top: 4px;
}

/* ─── Divider Rule ────────────────────────────────────────── */
.rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,143,212,0.2), transparent);
  margin-bottom: 30px;
}

/* ─── Email Notify ────────────────────────────────────────── */
.notify-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  text-align: center;
  margin-bottom: 14px;
}

.notify-row {
  display: flex;
  border: 1px solid rgba(74, 143, 212, 0.2);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.notify-row:focus-within {
  border-color: rgba(74, 143, 212, 0.5);
  box-shadow: 0 0 0 3px rgba(74, 143, 212, 0.08);
}

.notify-input {
  flex: 1;
  background: rgba(7, 14, 28, 0.5);
  border: none;
  outline: none;
  padding: 13px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}

.notify-input::placeholder {
  color: rgba(46, 78, 114, 0.8);
}

.notify-btn {
  background: var(--steel);
  border: none;
  color: var(--white);
  padding: 13px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.notify-btn:hover    { background: var(--ice); }
.notify-btn:disabled { opacity: 0.6; cursor: default; }

.success {
  display: none;
  text-align: center;
  padding: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ice-light);
  text-transform: uppercase;
  font-weight: 300;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 24px;
  animation: fadeUp 0.7s 0.85s both;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--dim);
}

.socials {
  display: flex;
  gap: 8px;
}

.soc {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(74, 143, 212, 0.18);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  text-decoration: none;
  transition: all 0.2s;
}

.soc:hover {
  border-color: var(--ice);
  color: var(--ice);
  background: rgba(74, 143, 212, 0.07);
}

.footer-copy {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: var(--dim);
  opacity: 0.55;
}

/* ─── Shared Animation ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
