:root {
  --bg-top: #ffffff;
  --bg-bottom: #eef1f8;
  --accent: #c9962e;
  --accent-dark: #a8791f;
  --text-main: #1a2340;
  --text-muted: #5c6478;
  --border-soft: rgba(201, 150, 46, 0.22);
  --card-bg: rgba(201, 150, 46, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Iowan Old Style', 'Times New Roman', serif;
  background: linear-gradient(160deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

/* Pre-launch banner */
.prelaunch-banner {
  background: var(--accent);
  color: #2a1c05;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Site header / nav */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 32px;
  position: relative;
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 150, 46, 0.6);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.logo .brand {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--text-main);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.site-nav a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--text-main);
  background: rgba(201, 150, 46, 0.08);
}

.site-nav a.active {
  color: var(--accent-dark);
  font-weight: 700;
}

/* Main content wrapper for interior pages */
main {
  flex: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  position: relative;
  z-index: 1;
}

.page-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent-dark);
  margin-bottom: 14px;
  text-align: center;
}

.page-title {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
  text-align: center;
}

.page-title em {
  font-style: italic;
  color: var(--accent);
}

.page-lead {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: center;
}

.divider {
  width: 48px;
  height: 1px;
  background: rgba(201, 150, 46, 0.5);
  margin: 0 auto 40px;
}

h2.section-heading {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  text-align: center;
  margin: 40px 0 20px;
}

h2.section-heading:first-child {
  margin-top: 0;
}

.prose {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-muted);
}

.prose p {
  margin-bottom: 16px;
}

.prose h3 {
  font-family: 'Georgia', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--text-main);
  margin: 28px 0 10px;
}

.prose ul {
  margin: 0 0 16px 20px;
}

.prose li {
  margin-bottom: 8px;
}

/* Feature cards (SAT / ACT / For Tutors) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0 0 8px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.feature-card h3 {
  font-family: 'Georgia', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Numbered steps (How It Works) */
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.steps .num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201, 150, 46, 0.6);
  color: var(--accent-dark);
  font-size: 13px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.faq-item summary {
  cursor: pointer;
  font-size: 15.5px;
  color: var(--text-main);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--accent-dark);
  font-size: 18px;
  flex: none;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Contact */
.contact-block {
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-block a.email {
  display: inline-block;
  margin-top: 8px;
  font-size: 16px;
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 150, 46, 0.5);
}

/* Badge */
.badge {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border: 1px solid rgba(201, 150, 46, 0.45);
  border-radius: 999px;
  padding: 8px 20px;
}

/* CTA links */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-cta {
  margin-top: 36px;
}

.prose.centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-link {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--accent-dark);
  border: 1px solid rgba(201, 150, 46, 0.45);
  border-radius: 999px;
  padding: 10px 22px;
  transition: background 0.15s ease;
}

.cta-link:hover {
  background: rgba(201, 150, 46, 0.1);
}

.cta-link.primary {
  background: var(--accent);
  color: #2a1c05;
  border-color: var(--accent);
}

.cta-link.primary:hover {
  background: var(--accent-dark);
}

/* Footer */
footer.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding: 32px 24px 28px;
  border-top: 1px solid var(--border-soft);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-dark);
}

.footer-links a.active {
  color: var(--accent-dark);
  font-weight: 700;
}

.footer-copy {
  font-size: 12px;
  color: rgba(26, 35, 64, 0.4);
}

/* Legal page content */
.legal-updated {
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-notice {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 32px;
}
