/* Rift Live Notification Verify — v5 Editorial Minimal */
:root {
  --bg: #ffffff;
  --surface: #fafafa;
  --surface-raised: #ffffff;
  --border: rgba(0,0,0,0.06);
  --text: #1a1a1a;
  --text-muted: #737373;
  --accent: #1a1a1a;
  --accent-hover: #333333;
  --radius: 0px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px; border-bottom: 1px solid var(--border);
  background: var(--surface); position: sticky; top: 0; z-index: 100;
}

.logo { font-size: 16px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }
.logo a { color: var(--text); text-decoration: none; }
.logo span { font-weight: 700; }

nav a {
  color: var(--text-muted); text-decoration: none; margin-left: 28px;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  transition: color 0.2s;
}
nav a:hover { color: var(--text); }
nav a.active { color: var(--text); }

/* Hero */
.hero {
  max-width: 720px; margin: 0 auto;
  padding: 140px 32px 100px;
  text-align: left;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px); font-weight: 400; line-height: 1.08;
  margin-bottom: 32px; letter-spacing: -0.02em;
}
.hero p {
  color: var(--text-muted); font-size: 18px;
  max-width: 520px; margin: 0 0 40px; line-height: 1.7;
}

/* CTA Button */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--accent); color: #fff;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.2s; font-size: 12px;
}
.cta:hover { background: var(--accent-hover); }
.cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: transparent; color: var(--text);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid var(--border); cursor: pointer; text-decoration: none;
  transition: border-color 0.2s; font-size: 12px;
}
.cta-secondary:hover { border-color: var(--text); }

/* Section wrapper */
.section {
  max-width: 720px; margin: 0 auto;
  padding: 80px 32px;
}

/* Feature cards */
.features {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
.feature-card {
  border-top: 1px solid var(--border); padding-top: 32px;
  transition: opacity 0.2s;
}
.feature-card:hover { opacity: 0.7; }
.feature-icon { font-size: 24px; margin-bottom: 16px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400; margin-bottom: 12px;
}
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* CTA section */
.cta-section {
  text-align: left; padding: 80px 32px;
  border-top: 1px solid var(--border); background: var(--surface);
  max-width: 720px; margin: 0 auto;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 36px; margin-bottom: 20px; font-weight: 400;
}
.cta-section p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; }

/* About page */
.about-lead {
  font-family: var(--font-display);
  font-size: 24px; line-height: 1.5; color: var(--text-muted);
  margin-bottom: 48px;
}
.about-body p {
  margin-bottom: 24px; font-size: 16px; color: var(--text);
}
.about-body p.lead {
  font-size: 20px; color: var(--text-muted); line-height: 1.6;
}
.team-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 48px;
}
.team-card {
  border-top: 1px solid var(--border); padding-top: 24px;
}
.team-card h4 {
  font-family: var(--font-display); font-size: 18px; margin-bottom: 4px;
}
.team-card .role {
  font-size: 13px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.team-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* How It Works */
.step {
  display: flex; gap: 32px;
  border-top: 1px solid var(--border); padding-top: 40px; margin-bottom: 40px;
}
.step:last-child { margin-bottom: 0; }
.step-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 400;
  color: var(--text-muted); line-height: 1; min-width: 64px; flex-shrink: 0;
}
.step-body h3 {
  font-family: var(--font-display); font-size: 22px; margin-bottom: 12px;
}
.step-body p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
.contact-block h3 {
  font-family: var(--font-display); font-size: 18px; margin-bottom: 12px;
}
.contact-block p, .contact-block a {
  font-size: 15px; color: var(--text-muted); line-height: 1.7; text-decoration: none;
}
.contact-block a:hover { color: var(--text); text-decoration: underline; }
.contact-form label {
  display: block; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-size: 15px;
  font-family: var(--font-body); margin-bottom: 24px;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--text);
}
.contact-form textarea { min-height: 160px; resize: vertical; }

/* Footer */
footer {
  text-align: center; padding: 48px 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 12px;
  background: var(--bg); text-transform: uppercase;
  letter-spacing: 0.08em;
}
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--text); }

/* Responsive */
@media (min-width: 640px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  header { flex-direction: column; gap: 16px; padding: 20px 24px; }
  nav a { margin-left: 0; margin-right: 20px; }
  .hero { padding: 100px 24px 60px; }
  .section, .cta-section { padding: 60px 24px; }
  .step { flex-direction: column; gap: 16px; }
}
