:root {
  --bg: linear-gradient(180deg, #f7f2e7 0%, #efe6d2 100%);
  --surface: #fffdf7;
  --surface-alt: #efe6d2;
  --text: #173d1d;
  --muted: #53614f;
  --accent: #d7c283;
  --accent-dark: #173d1d;
  --accent-soft: #efe3b9;
  --border: #d8cda7;
  --shadow: 0 14px 36px rgba(23, 61, 29, 0.10);
  --radius: 20px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.gada-track-callout-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gada-track-logo,
.feature-logo {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 20px;
  background: #050505;
  border: 1px solid rgba(23, 61, 29, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.feature-logo {
  margin-bottom: 1rem;
}

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

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.logo {
  margin: 0;
  font-size: 1.45rem;
}

.tagline {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

nav a,
.card a,
.site-footer a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
}

nav a:hover,
.card a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-grid,
.split,
.goal-grid,
.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero h2,
.section h2,
.section h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  margin: 0.3rem 0 1rem;
}

.section-copy,
.hero-copy,
.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 68ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button,
button {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary,
button {
  background: var(--accent-dark);
  color: #fffdf7;
}

.button.secondary,
button.secondary-btn {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero-card,
.card,
.feature-box,
.panel,
.highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-card:hover,
.card:hover,
.feature-box:hover,
.panel:hover,
.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(23, 61, 29, 0.12);
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: rgba(239, 230, 210, 0.62);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cards.four-up,
.goal-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card h4,
.hero-card h3,
.feature-box h4,
.panel h2 {
  margin-top: 0;
}

.checklist {
  padding-left: 1.2rem;
}

.quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quick-nav a {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 700;
}

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

.site-footer p {
  margin: 0.3rem 0;
}

.app-shell {
  min-height: 100vh;
  padding: 2rem 0 3rem;
}

.app-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-weight: 700;
  margin: 0.85rem 0 0.35rem;
}

input,
select,
button,
textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
}

button {
  cursor: pointer;
  margin-top: 1rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  background: var(--surface-alt);
  border-radius: 16px;
  padding: 1rem;
}

.metric span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.metric strong {
  display: block;
  font-size: 1.6rem;
  margin-top: 0.3rem;
}

.table-wrap {
  overflow: auto;
  margin-top: 1.25rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}

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

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .goal-grid,
  .featured-grid,
  .app-grid,
  .cards,
  .cards.four-up,
  .goal-cards,
  .metrics {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
  }
}
