/* Go Fred LLC site styles. Committed light theme, brand palette from the
   FRED OS mark: navy #0F172A, orange #F97316. No external assets except
   Google Fonts (loaded from the pages with a system fallback stack). */

:root {
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --orange: #f97316;
  --orange-deep: #c2560b;
  --ink: #0f172a;
  --muted: #475569;
  --faint: #94a3b8;
  --bg: #ffffff;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --radius: 12px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica,
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--orange-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */

.site-header {
  background: var(--navy);
  color: #fff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-name .os {
  font-weight: 300;
  letter-spacing: 0.18em;
  margin-left: 0.15rem;
}

.brand-by {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--faint);
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.15rem;
}

.site-nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.25rem 0;
}

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

/* Hero */

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 4.25rem 0 4.5rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero .tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: #cbd5e1;
  max-width: 44rem;
  margin: 0 0 1.25rem;
}

.hero .lede {
  max-width: 46rem;
  color: #e2e8f0;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font);
}

.button-primary {
  background: var(--orange);
  color: #ffffff;
}

.button-primary:hover {
  background: #ea6a0a;
  color: #ffffff;
}

.button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.button-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Sections */

section {
  padding: 3.5rem 0;
}

section.alt {
  background: var(--surface);
}

.kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 0.4rem;
}

section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

section .section-intro {
  max-width: 46rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

/* Feature cards */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.1rem;
}

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

section.alt .feature-card {
  background: #ffffff;
}

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

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

.feature-card .mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--orange);
  margin-bottom: 0.8rem;
}

/* Plain lists */

.check-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  max-width: 46rem;
}

.check-list li {
  margin-bottom: 0.55rem;
}

.check-list li strong {
  color: var(--ink);
}

/* Pricing */

.pricing-card {
  background: var(--navy);
  color: #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 46rem;
}

.pricing-card h3 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: 1.2rem;
}

.pricing-card p {
  margin: 0 0 1rem;
}

.pricing-card p:last-of-type {
  margin-bottom: 1.4rem;
}

.pricing-card a.button-primary {
  color: #fff;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-direct p {
  color: var(--muted);
  max-width: 30rem;
}

.contact-email {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Footer */

.site-footer {
  background: var(--navy);
  color: var(--faint);
  padding: 2.25rem 0;
  font-size: 0.9rem;
}

.site-footer .container {
  display: grid;
  gap: 0.4rem;
}

.site-footer a {
  color: #e2e8f0;
}

.site-footer a:hover {
  color: var(--orange);
}

.site-footer .legal {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  max-width: 52rem;
}

/* Privacy page */

.page-title {
  background: var(--navy);
  color: #fff;
  padding: 2.75rem 0 2.5rem;
}

.page-title h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
}

.page-title .updated {
  color: var(--faint);
  margin: 0;
}

.policy {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.policy h2 {
  font-size: 1.35rem;
  margin: 2.2rem 0 0.6rem;
  line-height: 1.3;
}

.policy h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.4rem;
}

.policy p,
.policy li {
  color: #334155;
}

.policy ul {
  padding-left: 1.35rem;
}

.policy li {
  margin-bottom: 0.4rem;
}
