:root {
  --teal: #20a6aa;
  --teal-dark: #08777b;
  --teal-soft: #e9f8f7;
  --orange: #fd9d1f;
  --orange-dark: #e77d00;
  --ink: #10292b;
  --muted: #617375;
  --paper: #fbfdfd;
  --white: #ffffff;
  --line: #dce9e8;
  --shadow: 0 24px 60px rgba(15, 75, 78, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(32, 166, 170, 0.1), transparent 28rem),
    radial-gradient(circle at 93% 28%, rgba(253, 157, 31, 0.1), transparent 25rem),
    var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
}

.site-header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(32, 166, 170, 0.16);
}

.brand { display: block; width: 238px; line-height: 0; }
.brand img { display: block; width: 100%; height: auto; }

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.header-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.hero {
  min-height: 460px;
  padding: 78px 0 64px;
  display: flex;
  align-items: center;
}

.hero-copy { width: 100%; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span { width: 32px; height: 3px; border-radius: 4px; background: var(--orange); }

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.1rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
}

h1 span { color: var(--teal); }

.hero-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.links-section { padding: 72px; border-radius: 34px; background: var(--white); box-shadow: var(--shadow); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.65rem); letter-spacing: -0.045em; line-height: 1.15; }
.section-heading p { max-width: 290px; margin: 0 0 4px; color: var(--muted); line-height: 1.6; }

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

.action-card {
  position: relative;
  min-height: 170px;
  padding: 27px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.action-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--teal);
  transition: top 220ms ease, bottom 220ms ease;
}

.action-card:hover, .action-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(32, 166, 170, 0.5);
  box-shadow: 0 18px 38px rgba(15, 75, 78, 0.12);
  outline: none;
}

.action-card:hover::before, .action-card:focus-visible::before { top: 0; bottom: 0; }

.icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 17px;
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.icon-wrap svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-content { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.card-label { margin-bottom: 5px; color: var(--teal-dark); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.card-content strong { font-size: 1.28rem; letter-spacing: -0.03em; }
.card-content > span:last-child { margin-top: 5px; color: var(--muted); font-size: 0.85rem; line-height: 1.45; overflow-wrap: anywhere; }
.arrow { width: 22px; height: 22px; display: grid; place-items: center; transition: transform 220ms ease; }
.arrow svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.action-card:hover .arrow, .action-card:focus-visible .arrow { transform: translate(3px, -3px); }

.offer { color: white; border-color: transparent; background: linear-gradient(135deg, #ffa82e, #f28b08); box-shadow: 0 16px 36px rgba(231, 125, 0, 0.2); }
.offer::before { background: white; }
.offer .icon-wrap { color: white; background: rgba(255, 255, 255, 0.17); }
.offer .card-label, .offer .card-content > span:last-child { color: rgba(255, 255, 255, 0.84); }
.offer:hover, .offer:focus-visible { border-color: transparent; box-shadow: 0 22px 42px rgba(231, 125, 0, 0.28); }
.offer-badge { position: absolute; top: 13px; right: 16px; padding: 5px 9px; border-radius: 20px; color: #8a4700; background: white; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }

footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}

footer p { margin: 0; }

@media (max-width: 900px) {
  .links-section { padding: 48px 36px; }
  .action-card { padding: 22px; gap: 16px; }
}

@media (max-width: 720px) {
  .page-shell { width: min(100% - 32px, 580px); }
  .site-header { height: 88px; }
  .brand { width: 188px; }
  .header-link { font-size: 0; gap: 0; }
  .header-link svg { width: 23px; }
  .hero { min-height: 0; padding: 64px 0 56px; }
  .hero-copy > p { font-size: 1rem; }
  .links-section { padding: 38px 22px 22px; border-radius: 26px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 14px; }
  .link-grid { grid-template-columns: 1fr; }
  .action-card { min-height: 142px; }
  footer { padding: 34px 0; min-height: 0; gap: 12px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(2.65rem, 13vw, 3.3rem); }
  .hero { padding-top: 52px; }
  .action-card { grid-template-columns: auto minmax(0, 1fr); gap: 14px; padding: 20px 17px; }
  .action-card .arrow { display: none; }
  .icon-wrap { width: 50px; height: 50px; border-radius: 14px; }
  .offer-badge { top: 10px; right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
