@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-wght-normal.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;
}

/* The wordmark only: every other letterform on the page stays in Inter. */
@font-face {
  font-family: 'Archivo Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  font-stretch: 112%;
  src: url('/assets/fonts/archivo-latin-wdth-normal.woff2') format('woff2-variations');
  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 {
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --ink-300: #cbd5e1;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --ink-50: #f8fafc;
  --petrol: #0e3a4a;
  --orange: #f2702b;
  --on-orange: #1a0d05;
  --dark-ground: #0a2530;
  --green-600: #16a34a;
  --whatsapp: #25d366;
  --whatsapp-hover: #4ae083;
  --whatsapp-ink: #052e16;
  --shadow-float: 0 30px 60px -20px rgb(2 6 23 / 0.55);
  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --header-height: 64px;
  color-scheme: light;
}

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

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

body {
  margin: 0;
  font-family:
    'Inter',
    ui-sans-serif,
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  margin: 0;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--petrol);
  outline-offset: 3px;
  border-radius: 6px;
}

/* The dark bands sit on --dark-ground, where petrol nearly disappears
   (contrast ~1.3:1), so they get the orange ring instead. */
.site-header :focus-visible,
.hero :focus-visible,
.band :focus-visible,
.final :focus-visible,
.site-footer :focus-visible,
.not-found :focus-visible {
  outline-color: var(--orange);
}

svg[viewBox='0 0 24 24'] {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: #fff;
  color: var(--ink-900);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

main,
section[id] {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.15s,
    border-color 0.15s,
    transform 0.15s;
}

.btn svg {
  flex: none;
  width: 20px;
  height: 20px;
}

.btn-sm {
  min-height: 44px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--whatsapp-ink);
  box-shadow: 0 10px 30px -12px rgb(37 211 102 / 0.6);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}

.btn-ghost-dark {
  border-color: rgb(255 255 255 / 0.22);
  background: rgb(255 255 255 / 0.04);
  color: #fff;
}

.btn-ghost-dark:hover {
  border-color: rgb(255 255 255 / 0.45);
  background: rgb(255 255 255 / 0.08);
}

.btn-outline {
  border-color: var(--ink-300);
  background: #fff;
  color: var(--ink-900);
}

.btn-outline:hover {
  border-color: var(--ink-900);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(255 255 255 / 0.07);
  background: var(--dark-ground);
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  text-decoration: none;
}

.brand svg {
  width: 30px;
  height: 30px;
}

/* "torquim", set in Archivo — the only place on the page that isn't Inter. */
.brand-word {
  color: #fff;
  font-family: 'Archivo Variable', 'Inter', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  gap: 0.25rem;
  margin-left: 1.5rem;
}

.nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: var(--ink-300);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:not(.btn):hover {
  background: rgb(255 255 255 / 0.06);
  color: #fff;
}

.nav-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.link-quiet {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: var(--ink-300);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.link-quiet:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle .icon-close,
.menu-toggle[aria-expanded='true'] .icon-open {
  display: none;
}

.menu-toggle[aria-expanded='true'] .icon-close {
  display: block;
}

@media (max-width: 880px) {
  .nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
    padding: 0.75rem var(--gutter) 1.25rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
    background: var(--dark-ground);
  }

  .nav[data-open='true'] {
    display: flex;
  }

  .nav a:not(.btn) {
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 0.5rem;
  }

  .menu-toggle:not([hidden]) {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .header-actions .btn {
    display: none;
  }
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 7rem);
  background: var(--dark-ground);
  color: var(--ink-300);
}

.hero::before {
  position: absolute;
  top: -30%;
  right: -15%;
  width: min(900px, 130vw);
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgb(242 112 43 / 0.2), transparent 70%);
  content: '';
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: '';
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 75% 35%, #000 10%, transparent 65%);
  mask-image: radial-gradient(ellipse at 75% 35%, #000 10%, transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 3.5rem;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgb(242 112 43 / 0.35);
  border-radius: 999px;
  background: rgb(242 112 43 / 0.12);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin-top: 1.25rem;
  color: #fff;
  font-size: clamp(2.25rem, 1.35rem + 3.8vw, 3.9rem);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.lead {
  max-width: 36em;
  margin-top: 1.25rem;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (max-width: 480px) {
  .cta-row .btn {
    width: 100%;
  }
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.75rem;
  font-size: 0.9375rem;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-points svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--orange);
}

/* Hero illustration: drawn in HTML so it stays sharp and weighs nothing. */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 560px;
  margin-inline: auto;
}

