@font-face {
  font-family: Inter;
  src: url(/assets/fonts/inter-latin-400-normal.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/inter-latin-600-normal.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/inter-latin-700-normal.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #141515;
  --paper: #f7f7f5;
  --yellow: #f9e902;
  --muted: #aaa;
  --line: #444;
  --container: 1320px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: #f9f9f9;
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-weight: 700;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.8rem, 5.05vw, 4.5rem);
  line-height: 1.02;
}
h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}
h3 {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
p {
  line-height: 1.5;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #7783f7;
  outline-offset: 5px;
}
.container {
  width: calc(100% - 8.4%);
  max-width: var(--container);
  margin: auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 500;
  color: #a6a6a6;
  line-height: 1.6;
  margin-bottom: 16px;
}
.site-header {
  height: 90px;
  background: #121313;
  position: relative;
  z-index: 10;
}
.site-header.over-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand img {
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.875rem;
}
.site-header nav > a:not(.button) {
  padding: 12px 0;
}
.site-header nav > a:not(.button):hover,
.site-footer a:hover {
  color: var(--yellow);
}
.site-header nav > a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 8px;
}
.site-header .login-link {
  border-left: 1px solid #888;
  padding-left: 36px !important;
  margin-left: 8px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: var(--yellow);
  color: #080900;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 6px;
  padding: 8px 28px;
  min-height: 42px;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px #e7ef00;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  background: #fff94d;
}
.button span {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.site-header .button {
  font-size: 0.875rem;
  padding: 8px 25px;
  min-height: 42px;
}
.site-header .button span {
  display: none;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 710px;
  height: 50vw;
  max-height: 820px;
  display: flex;
  align-items: center;
  background: #171818 url("/assets/garage-hero.png") center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.47), rgba(0, 0, 0, 0.15) 44%, transparent 73%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 25%);
}
.hero-content {
  padding-top: 82px;
  padding-bottom: 45px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  max-width: 660px;
}
.hero-copy {
  font-size: 1rem;
  line-height: 1.45;
  margin-top: 22px;
  color: #efefef;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 34px;
}
.text-link {
  font-size: 0.875rem;
  font-weight: 700;
  text-underline-offset: 7px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
}

.arrow {
  padding-bottom: 3px;
}

.text-link span {
  font-size: 1.6rem;
  text-decoration: none;
}
.hero-chequer {
  position: absolute;
  bottom: -66px;
  left: -24px;
  width: 335px;
  opacity: 0.17;
  z-index: 1;
}
.product-section {
  background: var(--paper);
  color: #101111;
  padding: 68px 0 60px;
}
.product-grid {
  display: grid;
  grid-template-columns: 32% 65%;
  gap: 3%;
  align-items: center;
}
.product-copy .eyebrow {
  color: #777;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.product-copy h2 {
  font-size: clamp(1.55rem, 2.1vw, 1.9rem);
}
.short-rule {
  height: 1px;
  width: 52px;
  background: #656565;
  margin: 27px 0;
}
.intro-copy {
  font-size: 1rem;
  line-height: 1.45;
  max-width: 425px;
}
.feature-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px;
  margin: 32px 0 0;
}
.feature-list li {
  display: flex;
  gap: 19px;
  align-items: center;
}
.feature-icon {
  width: 53px;
  height: 53px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #e9e9e7;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 31px;
  height: 34px;
}
.feature-list h3 {
  font-size: 1rem;
  line-height: 1.3;
}
.feature-list p {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #404040;
  margin-top: 3px;
}
.product-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 18px #0002;
  border: 1px solid #292929;
}
.workflow {
  padding: 46px 0 48px;
  background: radial-gradient(ellipse at 45% 70%, #202121, #161717);
}
.heading-rule {
  display: flex;
  align-items: center;
  gap: 35px;
}
.heading-rule h2 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  white-space: nowrap;
}
.heading-rule:after {
  content: "";
  height: 1px;
  background: #636363;
  flex: 1;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}
