:root {
  --bg: #fff7ec;
  --bg-alt: #ffe9d6;
  --ink: #132937;
  --muted: #375466;
  --line: #f2cfae;
  --brand-deep: #0e2a36;
  --brand-mid: #16747f;
  --brand-hot: #ff7a59;
  --brand-soft: #ffd0a6;
  --mint: #9ef3cc;
  --surface: #fffaf4;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1100px;
  --shadow-soft: 0 18px 44px rgba(15, 41, 54, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -5%, #ffe0bd 0, transparent 36%),
    radial-gradient(circle at 96% 8%, #ffc89f 0, transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #fff5e8 100%);
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(255, 247, 236, 0.82);
  border-bottom: 1px solid rgba(19, 41, 55, 0.08);
}

.header-inner {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(22, 116, 127, 0.12);
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 58px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: rgba(158, 243, 204, 0.44);
  top: -120px;
  right: -70px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: rgba(255, 122, 89, 0.22);
  bottom: -120px;
  left: -75px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
}

.hero-content {
  animation: fade-up 680ms ease-out;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #275163;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.08;
  color: var(--brand-deep);
  max-width: 14ch;
}

.lead {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(140deg, var(--brand-hot), #ff9868);
  color: #1f1f1f;
  box-shadow: 0 8px 22px rgba(255, 122, 89, 0.34);
}

.btn.primary:hover {
  box-shadow: 0 12px 26px rgba(255, 122, 89, 0.42);
}

.btn.ghost {
  border: 1px solid rgba(14, 42, 54, 0.2);
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.58);
}

.hero-card {
  background: linear-gradient(155deg, #0f3544 0%, #12596a 100%);
  color: #ebfffb;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  animation: fade-up 820ms ease-out;
}

.hero-card h2 {
  margin: 0 0 10px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
}

.hero-card li + li {
  margin-top: 8px;
}

.section {
  padding: 26px 0 72px;
}

.section-alt {
  background: linear-gradient(
    180deg,
    rgba(255, 233, 214, 0.35) 0%,
    rgba(255, 233, 214, 0.68) 100%
  );
  border-top: 1px solid rgba(241, 190, 138, 0.36);
  border-bottom: 1px solid rgba(241, 190, 138, 0.36);
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(1.4rem, 3.3vw, 2.1rem);
  color: #0e2a36;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #1b6a75;
}

.step-card h3 {
  margin: 8px 0 10px;
  font-size: 1.2rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.resource {
  display: block;
  text-decoration: none;
  border: 1px solid #e7be98;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.95);
  padding: 18px;
  color: inherit;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.resource:hover {
  border-color: #ff7a59;
  transform: translateY(-2px);
}

.resource h3 {
  margin: 0 0 6px;
  color: #0f4456;
}

.resource p {
  margin: 0;
  color: var(--muted);
}

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

.promo-card {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(158, 243, 204, 0.48),
      transparent 45%
    ),
    linear-gradient(135deg, #fff2e2 0%, #ffdcbf 100%);
  border: 1px solid #efbc8f;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.promo-tag {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.8rem;
  font-weight: 800;
  color: #155f6f;
}

.promo-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
}

.promo-card p {
  margin: 0 0 16px;
  color: #28485a;
}

.promo-note {
  margin-top: 12px;
  font-size: 0.92rem;
  color: #3a5f6c;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid #e6bf9e;
  border-radius: 12px;
  background: #fffaf5;
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer {
  background: #0f2d39;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer p {
  margin: 0;
  color: #cde6f0;
}

.footer a {
  color: #9ef3cc;
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  text-decoration: underline;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .steps-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    max-width: 18ch;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 62px;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    padding: 6px 8px;
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
