/* Guess The Scam — landing site */
:root {
  --bg: #090a0f;
  --bg-elevated: #0f1017;
  --surface: #171820;
  --surface-raised: #22232d;
  --border: #30313c;
  --text: #f8f8fb;
  --text-muted: #a7a8b3;
  --safe: #35d9d1;
  --safe-soft: #123533;
  --scam: #ff476f;
  --amber: #ffc857;
  --teal: #2f6f6a;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1080px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(53, 217, 209, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 71, 111, 0.1), transparent 50%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--safe);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9, 10, 15, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--safe-soft);
  border: 1px solid rgba(53, 217, 209, 0.35);
  color: var(--safe);
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--safe);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 36rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--safe);
  color: #062523;
}

.btn-primary:hover {
  background: #4ce4dc;
  color: #062523;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.meta-row span::before {
  content: "✓ ";
  color: var(--safe);
}

/* Phone mock */
.device {
  width: min(100%, 300px);
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0.85rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.device-notch {
  width: 96px;
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  margin: 0.2rem auto 0.85rem;
}

.message-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.message-card .from {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.message-card .body {
  margin: 0.55rem 0 0.9rem;
  font-size: 0.95rem;
}

.verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.verdict button {
  border: none;
  border-radius: 10px;
  min-height: 42px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: default;
}

.verdict .scam {
  background: rgba(255, 71, 111, 0.18);
  color: var(--scam);
  border: 1px solid rgba(255, 71, 111, 0.35);
}

.verdict .safe {
  background: rgba(53, 217, 209, 0.14);
  color: var(--safe);
  border: 1px solid rgba(53, 217, 209, 0.35);
}

.hint {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 700;
}

/* Sections */
section {
  padding: 2.5rem 0;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.icon-pill {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
  background: var(--safe-soft);
  border: 1px solid rgba(53, 217, 209, 0.25);
}

.icon-pill.danger {
  background: #3a1823;
  border-color: rgba(255, 71, 111, 0.3);
}

.icon-pill.amber {
  background: rgba(255, 200, 87, 0.12);
  border-color: rgba(255, 200, 87, 0.28);
}

/* Modes list */
.modes {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .modes {
    grid-template-columns: 1fr 1fr;
  }
}

.mode-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.mode-row strong {
  display: block;
  margin-bottom: 0.15rem;
}

.mode-row span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Page content (contact / privacy) */
.page-hero {
  padding: 3rem 0 1.25rem;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 40rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0 0 2.5rem;
}

.email-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.email-block .label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 800;
  color: var(--safe);
  word-break: break-all;
}

.email-link:hover {
  color: #4ce4dc;
}

.note {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Privacy prose */
.prose {
  max-width: 46rem;
  padding-bottom: 3rem;
}

.prose h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose strong {
  color: var(--text);
}

.updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2.25rem;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}