/* The phone covers the bottom right of the window, so the first two rows keep
   their status in sight. */
.mock-window {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-float);
  color: var(--ink-700);
}

.mock-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ink-200);
  background: var(--ink-100);
}

.mock-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-300);
}

.mock-body {
  padding: 18px 18px 22px;
}

.mock-title {
  margin-bottom: 10px;
  color: var(--ink-900);
  font-size: 0.95rem;
  font-weight: 700;
}

.mock-rows li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--ink-100);
  font-size: 0.8125rem;
}

.mock-code {
  color: var(--ink-900);
  font-weight: 650;
}

.mock-plate {
  color: var(--ink-500);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.04em;
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-info {
  background: #e0f2fe;
  color: #075985;
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.mock-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 256px;
  padding: 10px;
  border-radius: 36px;
  background: #05080f;
  box-shadow:
    var(--shadow-float),
    0 0 0 1px rgb(255 255 255 / 0.1);
}

.mock-notch {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 20px;
  margin: 0 auto -20px;
  border-radius: 0 0 12px 12px;
  background: #05080f;
}

.mock-screen {
  padding: 30px 16px 16px;
  border-radius: 27px;
  background: #fff;
  color: var(--ink-700);
  font-size: 0.78rem;
}

.mock-shop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-logo {
  display: grid;
  flex: none;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink-900);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
}

.mock-shop strong,
.mock-shop small {
  display: block;
}

.mock-shop strong {
  color: var(--ink-900);
  font-size: 0.82rem;
}

.mock-shop small {
  color: var(--ink-500);
  font-size: 0.72rem;
}

.mock-vehicle {
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--ink-50);
  color: var(--ink-600);
}

.mock-items {
  margin-top: 8px;
}

.mock-items li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--ink-200);
}

.mock-items li span:last-child {
  color: var(--ink-900);
  font-weight: 600;
  white-space: nowrap;
}

.mock-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--ink-600);
}

.mock-total strong {
  color: var(--ink-900);
  font-size: 1.05rem;
}

.mock-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.mock-approve,
.mock-decline {
  display: grid;
  place-items: center;
  height: 36px;
  border-radius: 9px;
  font-weight: 650;
}

.mock-approve {
  background: var(--ink-900);
  color: #fff;
}

.mock-decline {
  border: 1px solid var(--ink-200);
  color: var(--ink-700);
}

.mock-toast {
  position: absolute;
  bottom: 14%;
  left: 2%;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px -12px rgb(2 6 23 / 0.55);
  color: var(--ink-900);
  font-size: 0.8125rem;
  font-weight: 600;
  animation: rise 0.6s 0.5s both ease-out;
}

.mock-toast svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--green-600);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 600px) {
  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
  }

  .mock-window {
    display: none;
  }

  .mock-phone {
    position: relative;
  }

  .mock-toast {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -1.5rem;
  }
}

/* Sections */

.section {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.section-alt {
  background: var(--ink-50);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  color: var(--petrol);
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.875rem, 1.3rem + 2.2vw, 2.75rem);
  letter-spacing: -0.03em;
}

.sub {
  margin-top: 1rem;
  color: var(--ink-600);
  font-size: 1.125rem;
}

/* Before and after */

.swap-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .swap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.swap {
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  background: #fff;
}

.swap-before,
.swap-after {
  padding: 1.1rem 1.35rem;
}

.swap-before {
  border-bottom: 1px solid var(--ink-200);
  background: var(--ink-50);
  color: var(--ink-600);
}

.swap-after {
  color: var(--ink-800);
  font-weight: 500;
}

.swap-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.swap-before .swap-label {
  color: #b91c1c;
}

.swap-after .swap-label {
  color: #15803d;
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1rem;
}

.feature {
  padding: 1.5rem;
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  background: #fff;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.feature:hover {
  border-color: var(--ink-300);
  box-shadow: 0 14px 30px -20px rgb(15 23 42 / 0.4);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgb(14 58 74 / 0.08);
  color: var(--petrol);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.feature p {
  margin-top: 0.5rem;
  color: var(--ink-600);
  font-size: 0.9375rem;
}

.tag {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.15rem 0.55rem;
  border: 1px solid rgb(14 58 74 / 0.2);
  border-radius: 999px;
  background: rgb(14 58 74 / 0.06);
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 600;
}

/* The mechanic band */

.band {
  background: var(--dark-ground);
  color: var(--ink-300);
}

.band h2 {
  color: #fff;
}

.band .kicker {
  color: var(--orange);
}

.band-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .band-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.band-text {
  max-width: 34em;
  margin-top: 1.1rem;
  font-size: 1.125rem;
}

.band-text strong {
  color: #fff;
}

.example {
  padding: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.04);
}

