:root {
  --paper: #f4f0e7;
  --paper-deep: #e8e1d4;
  --white: #ffffff;
  --ink: #0d1828;
  --navy: #07172b;
  --navy-soft: #10243d;
  --muted: #526071;
  --line: #bdc5ce;
  --line-dark: #34465c;
  --blue: #1768e5;
  --blue-dark: #0e4eaf;
  --cyan: #00b8d9;
  --orange: #eb5a19;
  --moss: #5e742d;
  --success: #1b6d4a;
  --focus: #00c7eb;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 205px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #d8e1eb;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-nav .site-nav__cta {
  margin-left: 8px;
  padding-inline: 18px;
  background: var(--blue);
  color: var(--white);
  border: 1px solid #4f93f2;
  text-decoration: none;
}

.site-nav .site-nav__cta:hover {
  background: #2b7aeb;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 74px;
  border-bottom: 1px solid var(--line);
}

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

.hero::before {
  width: 190px;
  height: 190px;
  right: -80px;
  top: 52px;
  border: 28px solid var(--cyan);
  opacity: 0.16;
  transform: rotate(15deg);
}

.hero::after {
  width: 360px;
  height: 1px;
  left: -140px;
  bottom: 82px;
  background: var(--orange);
  transform: rotate(-18deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.7fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 4px;
  background: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.91;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 710px;
  margin-bottom: 32px;
  color: #344154;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
}

.hero__lead strong {
  color: var(--ink);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 2px solid var(--navy);
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.button--outline {
  background: transparent;
  color: var(--navy);
}

.button--outline:hover {
  background: var(--white);
  border-color: var(--navy);
}

.button--white {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.button--white:hover {
  background: #dcefff;
  border-color: #dcefff;
}

.button__arrow {
  font-size: 19px;
  line-height: 1;
}

.decision-mark {
  position: relative;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  box-shadow: 12px 12px 0 var(--cyan);
}

.decision-mark__label {
  margin-bottom: 18px;
  color: #a9bdd4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.decision-mark__numbers {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.decision-mark__numbers span:last-child {
  color: var(--cyan);
}

.decision-mark__divider {
  width: 1px;
  height: 66px;
  background: var(--line-dark);
  transform: rotate(18deg);
}

.decision-mark p {
  margin-bottom: 0;
  color: #d8e1eb;
  font-size: 15px;
  line-height: 1.65;
}

.fact-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.fact-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.fact:last-child {
  border-right: 1px solid var(--line);
}

.fact strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 15px;
}

.fact span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 88px 0;
}

.section--white {
  background: var(--white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section--navy .section-heading p {
  color: #b8c7d8;
}

.template-stack {
  display: grid;
  gap: 34px;
}

.template {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 560px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(13, 24, 40, 0.12);
}

.template--storefront {
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
}

.template__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #d8dde2;
}

.template__visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.template__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: var(--orange);
}

.template--storefront .template__visual {
  order: 2;
}

.template--storefront .template__visual::after {
  background: var(--moss);
}

.template__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
}

.template__index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.template__index strong {
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
}

.template__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 10px;
  background: #fff0e8;
  color: #8f310a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.template--storefront .template__tag {
  background: #eef2df;
  color: #3f521d;
}

.template h2 {
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 66px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.template__summary {
  margin-bottom: 22px;
  color: #3f4b5c;
  font-size: 18px;
}

.template__best-for {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  background: #fff7f1;
}

.template--storefront .template__best-for {
  border-color: var(--moss);
  background: #f6f8ed;
}

.template__best-for strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.template__best-for span {
  color: #354153;
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  color: #354153;
  font-size: 15px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

.template .actions {
  margin-top: auto;
}

.template .button--outline {
  border-width: 1px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.choice {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.choice__number {
  display: block;
  margin-bottom: 38px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.choice h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.choice p {
  margin-bottom: 15px;
  color: #bac7d6;
  font-size: 15px;
}

.choice a {
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 4px;
}

.choice a:hover {
  color: var(--cyan);
}

.comparison-wrap {
  overflow-x: auto;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--paper-deep);
}

.comparison {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.comparison caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.comparison th,
.comparison td {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison tr:last-child th,
.comparison tr:last-child td {
  border-bottom: 0;
}

.comparison th:last-child,
.comparison td:last-child {
  border-right: 0;
}

.comparison thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.comparison thead th:first-child {
  color: #a9bdd4;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.comparison tbody th {
  width: 23%;
  background: #f5f6f7;
  color: var(--ink);
  font-size: 14px;
}

.comparison tbody td {
  width: 38.5%;
  color: #3b4859;
  font-size: 15px;
}

.comparison a {
  color: var(--blue-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.legacy-note {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 26px;
  align-items: center;
  margin-top: 32px;
  padding: 26px;
  border: 1px solid #aeb9c6;
  background: var(--paper);
}

.legacy-note__badge {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.legacy-note h3 {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.legacy-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.support {
  position: relative;
  overflow: hidden;
}

.support::after {
  content: "GC";
  position: absolute;
  right: -14px;
  bottom: -70px;
  color: #0c2139;
  font-family: var(--display);
  font-size: 260px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.support__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 70px;
  align-items: end;
}

.support h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.support__copy > p {
  max-width: 680px;
  margin-bottom: 28px;
  color: #bcc9d8;
  font-size: 18px;
}

.support__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.support__steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #dbe4ed;
}

.support__steps span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
}

.site-footer {
  padding: 38px 0;
  background: #04101f;
  color: #9eb0c4;
  border-top: 1px solid var(--line-dark);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 22px;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #c7d2df;
  font-size: 14px;
  text-underline-offset: 4px;
}

.site-footer a:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .site-nav a:not(.site-nav__cta) {
    display: none;
  }

  .hero__grid,
  .support__grid {
    grid-template-columns: 1fr;
  }

  .decision-mark {
    max-width: 520px;
  }

  .template,
  .template--storefront {
    grid-template-columns: 1fr;
  }

  .template--storefront .template__visual {
    order: 0;
  }

  .template__visual img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice {
    min-height: 0;
  }

  .choice__number {
    margin-bottom: 18px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 166px;
  }

  .site-nav .site-nav__cta {
    min-height: 42px;
    margin-left: 0;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero {
    padding: 58px 0 54px;
  }

  .hero__grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(47px, 15vw, 66px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .decision-mark {
    padding: 23px;
    box-shadow: 7px 7px 0 var(--cyan);
  }

  .decision-mark__numbers {
    font-size: 68px;
  }

  .fact-bar__grid {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:last-child {
    padding: 18px 5px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 43px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .template {
    min-height: 0;
    box-shadow: 6px 6px 0 rgba(13, 24, 40, 0.12);
  }

  .template__content {
    padding: 27px 23px 30px;
  }

  .template__index {
    margin-bottom: 20px;
  }

  .template__index strong {
    font-size: 40px;
  }

  .template h2 {
    font-size: 45px;
  }

  .template__summary {
    font-size: 16px;
  }

  .template__best-for {
    padding: 14px;
  }

  .actions {
    align-items: stretch;
  }

  .actions .button {
    width: 100%;
  }

  .choice {
    padding: 25px 22px;
  }

  .comparison-wrap {
    box-shadow: 5px 5px 0 var(--paper-deep);
  }

  .legacy-note {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .legacy-note__badge {
    width: 86px;
    height: 70px;
    font-size: 28px;
  }

  .legacy-note .button {
    width: 100%;
  }

  .support__grid {
    gap: 38px;
  }

  .support h2 {
    font-size: 49px;
  }

  .support::after {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
