:root {
  --navy: #294157;
  --deep-navy: #1f3346;
  --gold: #d6a83f;
  --cream: #f8f5ee;
  --white: #ffffff;
  --text: #1f2d3a;
  --muted: #667085;
  --border: #e5e1d8;
  --shadow: 0 18px 45px rgba(31, 51, 70, 0.12);
  --radius: 22px;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

header {
  background: var(--deep-navy);
  color: var(--white);
  padding: 1rem 1rem 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

header h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.logo-card img {
  max-width: 340px;
  width: 100%;
  height: auto;
  display: block;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

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

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

h3 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--navy);
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(214, 168, 63, 0.22), transparent 35%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 5rem);
  box-shadow: var(--shadow);
  text-align: left;
}

.hero h2 {
  color: var(--white);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  font-size: 1.15rem;
}

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

.button,
button {
  display: inline-block;
  background: var(--gold);
  color: var(--deep-navy);
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.button:hover,
button:hover {
  filter: brightness(0.96);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--deep-navy);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 168, 63, 0.18);
}

dl {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
}

dt {
  font-weight: 800;
  color: var(--deep-navy);
  margin-top: 1rem;
}

dd {
  margin-left: 0;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

footer {
  background: var(--deep-navy);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

footer p {
  color: var(--white);
  margin: 0;
}

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

footer a:hover {
  color: var(--gold);
}

/* HOME PAGE FEATURES */

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5e1d8;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(31, 51, 70, 0.08);
}

.feature-card:hover {
  transform: translateY(-4px);
  transition: all 0.2s ease;
}

.feature-card h3 {
  margin-top: 0;
}

#features {
  margin-top: 3rem;
}

#features h2 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.feature-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

#faq {
  margin-top: 3rem;
}

/* SCREENSHOTS */

#screenshots {
  margin-top: 4rem;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.screenshots-grid img {
  width: 180px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.screenshots-grid img:hover {
  transform: translateY(-4px);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page h3 {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 1.55rem;
  }

  nav ul {
    gap: 1rem;
  }

  main {
    padding: 2rem 1rem;
  }

  .hero {
    text-align: center;
  }
}
