@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/open-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --orange: #fc450d;
  --orange-dark: #d93705;
  --blue: #2893c2;
  --amber: #fca712;
  --amber-text: #a86500;
  --amber-badge: #cc8400;
  --green: #36ad16;
  --green-badge: #309b13;
  --ink: #2f2f2f;
  --body: #666;
  --muted: #8a8a8a;
  --line: #e4e4e4;
  --dark: #1e1e1e;
  --black: #000;
  --surface: #fff;
  --surface-alt: #fafaf9;
  --wrap: 1140px;
  --header-h: 72px;
  --radius: 3px;
  --shadow: 0 1px 2px rgba(0, 0, 0, .06);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  margin: 0 0 .5rem;
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--orange-dark);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

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

ul, ol { margin: 0; padding: 0; list-style: none; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--orange-dark);
  color: #fff;
  font-weight: 700;
}

.skip:focus { left: 0; }

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.header__logo img {
  width: 195px;
  height: 65px;
  object-fit: contain;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  display: inline-block;
  padding: 12px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--orange-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.nav__link[aria-current] {
  color: var(--orange-dark);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.nav__login {
  display: inline-block;
  padding: 7px 16px;
  border-radius: var(--radius);
  background: var(--orange-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background-color .15s ease;
}

.nav__login:hover {
  background: #b52d03;
  color: #fff;
  text-decoration: none;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: none;
  cursor: pointer;
  color: var(--ink);
}

.nav__toggle svg { margin-inline: auto; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }

/* Sections */

.section {
  padding: 72px 0;
  scroll-margin-top: var(--header-h);
  border-top: 8px solid transparent;
}

.section--why { border-top-color: var(--orange); }
.section--what { border-top-color: var(--blue); background: var(--surface-alt); }
.section--process { border-top-color: var(--amber); }
.section--pricing { border-top-color: var(--orange); background: var(--surface-alt); }
.section--access { border-top-color: var(--green); }
.section--contact { border-top-color: var(--black); }

.badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 22px;
  color: #fff;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .005em;
}

.badge--caps {
  text-transform: uppercase;
  letter-spacing: .02em;
}

.badge--orange { background: var(--orange); }
.badge--blue { background: var(--blue); }
.badge--amber { background: var(--amber-badge); }
.badge--green { background: var(--green-badge); }
.badge--black { background: var(--black); }

.section__head {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.section__head p { color: var(--body); }

/* Hero */

.hero {
  padding: 72px 0 0;
  text-align: center;
  scroll-margin-top: var(--header-h);
}

.hero__text {
  max-width: 620px;
  margin-inline: auto;
}

.hero h1 {
  color: var(--orange);
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero__tagline {
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-size: clamp(19px, 3vw, 23px);
  font-weight: 700;
}

.hero__lead { font-size: 17px; }

.button {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 30px;
  border: 2px solid var(--orange-dark);
  border-radius: var(--radius);
  color: var(--orange-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background-color .15s ease, color .15s ease;
}

.button:hover {
  background: var(--orange-dark);
  color: #fff;
  text-decoration: none;
}

.button--solid {
  background: var(--orange-dark);
  color: #fff;
}

.button--solid:hover { background: #b52d03; }

.hero__art {
  max-width: 974px;
  margin: 40px auto 0;
}

/* Compare (Why) */

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

.compare__col h3 {
  font-size: 21px;
  font-weight: 700;
}

.compare__intro { margin-bottom: 1.5rem; }

.tabs__list {
  display: flex;
  border: 1px solid var(--muted);
  border-bottom: 0;
  background: var(--surface-alt);
}

.tabs__tab {
  flex: 1;
  padding: 12px 10px;
  border: 0;
  border-right: 1px solid var(--muted);
  background: none;
  box-shadow: inset 0 3px 0 transparent;
  color: var(--body);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color .15s ease, background-color .15s ease;
}

.tabs__tab:last-child { border-right: 0; }
.tabs__tab:hover { color: var(--ink); }

.tabs__tab[aria-selected="true"] {
  background: var(--surface);
  box-shadow: inset 0 3px 0 var(--orange-dark);
  color: var(--ink);
  font-weight: 800;
}

.tabs__panel {
  padding: 24px;
  border: 1px solid var(--muted);
  background: var(--surface);
  font-size: 15px;
}

.tabs__panel[hidden] { display: none; }

.outcome { margin-top: 32px; }

.outcome h4 {
  margin-bottom: .75rem;
  font-size: 18px;
  font-weight: 700;
}

.outcome h4 em {
  font-style: normal;
  text-decoration: underline;
}

.ticks li {
  position: relative;
  margin-bottom: .5rem;
  padding-left: 26px;
  font-size: 15px;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
}

.ticks--yes li::before { background: var(--green); }

/* What */

.what__art { max-width: 940px; margin-inline: auto; }

/* Process */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  text-align: center;
}

.step__num {
  display: block;
  color: var(--amber-text);
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
}

.step h3 {
  margin: 10px 0 8px;
  color: var(--amber-text);
  font-size: 17px;
  font-weight: 700;
}

.step p { font-size: 15px; }

.reports { margin-top: 72px; }

.reports__title {
  margin-bottom: 40px;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  text-align: center;
}

.reports__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  text-align: center;
}

.reports__grid h4 {
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: 700;
}

.reports__grid img { margin-inline: auto; }

.divider {
  width: 66%;
  height: 1px;
  margin: 64px auto 0;
  border: 0;
  background: var(--amber);
}

/* Pricing */

.plan {
  max-width: 380px;
  margin-inline: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.plan__head {
  padding: 26px 20px;
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.plan__head h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.plan__term {
  color: var(--body);
  font-size: 15px;
}

.plan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--orange);
}

.plan__currency {
  color: var(--orange-dark);
  font-size: 15px;
}

.plan__amount {
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.plan__features {
  padding: 26px 26px 8px;
}

.plan__features li {
  position: relative;
  margin-bottom: 1.1rem;
  padding-left: 20px;
  font-size: 15px;
}

.plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.plan__cta {
  padding: 0 26px 30px;
  text-align: center;
}

.plan__cta .button { margin-top: 0; }

/* Access */

.access {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.access__app {
  display: flex;
  justify-content: center;
}

.access__app a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: var(--radius);
  color: var(--orange-dark);
  font-size: 16px;
  font-weight: 700;
}

.access__app img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .28), 0 0 0 .5px rgba(0, 0, 0, .06);
}

.access__app-note {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.access h3 {
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 700;
}

/* Contact */

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 760px;
  margin-inline: auto;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
}

.contact__label {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact address {
  font-style: normal;
  font-size: 15px;
}

/* Footer */

.footer {
  padding: 22px 0;
  background: var(--black);
  color: #fff;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.footer p { margin: 0; }
.footer__legal { color: #cfcfcf; }
.footer__built a { display: inline-block; }
.footer__built img { width: 125px; height: 39px; }

@media (max-width: 980px) {
  .section { padding: 56px 0; }
  .hero { padding-top: 56px; }
  .compare,
  .reports__grid,
  .contact { gap: 40px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
}

@media (max-width: 782px) {
  .nav__toggle { display: block; }

  .nav__list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    background: var(--surface);
    box-shadow: 0 12px 20px rgba(0, 0, 0, .1);
  }

  .nav__list.is-open { display: flex; }

  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__list li:last-child { border-bottom: 0; }

  .nav__link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }

  .nav__login {
    display: block;
    margin-top: 14px;
    padding: 12px 16px;
    text-align: center;
  }

  .header__logo img { width: 165px; height: 55px; }

  .compare,
  .reports__grid,
  .access,
  .contact { grid-template-columns: minmax(0, 1fr); }

  .steps { grid-template-columns: minmax(0, 1fr); }

  .reports { margin-top: 56px; }
  .divider { margin-top: 48px; }
}

@media (max-width: 520px) {
  .tabs__list { flex-direction: column; }

  .tabs__tab {
    border-right: 0;
    border-bottom: 1px solid var(--muted);
    border-left: 4px solid transparent;
  }

  .tabs__tab:last-child { border-bottom: 0; }
  .tabs__tab[aria-selected="true"] { border-left-color: var(--orange-dark); }
  .footer__inner { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
