:root {
  color-scheme: light;
  --paper: #f5f4ef;
  --ink: #182a28;
  --muted: #596963;
  --blue: #2646bd;
  --line: #d8ddd4;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
  border-radius: 4px;
}
.page {
  max-width: 1440px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 7%;
  display: flex;
  flex-direction: column;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 126px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
}
.brand-mark {
  font-size: 44px;
  letter-spacing: -3px;
  font-weight: 800;
}
.brand-mark > span {
  color: var(--blue);
}
.brand-name {
  font-size: 15px;
  letter-spacing: 0.025em;
}
.contact-link {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
}
.contact-link span {
  margin-left: 20px;
}
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 8%;
  align-items: center;
  padding: 78px 0 88px;
}
.eyebrow {
  font-size: 10px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0 0 24px;
}
.status-dot {
  display: inline-block;
  background: #486f54;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  vertical-align: 1px;
}
h1 {
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1.06;
  letter-spacing: -0.065em;
  font-weight: 500;
  margin: 0 0 28px;
}
.accent-word {
  color: var(--blue);
}
.intro {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.offer {
  margin-top: 34px;
}
.offer > p:first-child {
  max-width: 410px;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 22px;
}
.offer strong {
  font-weight: 600;
}
.primary-button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 17px 25px;
  background: var(--blue);
  color: #fff;
  border-radius: 7px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  transition: background 0.15s;
}
.primary-button:hover {
  background: #193393;
}
.primary-button > span {
  font-size: 22px;
  font-weight: 400;
}
.button-caption {
  color: var(--muted);
  font-size: 11px;
  margin: 13px 0 0;
}
.learning-card {
  background: #e4e9db;
  border: 1px solid #d8e0cf;
  border-radius: 12px;
  padding: 30px;
  transform: rotate(2deg);
  box-shadow: 0 18px 50px #2230230a;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 51px;
}
.card-top > span:last-child {
  font-size: 26px;
  font-weight: 400;
}
.learning-step {
  display: flex;
  align-items: baseline;
  gap: 21px;
  padding: 20px 0;
  border-top: 1px solid #bfccb8;
}
.step-number {
  font-size: 10px;
  color: #53634d;
}
.learning-step p {
  margin: 0;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -0.045em;
}
.final-step {
  color: var(--blue);
  border-bottom: 1px solid #bfccb8;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 47px;
  font-size: 11px;
  line-height: 1.8;
  gap: 16px;
}
.asterisk {
  font-family: Arial, sans-serif;
  font-size: 50px;
  line-height: 1;
  color: #617651;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 27px 0 31px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.site-footer div {
  display: flex;
  flex-direction: column;
}
.site-footer strong {
  color: var(--ink);
  font-weight: 500;
}
.site-footer a:hover,
.contact-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.wallet-page {
  max-width: 1160px;
}
.wallet-page .site-header > .eyebrow {
  margin: 0;
}
.wallet-content {
  max-width: 650px;
  margin: 0 auto;
  padding: 70px 0;
  flex: 1;
}
.wallet-content h1 {
  font-size: clamp(46px, 5.5vw, 68px);
}
.wallet-help {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.wallet-help h2 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
}
.wallet-help p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 105px;
    padding-bottom: 115px;
  }
}
@media (max-width: 850px) {
  .page {
    padding: 0 6%;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 48px 0 58px;
  }
  .hero-copy {
    max-width: 560px;
  }
  .learning-card {
    max-width: 520px;
    width: 100%;
    transform: none;
  }
  .card-top {
    margin-bottom: 26px;
  }
  .card-bottom {
    margin-top: 27px;
  }
  .learning-step p {
    font-size: 34px;
  }
  .site-header {
    min-height: 100px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 430px) {
  .brand-mark {
    font-size: 38px;
  }
  .brand-name {
    font-size: 13px;
  }
  .contact-link {
    font-size: 12px;
  }
  .contact-link span {
    margin-left: 6px;
  }
  .primary-button {
    width: 100%;
    padding: 16px 19px;
    gap: 16px;
  }
  .learning-card {
    padding: 23px;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .wallet-page .site-header > .eyebrow {
    font-size: 8px;
  }
  .wallet-content {
    padding: 46px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .primary-button {
    transition: none;
  }
}
