@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700;800&display=swap');

:root {
  --ink: #212121;
  --body: #53585c;
  --muted: #7c8287;
  --paper: #ffffff;
  --page: #e9eaed;
  --line: #e5e6e8;
  --nav: #141414;
  --accent: #ef5a52;
  --shelly: #35b8b3;
  --shelly-dark: #082f42;
  --soft: #f3f8f8;
  --canvas: 1260px;
  --main: 770px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background: var(--page);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.site { width: min(var(--canvas), 100%); margin: 0 auto; background: var(--paper); }
.utility {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  font-size: 13px;
}
.utility__tag { text-transform: uppercase; letter-spacing: .13em; font-weight: 700; }
.masthead {
  min-height: 137px;
  padding: 28px 45px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { text-decoration: none; display: inline-flex; flex-direction: column; }
.brand__name { color: var(--ink); font-size: clamp(31px, 4.2vw, 55px); line-height: .9; letter-spacing: -.045em; font-weight: 800; text-transform: lowercase; }
.brand__rule { width: 82px; height: 5px; margin-top: 11px; background: var(--accent); }
.masthead__note { text-align: right; max-width: 285px; font-size: 13px; color: #8b8f92; text-transform: uppercase; letter-spacing: .1em; }
.nav { background: var(--nav); overflow-x: auto; scrollbar-width: none; }
.nav::-webkit-scrollbar { display: none; }
.nav__inner { min-width: max-content; min-height: 55px; padding: 0 45px; display: flex; align-items: center; gap: 0; }
.nav a { position: relative; padding: 16px 17px 15px; color: #fff; font-size: 15px; line-height: 24px; text-decoration: none; font-weight: 700; }
.nav a::after { content: ""; position: absolute; left: 17px; right: 17px; bottom: 9px; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .18s ease; }
.nav a:hover::after, .nav a:focus-visible::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.content-shell { padding: 30px 45px 44px; }
.layout { display: grid; grid-template-columns: minmax(0, var(--main)) minmax(260px, 360px); gap: 40px 55px; }
.breadcrumbs { margin: 0 0 18px; color: #8a8f92; font-size: 13px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs span { padding: 0 8px; color: #b1b4b7; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow::before { content: ""; width: 20px; height: 3px; background: currentColor; }
h1 { margin: 10px 0 14px; color: var(--ink); font-size: clamp(42px, 4vw, 51px); font-weight: 800; line-height: 1.08; letter-spacing: -.035em; }
.dek { margin: 0 0 15px; max-width: 720px; color: #5d6266; font-size: 21px; line-height: 1.45; }
.meta { display: flex; flex-wrap: wrap; gap: 12px 20px; padding: 2px 0 24px; color: #92969a; font-size: 13px; }
.hero-art { position: relative; overflow: hidden; min-height: 398px; margin: 0 0 24px; border-radius: 2px; background: linear-gradient(145deg, #06374b 0%, #0b5d6a 58%, #1e9b9b 100%); }
.hero-art::before { content: ""; position: absolute; width: 430px; height: 430px; top: -210px; right: -110px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.03); }
.hero-art__copy { position: absolute; inset: 45px auto auto 48px; z-index: 2; width: min(390px, 58%); color: #fff; }
.hero-art__copy strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .16em; color: #aef2ea; }
.hero-art__copy span { display: block; margin-top: 9px; font-size: 38px; line-height: 1.05; font-weight: 800; letter-spacing: -.03em; }
.home-illustration { position: absolute; right: 25px; bottom: 0; width: 390px; height: 310px; }
.hero-art__caption { position: absolute; left: 48px; bottom: 34px; z-index: 2; color: rgba(255,255,255,.72); font-size: 13px; }

.disclosure { margin: 22px 0; padding: 15px 18px; border-left: 4px solid var(--accent); background: #fbf7f5; color: #5a5756; font-size: 14px; line-height: 1.55; }
.disclosure strong { color: var(--ink); }
.article-copy { color: #333; font-size: 16px; line-height: 1.8; }
.article-copy > p { margin: 0 0 20px; }
.article-copy h2 { margin: 42px 0 13px; color: var(--ink); font-size: 31px; line-height: 1.18; letter-spacing: -.02em; }
.article-copy h3 { margin: 30px 0 10px; color: var(--ink); font-size: 23px; line-height: 1.25; }
.article-copy ul { padding-left: 21px; }
.article-copy li { margin-bottom: 9px; }
.article-copy blockquote { margin: 30px 0; padding: 8px 0 8px 24px; border-left: 4px solid var(--shelly); color: #24444c; font-size: 23px; font-weight: 600; line-height: 1.4; }

.survey { margin: 30px 0 36px; overflow: hidden; border-radius: 4px; color: #fff; background: var(--shelly-dark); box-shadow: 0 18px 50px rgba(5, 44, 61, .18); }
.survey__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px 10px; }
.survey__label { color: #aef2ea; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.survey__count { color: rgba(255,255,255,.65); font-size: 13px; }
.progress { height: 4px; margin: 0 26px; background: rgba(255,255,255,.15); }
.progress__bar { height: 100%; width: 33.333%; background: var(--accent); transition: width .25s ease; }
.survey__body { padding: 25px 26px 28px; }
.survey fieldset { margin: 0; padding: 0; border: 0; }
.survey legend { max-width: 600px; padding: 0; font-size: 27px; line-height: 1.2; font-weight: 800; letter-spacing: -.015em; }
.survey__hint { margin: 8px 0 20px; color: rgba(255,255,255,.68); font-size: 14px; }
.answers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.answer { min-height: 62px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; color: #fff; text-align: left; border: 1px solid rgba(255,255,255,.18); border-radius: 3px; background: rgba(255,255,255,.07); cursor: pointer; transition: border-color .16s, background .16s, transform .16s; }
.answer:hover { border-color: #8ee5dc; background: rgba(255,255,255,.12); transform: translateY(-1px); }
.answer[aria-pressed="true"] { border-color: var(--accent); background: rgba(239,90,82,.2); }
.answer__icon { width: 29px; height: 29px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: #073348; background: #aef2ea; font-size: 14px; font-weight: 800; }
.survey__actions { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.back, .restart { padding: 7px 0; color: rgba(255,255,255,.72); border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; }
.result { padding: 0 26px 30px; }
.result[hidden] { display: none; }
.result__badge { display: inline-block; margin-bottom: 11px; padding: 5px 10px; color: #073348; background: #aef2ea; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.result h2 { margin: 0 0 10px; color: #fff; font-size: 31px; }
.result p { color: rgba(255,255,255,.78); line-height: 1.65; }
.result__notes { margin: 18px 0; padding: 15px 17px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.07); }
.affiliate-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 20px; color: #fff; border-radius: 2px; background: var(--accent); text-decoration: none; font-weight: 800; box-shadow: 0 7px 22px rgba(239,90,82,.28); transition: transform .15s, background .15s; }
.affiliate-cta:hover { transform: translateY(-1px); background: #db473f; }
.affiliate-cta--light { color: #073348; background: #aef2ea; box-shadow: none; }
.affiliate-cta--light:hover { background: #d2faf5; }
.cta-subtext { margin-top: 10px; color: rgba(255,255,255,.58); font-size: 12px; }

.path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; margin: 20px 0 28px; }
.path-card { min-height: 190px; padding: 22px; border: 1px solid #dfe9e8; background: var(--soft); }
.path-card__num { color: var(--shelly); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.path-card h3 { margin: 6px 0 8px; font-size: 21px; }
.path-card p { margin: 0; color: #5f6b6e; font-size: 14px; line-height: 1.55; }
.checklist { margin: 24px 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: 12px 0 12px 35px; border-bottom: 1px solid var(--line); }
.checklist li::before { content: "✓"; position: absolute; left: 2px; top: 13px; width: 21px; height: 21px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--shelly); font-size: 12px; font-weight: 800; }
.warning { margin: 28px 0; padding: 22px 24px; border: 1px solid #ead6c3; background: #fff9f0; }
.warning strong { display: block; margin-bottom: 5px; color: #543923; }
.final-cta { margin: 38px 0 0; padding: 31px; color: #fff; background: linear-gradient(135deg, #07364a, #0a6570); }
.final-cta h2 { margin-top: 0; color: #fff; }
.final-cta p { color: rgba(255,255,255,.77); }

.sidebar { padding-top: 262px; }
.side-card { margin-bottom: 24px; padding: 24px; border-top: 4px solid var(--ink); background: #f7f7f7; }
.side-card--teal { border-top-color: var(--shelly); background: #edf8f7; }
.side-card h2 { margin: 0 0 13px; color: var(--ink); font-size: 20px; line-height: 1.2; text-transform: uppercase; letter-spacing: .04em; }
.side-card p, .side-card li { font-size: 14px; line-height: 1.55; }
.side-card ul { margin: 0; padding-left: 18px; }
.resource-links { list-style: none; padding: 0 !important; }
.resource-links li { border-bottom: 1px solid #dfe4e4; }
.resource-links a { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; color: #31464b; text-decoration: none; font-weight: 700; }
.resource-links a::after { content: "↗"; color: var(--shelly); }

.footer { padding: 36px 45px 40px; color: #c8c8c8; background: #111; }
.footer__top { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid #2d2d2d; }
.footer__brand { color: #fff; font-size: 27px; font-weight: 800; letter-spacing: -.03em; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { color: #ddd; text-decoration: none; }
.footer__bottom { padding-top: 22px; font-size: 13px; }

:focus-visible { outline: 3px solid #ffb14a; outline-offset: 3px; }
.screen-reader { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.noscript { padding: 16px 18px; color: #3f2f1e; background: #fff6df; }

@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { padding-top: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
  .side-card { margin-bottom: 0; }
}

@media (max-width: 680px) {
  body { background: #fff; }
  .utility { padding: 0 18px; }
  .utility__tag { display: none; }
  .masthead { min-height: 112px; padding: 22px 18px; }
  .masthead__note { display: none; }
  .brand__name { font-size: 37px; }
  .nav__inner { padding: 0 4px; }
  .nav a { padding-inline: 14px; }
  .content-shell { padding: 24px 18px 34px; }
  h1 { font-size: 39px; }
  .dek { font-size: 19px; }
  .hero-art { min-height: 470px; }
  .hero-art__copy { inset: 30px 28px auto; width: auto; }
  .hero-art__copy span { font-size: 31px; }
  .home-illustration { width: 330px; height: 260px; right: -10px; }
  .hero-art__caption { left: 28px; bottom: 20px; }
  .answers, .path-grid, .sidebar { grid-template-columns: 1fr; }
  .survey__top, .survey__body, .result { padding-left: 19px; padding-right: 19px; }
  .progress { margin-inline: 19px; }
  .survey legend { font-size: 24px; }
  .final-cta { padding: 25px 21px; }
  .footer { padding: 32px 18px; }
  .footer__top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

