/* AH: Jobs landing — light UI, accent aligned with app (~#7695FF) */

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --text: #111111;
  --muted: #6b6b70;
  --border: #e8e8ed;
  --accent: #7695ff;
  --accent-hover: #5f7ef5;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 999px;
  --shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--accent-hover);
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 245, 247, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo.muted {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
}

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

/* Hero */

.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  font-size: 0.8125rem;
  padding: 0.35rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
}

.hero-phone {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(280px, 100%);
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(145deg, #e8e8ed, #ffffff);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.phone-frame img {
  border-radius: 28px;
  width: 100%;
}

/* Sections */

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-subtitle {
  margin: 0 auto 2rem;
  max-width: 52ch;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

/* Features */

.features {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

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

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

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

/* Screenshots */

.screens-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .screens-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.screen-shot {
  margin: 0;
  text-align: center;
}

.screen-shot img {
  margin: 0 auto;
  max-height: min(520px, 70vh);
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.screen-shot figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* About */

.about-inner {
  max-width: 720px;
}

.about-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-card .section-title {
  text-align: left;
}

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

/* CTA */

.cta-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent) 0%, #9ab0ff 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.cta-box p {
  margin: 0;
  opacity: 0.95;
  font-size: 1rem;
}

/* Footer */

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.footer-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}
