/* claytongrace.com landing — self-hosted, no external deps. Matches the card. */
:root {
  --bg: #020617;
  --bg-grad-1: #0f172a;
  --bg-grad-2: #082f49;
  --panel: rgba(255, 255, 255, 0.05);
  --ring: rgba(255, 255, 255, 0.10);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --white: #ffffff;
  --brand: #0ea5e9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--bg-grad-1), var(--bg) 55%, var(--bg-grad-2));
}
.hero::after {
  content: "";
  position: absolute;
  top: -6rem; right: -6rem;
  width: 24rem; height: 24rem;
  background: rgba(14, 165, 233, 0.20);
  filter: blur(80px);
  border-radius: 9999px;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 42rem; margin: 0 auto; }
.monogram {
  width: 5rem; height: 5rem;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 1rem;
  background: rgba(14, 165, 233, 0.15);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.40);
  color: var(--brand);
  font-size: 1.875rem; font-weight: 700;
}
.hero h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.025em; color: var(--white); line-height: 1.1; }
.hero .tagline { margin: 1rem auto 0; max-width: 36rem; color: var(--muted); }

/* Sections */
section { padding: 3rem 0; }
section + section { border-top: 1px solid var(--ring); }
.eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand); }

/* App cards */
.cards { margin-top: 1.5rem; list-style: none; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
.card {
  display: flex; gap: 1rem; height: 100%;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--ring);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { background: rgba(14, 165, 233, 0.10); box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.40); transform: translateY(-2px); }
.card .ico {
  flex: 0 0 auto;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.5rem;
  background: rgba(14, 165, 233, 0.15);
  font-size: 1.25rem;
}
.card h3 { color: var(--white); font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; }
.card .arrow { color: var(--brand); transition: transform 0.2s ease; }
.card:hover .arrow { transform: translateX(3px); }
.card p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }

/* Contact links */
.links { margin-top: 1.5rem; display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .links { grid-template-columns: repeat(3, 1fr); } }
.linkcard {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--ring);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.linkcard:hover { background: rgba(14, 165, 233, 0.10); box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.40); }
.linkcard .ico {
  flex: 0 0 auto;
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.5rem;
  background: rgba(14, 165, 233, 0.15);
  color: var(--brand);
  font-size: 0.875rem; font-weight: 600;
}
.linkcard span.label { font-weight: 500; color: var(--text); }
.linkcard:hover span.label { color: var(--white); }

/* Footer */
footer {
  border-top: 1px solid var(--ring);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero h1 { font-size: 2.25rem; }
}