.steps li {
  display: flex;
  gap: 30px;
  padding: 0 36px;
  border-left: 1px solid #555;
}
.steps li:first-child {
  padding-left: 0;
  border: 0;
}
.steps li:last-child {
  padding-right: 0;
}
.step-number {
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #aaa;
  line-height: 1.2;
}
.steps h3 {
  font-size: 1.25rem;
  margin: 17px 0 8px;
}
.steps p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}
.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 0 56px;
  background: #0c0d0d;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, #0b0c0c 25%, #0b0c0c88 65%, #0b0c0c),
    url("/assets/garage-hero.png") center bottom/cover;
  opacity: 0.45;
}
.closing::after {
  content: "";
  position: absolute;
  right: -1%;
  top: -65px;
  bottom: -80px;
  width: 43%;
  z-index: -1;
  opacity: 0.22;
  background: url("/assets/chequer.svg") center / contain no-repeat;

  -webkit-mask-image: linear-gradient(to right, transparent, black);
  mask-image: linear-gradient(to right, transparent, black);
}
.closing h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 23px;
}
.closing .eyebrow {
  margin-bottom: 12px;
}
.site-footer {
  background: #0c0d0d;
  color: #bbb;
  padding: 24px 0 30px;
  font-size: 0.75rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 45px;
}
.footer-inner > p {
  border-left: 1px solid #888;
  padding-left: 25px;
}
.site-footer nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.site-footer nav > a:last-child {
  border-left: 1px solid #555;
  padding-left: 28px;
}
.footer-inner > span {
  border-left: 1px solid #555;
  padding-left: 28px;
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--yellow);
  color: #000;
  padding: 12px;
  z-index: 50;
}
.skip-link:focus {
  top: 12px;
}
.page-intro {
  position: relative;
  overflow: hidden;
  padding: 85px 0 75px;
  background: radial-gradient(ellipse at 75% 100%, #292b2b, #151616 70%);
}
.page-intro:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 450px;
  height: 250px;
  background: url("/assets/chequer.svg") center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.page-intro h1 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  max-width: 900px;
}
.page-intro .container > p:last-child {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 650px;
  margin-top: 25px;
}
.light-section {
  background: var(--paper);
  color: var(--ink);
  padding: 75px 0 90px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10%;
}
.prose p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  line-height: 1.7;
}
.prose h3 {
  font-size: 1.4rem;
  margin: 38px 0 14px;
}
.inline-link {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 700;
  line-height: 1.5;
  padding: 10px 0;
}
.inline-link:hover {
  text-decoration-thickness: 2px;
}
.guide {
  max-width: 1040px;
}
.guide-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 35px;
  padding: 40px 0;
  border-bottom: 1px solid #ccc;
}
.guide-step:first-child {
  padding-top: 0;
}
.guide-step:last-child {
  border: 0;
  padding-bottom: 0;
}
.guide-step .step-number {
  font-size: 3rem;
  color: #888;
}
.guide-step .eyebrow {
  color: #727272;
}
.guide-step h2 {
  margin-bottom: 18px;
}
.guide-step p:last-child {
  font-size: 1.125rem;
  color: #444;
  line-height: 1.65;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 9%;
}
.faq-layout > div > p {
  margin: 20px 0;
  font-size: 1.05rem;
  color: #555;
}
.faq-list details {
  border-top: 1px solid #ccc;
}
.faq-list details:last-child {
  border-bottom: 1px solid #ccc;
}
.faq-list summary {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 24px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 0.15s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4b4b4b;
  padding: 0 35px 26px 0;
}
.login-content {
  max-width: 750px;
}
.login-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.login-content > p:not(.eyebrow) {
  font-size: 1.125rem;
  margin-bottom: 20px;
  max-width: 660px;
}
.login-content .muted {
  color: #646464;
}
.login-content .button {
  margin: 8px 28px 0 0;
}
.login-content .eyebrow {
  color: #747474;
}
@media (min-width: 1550px) {
  .hero {
    height: 760px;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 1100px) {
  .hero {
    min-height: 625px;
  }
  .header-inner {
    gap: 20px;
  }
  .site-header nav {
    gap: 23px;
  }
  .site-header .login-link {
    padding-left: 23px !important;
  }
  .hero h1 {
    font-size: 3.8rem;
  }
  .product-section {
    padding: 55px 0;
  }
  .product-grid {
    grid-template-columns: 34% 63%;
  }
  .intro-copy {
    font-size: 1rem;
  }
  .feature-list {
    gap: 20px;
  }
  .feature-list li {
    gap: 12px;
  }
  .feature-icon {
    width: 44px;
    height: 48px;
  }
  .feature-list h3 {
    font-size: 0.9rem;
  }
  .feature-list p {
    font-size: 0.8rem;
  }
  .steps li {
    gap: 20px;
    padding: 0 25px;
  }
  .steps h3 {
    font-size: 1.1rem;
  }
  .steps p {
    font-size: 0.95rem;
  }
  .footer-inner {
    gap: 20px;
  }
  .site-footer nav {
    gap: 18px;
  }
  .footer-inner > p {
    max-width: 230px;
  }
  .site-footer nav > a:last-child,
  .footer-inner > span {
    padding-left: 18px;
  }
}
@media (max-width: 820px) {
  .site-header {
    height: 78px;
  }
  .brand img {
    width: 135px;
  }
  .menu-toggle {
    display: flex;
    gap: 13px;
    align-items: center;
    background: transparent;
    color: #fff;
    border: 1px solid #777;
    border-radius: 4px;
    padding: 11px 14px;
    font-size: 0.9rem;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    padding: 20px 6%;
    background: #131414;
    border-top: 1px solid #444;
    box-shadow: 0 15px 20px #0005;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav > a {
    min-height: 46px;
  }
  .site-header .login-link {
    border: 0;
    margin: 0;
    padding-left: 0 !important;
  }
  .site-header .button {
    margin-top: 8px;
  }
  .hero {
    min-height: 650px;
    height: auto;
    background-position: 58% center;
  }
  .hero:before {
    background: linear-gradient(90deg, #000a, #0006 60%, #0003);
  }
  .hero h1 {
    font-size: clamp(2.8rem, 6.8vw, 3.8rem);
  }
  .hero-content {
    padding-top: 135px;
    padding-bottom: 95px;
  }
  .hero-copy {
    font-size: 1rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-copy {
    max-width: 610px;
  }
  .product-copy h2 {
    font-size: 2.25rem;
  }
  .intro-copy {
    font-size: 1.125rem;
    max-width: 550px;
  }
  .feature-list h3 {
    font-size: 1rem;
  }
  .feature-list p {
    font-size: 0.95rem;
  }
  .product-visual {
    width: 100%;
  }
  .heading-rule h2 {
    white-space: normal;
  }
  .steps li {
    padding: 0 18px;
    gap: 13px;
    flex-direction: column;
  }
  .steps h3 {
    margin-top: 0;
  }
  .site-footer .footer-inner {
    flex-wrap: wrap;
    gap: 22px;
  }
  .site-footer nav {
    margin-left: 0;
    flex-basis: 65%;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-inner > span {
    margin-left: auto;
  }
  .footer-inner > p {
    max-width: none;
  }
  .editorial-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .light-section {
    padding: 50px 0 65px;
  }
  .page-intro {
    padding: 55px 0;
  }
  .closing:after {
    width: 60%;
    opacity: 0.12;
  }
  .guide-step {
    grid-template-columns: 65px 1fr;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .container {
    width: calc(100% - 40px);
  }
  .hero {
    min-height: 640px;
    background-position: 60% center;
  }
  .hero:before {
    background: linear-gradient(90deg, #000b, #0005), linear-gradient(0deg, #0008, transparent 65%);
  }
  .hero-content {
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .hero .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.25rem);
    letter-spacing: -0.045em;
  }
  .hero-copy {
    font-size: 1rem;
    margin-top: 24px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  .button {
    font-size: 0.875rem;
    padding: 8px 20px;
    gap: 17px;
  }
  .text-link {
    font-size: 0.875rem;
    gap: 12px;
  }
  .hero-chequer {
    width: 250px;
    bottom: -60px;
  }
  .product-section {
    padding: 42px 0;
  }
  .product-copy .eyebrow {
    font-size: 0.64rem;
  }
  .product-copy h2 {
    font-size: 1.85rem;
  }
  .short-rule {
    margin: 22px 0;
  }
  .feature-list {
    gap: 24px;
  }
  .feature-list li {
    gap: 15px;
  }
  .feature-icon {
    width: 48px;
    height: 50px;
  }
  .workflow {
    padding: 38px 0 42px;
  }
  .heading-rule h2 {
    font-size: 2.2rem;
  }
  .heading-rule:after {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 25px;
  }
  .steps li {
    border: 0;
    border-top: 1px solid #444;
    padding: 24px 0 0;
    flex-direction: row;
    gap: 23px;
  }
  .steps li:first-child {
    padding-top: 0;
  }
  .steps h3 {
    font-size: 1.2rem;
  }
  .steps p {
    font-size: 1rem;
  }
  .step-number {
    min-width: 30px;
  }
  .closing {
    padding: 36px 0 42px;
  }
  .closing h2 {
    font-size: 2rem;
    max-width: 320px;
  }
  .closing:after {
    width: 80%;
    right: -20%;
  }
  .footer-inner > p {
    font-size: 0.7rem;
    padding-left: 15px;
  }
  .footer-inner > .brand img {
    width: 105px;
  }
  .site-footer .footer-inner {
    gap: 20px 16px;
  }
  .site-footer nav {
    gap: 20px;
    flex-basis: 100%;
    font-size: 0.8rem;
  }
  .footer-inner > span {
    border: 0;
    margin: 0;
    padding: 0;
  }
  .page-intro h1 {
    font-size: 2.7rem;
  }
  .page-intro .container > p:last-child {
    font-size: 1.1rem;
  }
  .guide-step {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .guide-step .step-number {
    font-size: 2rem;
  }
  .guide-step h2 {
    font-size: 1.9rem;
  }
  .guide-step .eyebrow {
    font-size: 0.68rem;
  }
  .faq-list summary {
    font-size: 1rem;
  }
  .login-content h2 {
    font-size: 2rem;
  }
  .login-content .button {
    margin-right: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
