:root {
  --ink: #213238;
  --ink-soft: #4e676f;
  --paper: #f7f8f4;
  --mist: #e8f0eb;
  --sand: #f5ede0;
  --sea: #9cc3bc;
  --coral: #de8866;
  --pine: #2e5951;
  --line: rgba(33, 50, 56, 0.16);
  --shadow-soft: 0 18px 40px rgba(33, 50, 56, 0.12);
  --radius: 22px;
}

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

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, #ffffff 70%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.urgent-bar {
  background: var(--pine);
  color: #fff;
  text-align: center;
  padding: 10px 14px;
  font-size: 14px;
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--sea), var(--pine));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-family: "Newsreader", serif;
  font-size: 25px;
  line-height: 1;
}

.brand-text small {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}

.menu a {
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(33, 50, 56, 0.14);
}

.btn-solid {
  background: var(--pine);
  color: #fff;
}

.btn-outline {
  border-color: var(--pine);
  color: var(--pine);
}

.btn-light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  position: relative;
  padding: 86px 0 34px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  z-index: 0;
}

.hero::before {
  background: radial-gradient(circle, rgba(156, 195, 188, 0.42), transparent 65%);
  top: -110px;
  left: -80px;
}

.hero::after {
  background: radial-gradient(circle, rgba(222, 136, 102, 0.25), transparent 65%);
  right: -100px;
  bottom: -140px;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: "Newsreader", serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.95;
  max-width: 840px;
  margin: 0 auto 16px;
}

.lead {
  max-width: 740px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 19px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

.quick-choices article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
}

.quick-choices h3 {
  font-size: 22px;
  font-family: "Newsreader", serif;
  line-height: 1.05;
}

.quick-choices p {
  color: var(--ink-soft);
}

.quick-choices a {
  color: var(--pine);
  font-weight: 600;
}

.section {
  padding: 78px 0;
}

.section-head h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--ink-soft);
}

.path {
  background: linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
}

.path-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.path-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.tag {
  display: inline-block;
  border-radius: 999px;
  background: var(--sand);
  color: #8a5a47;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.path-grid h3 {
  font-family: "Newsreader", serif;
  font-size: 30px;
  line-height: 0.95;
  margin-bottom: 12px;
}

.path-grid p {
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.path-grid ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.path-grid li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--coral);
}

.roadmap {
  background: #fff;
}

.roadmap-wrap {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff 0%, #f4f6f8 100%);
  padding: 32px;
}

.roadmap-head h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.95;
}

.roadmap-head p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.roadmap-track {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-track div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
}

.roadmap-track h3 {
  font-family: "Newsreader", serif;
  font-size: 29px;
  line-height: 0.95;
  margin-bottom: 8px;
}

.roadmap-track p {
  color: var(--ink-soft);
}

.credibility {
  background: linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
}

.credibility-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.quote-card,
.stats-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  font-family: "Newsreader", serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  margin-bottom: 10px;
}

.quote-card span {
  color: var(--ink-soft);
}

.stats-card {
  display: grid;
  gap: 14px;
}

.stats-card strong {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 32px;
  line-height: 1;
}

.stats-card span {
  color: var(--ink-soft);
}

.faq {
  background: var(--sand);
}

.faq-wrap {
  max-width: 860px;
}

.faq-wrap details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px 18px;
}

.faq-wrap details + details {
  margin-top: 10px;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-wrap p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.contact {
  background: linear-gradient(180deg, #ffffff 0%, #eef4f2 100%);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.contact-wrap h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  margin-bottom: 12px;
}

.contact-wrap p {
  color: var(--ink-soft);
}

.contact-wrap ul {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 7px;
}

.contact-wrap li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--sea);
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  display: grid;
  gap: 6px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font-family: inherit;
  color: var(--ink);
}

.small-note {
  font-size: 11px;
  color: var(--ink-soft);
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 36px 0;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 16px;
  align-items: start;
}

.footer-wrap p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 6px;
}

.footer-wrap a,
.footer-wrap span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  margin-top: 4px;
}

.page-hero {
  padding: 68px 0 34px;
  background: linear-gradient(180deg, #f9fbfa 0%, #eef4f2 100%);
}

.page-hero h1 {
  font-family: "Newsreader", serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.95;
  max-width: 900px;
}

.page-hero p {
  color: var(--ink-soft);
  margin-top: 10px;
  max-width: 760px;
  font-size: 18px;
}

.content-section {
  padding: 56px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.panel h2,
.panel h3 {
  font-family: "Newsreader", serif;
  line-height: 1;
}

.panel h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.panel h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.panel p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.stack {
  display: grid;
  gap: 14px;
}

.list-clean {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.list-clean li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
  margin-right: 9px;
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 14px;
}

.practice-list a {
  color: var(--pine);
  font-weight: 600;
}

.notice {
  border-left: 4px solid var(--sea);
  background: #f4faf8;
  padding: 14px 14px 14px 16px;
  border-radius: 10px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.cta-band {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-card details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.faq-card details + details {
  margin-top: 8px;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-card p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.contact-mini {
  color: var(--ink-soft);
  display: grid;
  gap: 5px;
  margin-top: 12px;
}

.reveal {
  animation: rise 0.72s ease both;
}

.path-grid article:nth-child(2),
.roadmap-track div:nth-child(2),
.quick-choices article:nth-child(2) {
  animation-delay: 0.08s;
}

.path-grid article:nth-child(3),
.roadmap-track div:nth-child(3),
.quick-choices article:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .menu {
    display: none;
  }

  .quick-choices,
  .path-grid,
  .roadmap-track,
  .contact-wrap,
  .credibility-grid,
  .content-grid,
  .practice-list {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 700px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 64px;
  }

  .brand-text strong {
    font-size: 21px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .lead {
    font-size: 17px;
  }

  .roadmap-wrap,
  .contact-form,
  .quick-choices article,
  .path-grid article {
    padding: 18px;
  }
}