.example-title {
  color: #fff;
  font-weight: 650;
}

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.person,
.legend {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.person {
  padding: 0.35rem 0.75rem;
}

.person-admin {
  border: 1px solid rgb(242 112 43 / 0.45);
  background: rgb(242 112 43 / 0.16);
  color: var(--orange);
}

.person-mechanic {
  border: 1px dashed rgb(255 255 255 / 0.25);
  background: rgb(255 255 255 / 0.05);
  color: var(--ink-300);
}

.example-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--ink-400);
}

.legend {
  gap: 0.45rem;
  font-weight: 500;
}

.legend::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: '';
}

.legend-admin::before {
  border: 1px solid rgb(242 112 43 / 0.6);
  background: rgb(242 112 43 / 0.3);
}

.legend-mechanic::before {
  border: 1px dashed rgb(255 255 255 / 0.4);
}

.example-total {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.example-total strong {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

/* Steps */

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  padding: 1.5rem;
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  background: #fff;
}

.step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
}

.step h3 {
  margin-top: 1rem;
  font-size: 1.0625rem;
}

.step p {
  margin-top: 0.4rem;
  color: var(--ink-600);
  font-size: 0.9375rem;
}

/* Plans */

.plans {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--ink-200);
  border-radius: 20px;
  background: #fff;
}

.plan-featured {
  border: 2px solid var(--petrol);
  box-shadow: 0 30px 60px -30px rgb(14 58 74 / 0.45);
}

.plan-badge {
  position: absolute;
  top: -0.8rem;
  left: 1.75rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: var(--petrol);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 650;
}

.plan h3 {
  font-size: 1.25rem;
}

.plan-desc {
  margin-top: 0.4rem;
  color: var(--ink-600);
  font-size: 0.9375rem;
}

@media (min-width: 900px) {
  .plan-desc {
    min-height: 3.2em;
  }
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-top: 1.25rem;
  color: var(--ink-900);
}

.price-currency {
  font-size: 1.125rem;
  font-weight: 600;
}

.price-value {
  font-size: 2.75rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-period {
  color: var(--ink-500);
  font-size: 0.9375rem;
}

.plan-seats {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: var(--ink-50);
  color: var(--ink-700);
  font-size: 0.9375rem;
}

.plan-seats strong {
  color: var(--ink-900);
}

.plan-list {
  display: grid;
  gap: 0.6rem;
  margin-block: 1.25rem 1.75rem;
  font-size: 0.9375rem;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.plan-list svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  color: var(--green-600);
}

.plan-list li.off {
  color: var(--ink-500);
}

.plan-list li.off svg {
  color: var(--ink-400);
}

.plan .btn {
  margin-top: auto;
}

.plans-note {
  max-width: 40em;
  margin: 2rem auto 0;
  color: var(--ink-600);
  font-size: 0.9375rem;
  text-align: center;
}

/* Questions */

.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin-inline: auto;
}

.faq details {
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  background: #fff;
}

.faq details[open] {
  border-color: var(--ink-300);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  color: var(--ink-900);
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  flex: none;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink-500);
  border-bottom: 2px solid var(--ink-500);
  content: '';
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: translateY(2px) rotate(-135deg);
}

.faq details p {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-600);
}

/* Closing call */

.final {
  background: var(--dark-ground);
  color: var(--ink-300);
  text-align: center;
}

.final h2 {
  margin-top: 0;
  color: #fff;
}

.final p {
  max-width: 38em;
  margin: 1rem auto 0;
  font-size: 1.125rem;
}

.final .cta-row {
  justify-content: center;
}

.final .login-hint {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}

.login-hint a {
  color: var(--orange);
  font-weight: 600;
}

/* Footer */

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  background: var(--dark-ground);
  color: var(--ink-400);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.footer-brand {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
}

.footer-brand .brand {
  gap: 0.5rem;
}

.footer-brand .brand-word {
  font-size: 1.1875rem;
}

.footer-tagline {
  color: var(--ink-400);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  /* The row gap is 0 because each link is a 44 px box of its own. */
  gap: 0 1.25rem;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-300);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

/* Not found */

.not-found {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding-inline: var(--gutter);
  background: var(--dark-ground);
  color: var(--ink-300);
  text-align: center;
}

.not-found h1 {
  margin-top: 1rem;
  color: #fff;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
}

.not-found p {
  margin-top: 0.75rem;
}

.not-found .cta-row {
  justify-content: center;
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
