/*
  What’s Friday — Coming Soon
  Visual refresh: Pitch‑black with #FF6500 accents
*/

:root {
  --bg: #121212;        /* pitch black */
  --text: #eeeeee;      /* high-contrast text */
  --muted: #a0a0a0;     /* subtle copy */
  --panel: #0a0a0a;     /* card surfaces */
  --line: #141414;      /* separators/borders */
  --accent: #2fb4ff;    /* signature accent */
  --accent-weak: #2fb4ff;   /* solid, no opacity */
  --accent-faint: #2fb4ff;  /* solid, no opacity */
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Solid background — no gradients */
body::before { content: none; }
body::after { content: none; }

.container { max-width: 1120px; width: 100%; margin: 0 auto; padding-left: 16px; padding-right: 16px; }

/* Header */
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 20px 0; flex-wrap: wrap; row-gap: 8px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand-mark { width: 30px; height: 30px; border-radius: 9px; box-shadow: 0 0 0 2px var(--line) inset; }
.brand-name { font-weight: 800; letter-spacing: 0.1px; }
.site-nav .nav-link { color: var(--muted); text-decoration: none; overflow-wrap: anywhere; }
.site-nav .nav-link:hover { color: var(--accent-weak); }

/* Hero */
.hero { position: relative; min-height: 86svh; display: grid; align-items: center; }
.hero-inner { padding: 40px 0 44px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 36px; align-items: center; }
.hero-inner > section { display: flex; flex-direction: column; }
.hero-inner > section .ctas { order: 1; }
.hero-inner > section .fineprint { order: 1; }
.hero-inner > section .feature-list { order: 2; }

.eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); border: 0; background: transparent; padding: 0; border-radius: 0; }
.eyebrow::before { content: ""; display: none; }

.headline { margin: 16px 0 10px; font-size: clamp(38px, 6.5vw, 68px); line-height: 1.03; letter-spacing: -0.02em; }
.headline strong { color: var(--accent-weak); font-weight: 900; }
.subhead { margin: 0 0 18px; color: var(--muted); font-size: 18px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; max-width: 640px; }
.feature-item { display: grid; grid-template-columns: 10px 1fr; gap: 12px; align-items: start; padding: 8px 0; border-bottom: 1px solid var(--line); background: transparent; border-radius: 0; }
.tick { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 7px; }
.tick svg { display: none; }
.feature-item h3 { margin: 0; font-size: 15px; }
.feature-item p { margin: 2px 0 0; color: var(--muted); overflow-wrap: anywhere; }

.ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button { -webkit-appearance: none; appearance: none; border: 1px solid transparent; border-radius: 12px; padding: 13px 18px; font-weight: 700; cursor: pointer; transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease; text-decoration: none; }
.button:active { transform: translateY(1px); }
.button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.button.primary { background: #0c0c0c; color: var(--text); border-color: var(--line); box-shadow: 0 0 0 1px var(--accent-faint) inset, 0 12px 30px rgba(0,0,0,0.45); }
.button.primary:hover { border-color: var(--accent-weak); box-shadow: 0 0 0 1px var(--accent-weak) inset, 0 8px 24px var(--accent-faint); }
.button.ghost { background: transparent; border-color: var(--line); color: var(--muted); }
.button.ghost:hover { color: var(--text); border-color: #222; background: #0c0c0c; box-shadow: 0 0 0 1px var(--accent-faint) inset; }

.fineprint { color: var(--muted); margin-top: 8px; }
.fineprint a { color: inherit; }
.fineprint a:hover { color: var(--text); }

/* Preview card */
.preview {
  position: relative;
  background: transparent; /* no visible container */
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: min(800px, 100%);
  justify-self: center;
  align-self: start;
}
.preview::before { content: none; }
.demo-screen {
  display: block;
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: top center; /* crop bottom more */
  margin: 12px auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0b0b0b;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.legend { text-align: center; color: var(--muted); font-size: 13px; margin-top: 6px; }

.backdrop { position: absolute; inset: 0; pointer-events: none; z-index: -1; }

/* Footer */
.site-footer { padding: 34px 0 48px; color: var(--muted); }
.site-footer small { opacity: 0.9; }

/* Responsive */
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 20px; } .preview { margin-top: 16px; } }
@media (max-width: 720px) {
  .feature-list { /* legacy grid rule ignored since now flex; keep for safety */ }
  .container { padding-left: 20px; padding-right: 20px; }
}
/* removed desktop-only right margin on features */
@media (prefers-reduced-motion: reduce) { .button { transition: none; } }

/* Modal */
.modal { position: fixed; inset: 0; display: none; z-index: 50; }
.modal.open { display: grid; place-items: center; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); }
.modal-card { position: relative; width: min(560px, 92vw); background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); background: #0c0c0c; color: var(--text); font-size: 20px; line-height: 1; cursor: pointer; }
.modal-close:hover { box-shadow: 0 0 0 1px var(--accent-faint) inset; }
.modal-header { padding: 6px 6px 10px; }
.modal-sub { color: var(--muted); margin: 4px 0 0; }
.modal-body { display: grid; gap: 12px; padding: 6px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin: 0 0 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: #0c0c0c;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; padding-top: 6px; }

@media (max-width: 520px) {
  .grid-2 { grid-template-columns: 1fr; }
  .ctas .button { width: 100%; }
}

/* Global safe‑guards for mobile overflow */
html, body { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; }
