:root {
  --bg: #f7f2e8;
  --paper: #fffdf7;
  --ink: #181512;
  --muted: #62584f;
  --line: rgba(24, 21, 18, 0.12);
  --accent: #ffc929;
  --accent-deep: #f29d35;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(50, 34, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Golos Text", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 201, 41, 0.45), transparent 32%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 100%);
}

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

.page-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 240, 0.82);
  border-bottom: 1px solid var(--line);
}

.brand,
.section-kicker,
.button,
.price-badge {
  font-family: "Unbounded", "Arial Rounded MT Bold", sans-serif;
}

.brand {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

#app {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.section {
  padding: 44px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.instructor {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card,
.card,
.faq-item,
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
}

.hero-art {
  min-height: 420px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 41, 0.65), transparent 30%),
    linear-gradient(145deg, #fff7dd, #fffaf4);
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-art img {
  width: min(100%, 460px);
  height: auto;
  object-fit: contain;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.section-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.hero-meta,
.grid-3,
.grid-2,
.pricing-grid,
.review-grid,
.faq-grid,
.roadmap {
  display: grid;
  gap: 18px;
}

.hero-meta,
.grid-3,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.review-grid,
.faq-grid,
.roadmap {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 24px;
}

.roadmap-item {
  position: relative;
  overflow: hidden;
}

.roadmap-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 201, 41, 0.85), rgba(242, 157, 53, 0.55));
  font-family: "Unbounded", sans-serif;
  font-size: 0.9rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.price-card {
  padding: 28px;
}

.price-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 201, 41, 0.22);
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 2.2rem;
  font-family: "Unbounded", sans-serif;
  margin: 10px 0 16px;
}

.list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.review-quote {
  font-size: 1.02rem;
  color: var(--ink);
}

.review-signature {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.faq-item {
  padding: 22px;
}

.form-card {
  padding: 32px;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}

.form-note,
.tiny {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 32px 0 10px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

@media (max-width: 960px) {
  .hero,
  .instructor,
  .hero-meta,
  .grid-2,
  .grid-3,
  .pricing-grid,
  .review-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .form-card {
    padding: 28px;
  }

  .topbar {
    padding: 16px 18px;
  }

  #app {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }
}
