/* gettingStartedStyle.css - RetireMINT Guide Page */

:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-2: #f0ece4;
  --accent: #2d6a4f;
  --accent-hover: #1e4d39;
  --accent-muted: rgba(45, 106, 79, 0.08);
  --accent-light: rgba(45, 106, 79, 0.12);
  --text: #1a2620;
  --text-muted: #5f7168;
  --border: #e0dbd3;
  --shadow-sm: 0 1px 3px rgba(26, 38, 32, 0.06), 0 1px 2px rgba(26, 38, 32, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 38, 32, 0.08), 0 2px 6px rgba(26, 38, 32, 0.05);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ── Nav ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

nav ul { list-style: none; display: flex; gap: 4px; }

nav ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

nav ul li a:hover { color: var(--text); background: var(--surface-2); }

/* ── Container ── */
.container {
  max-width: 860px;
  margin: 50px auto;
  padding: 0 40px 80px;
}

/* ── Intro ── */
.intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  background-image: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(45, 106, 79, 0.05) 0%, transparent 70%);
}

.intro h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.intro p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Section base ── */
section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ── How It Works ordered list ── */
ol {
  margin-left: 20px;
}

ol li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 6px;
}

ol li strong { color: var(--text); }

/* ── Input Overview grid ── */
.input-overview {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.input-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.15s;
}

.input-item:hover {
  transform: translateX(3px);
}

.input-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.input-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.input-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Results explanation ── */
.results-explanation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.result-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.result-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.result-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
}

.cta-section p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.25);
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45, 106, 79, 0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .container { padding: 0 20px 60px; margin: 30px auto; }
  .intro { padding: 28px 20px; }
  .intro h1 { font-size: 28px; }
  section { padding: 20px; }
  .results-explanation { grid-template-columns: 1fr; }
}
