@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --red: #c41e1e;
  --red-dark: #a81717;
  --ink: #1a1a1a;
  --dark: #1a1a1a;
  --darker: #0d0d0d;
  --light: #f5f5f3;
  --grey: #e8e8e6;
  --white: #fff;
  --muted-dark: #626262;
  --muted-light: #9a9a9a;
  --border-dark: #ffffff1f;
  --border-light: #0000001a;
  --sans: "Inter", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --shadow: 0 10px 35px #00000014;
}
*,
:before,
:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  background: var(--darker);
  color: #f2f2f2;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  line-height: 1.65;
}
body,
input,
textarea,
select,
button {
  font-size: 1rem;
}
img,
svg {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-style: normal;
  font-synthesis: weight;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}
h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.7rem);
}
h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  width: min(100% - 2rem, 74rem);
  margin-inline: auto;
}
.container--narrow {
  width: min(100% - 2rem, 56rem);
}
.container--form {
  width: min(100% - 2rem, 50rem);
}
.section {
  padding-block: clamp(5rem, 10vw, 8rem);
}
.section--light,
.section--email,
.section--privacy {
  background: var(--light);
  color: var(--ink);
}
.section--grey {
  background: var(--grey);
  color: var(--ink);
}
.section--dark {
  background: var(--dark);
  color: #f5f5f3;
}
.section--darker {
  background: var(--darker);
  color: #f5f5f3;
}
.section-heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}
.section-heading--center {
  text-align: center;
  margin-inline: auto;
}
.section-heading p,
.section-intro {
  color: var(--muted-dark);
}
.section--dark .section-heading p,
.section--darker .section-heading p {
  color: var(--muted-light);
}
.section-heading p {
  max-width: 44rem;
  margin: 1.25rem auto 0;
}
.section-intro {
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.centered-action {
  text-align: center;
  margin-top: 3rem;
}
.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.skip-link {
  z-index: 100;
  color: #000;
  background: #fff;
  padding: 0.7rem 1rem;
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  z-index: 50;
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(12px);
  background: #141414f0;
  position: sticky;
  top: 0;
}
.site-header__inner {
  justify-content: space-between;
  align-items: center;
  min-height: 4.25rem;
  display: flex;
}
.brand {
  align-items: center;
  gap: 0.75rem;
  display: inline-flex;
}
.brand img {
  object-fit: contain;
  width: 2.4rem;
  height: 2.4rem;
}
.brand__type {
  flex-direction: column;
  line-height: 1;
  display: flex;
}
.brand__type strong {
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}
.brand__type small {
  color: var(--muted-light);
  letter-spacing: 0.14em;
  margin-top: 0.38rem;
  font-size: 0.57rem;
}
.desktop-nav {
  align-items: center;
  gap: 1.5rem;
  display: none;
}
.desktop-nav > a:not(.button) {
  color: #aaa;
  font-size: 0.8rem;
  font-weight: 600;
}
.desktop-nav > a:not(.button):hover,
.desktop-nav > a:not(.button):focus-visible {
  color: #fff;
}
.menu-toggle {
  border: 1px solid var(--border-dark);
  color: #fff;
  cursor: pointer;
  background: 0 0;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
}
.menu-toggle svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8px;
  width: 1.35rem;
}
.mobile-nav {
  border-top: 1px solid var(--border-dark);
  background: var(--darker);
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav .container {
  padding-block: 1rem 1.25rem;
  display: grid;
}
.mobile-nav a:not(.button) {
  color: #bbb;
  padding: 0.7rem 0;
}
.mobile-nav .button {
  margin-top: 0.5rem;
}
.button {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background 0.16s,
    border-color 0.16s,
    transform 0.16s;
  display: inline-flex;
}
.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.button:active {
  transform: translateY(1px);
}
.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #ee6262;
}
.button--small {
  min-height: 2.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
}
.button--outline {
  color: var(--ink);
  background: 0 0;
  border-color: #00000040;
}
.button--outline:hover {
  border-color: var(--ink);
  background: #0000000d;
}
.button--dark {
  border-color: var(--border-dark);
  color: #fff;
}
.button--dark:hover {
  background: #ffffff0f;
  border-color: #ffffff59;
}
.button--wide {
  width: 100%;
}
.section--hero {
  background: var(--darker);
  align-items: center;
  min-height: min(52rem, 100svh - 4.25rem);
  display: grid;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  pointer-events: none;
  background: radial-gradient(circle, #c41e1e14, #0000 65%);
  border-radius: 50%;
  width: 42rem;
  height: 42rem;
  position: absolute;
  top: -12rem;
  right: -16rem;
}
.hero-copy {
  max-width: 47rem;
  position: relative;
}
.eyebrow {
  border: 1px solid var(--border-dark);
  color: #989898;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
}
.eyebrow span {
  background: var(--red);
  border-radius: 50%;
  width: 0.35rem;
  height: 0.35rem;
}
.eyebrow--plain {
  color: var(--red);
  border: 0;
  padding: 0;
}
.section--hero h1 {
  font-style: normal;
  margin-bottom: 1.4rem;
}
.hero-lead {
  color: #bebebe;
  max-width: 43rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35;
}
.hero-description {
  color: #898989;
  max-width: 43rem;
  margin: 1.6rem 0 2.2rem;
}
.button-row {
  flex-wrap: wrap;
  gap: 0.75rem;
  display: flex;
}
.hero-note {
  border-top: 1px solid var(--border-dark);
  color: #7d7d7d;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 44rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.76rem;
  display: flex;
}
.hero-note p {
  margin: 0;
}
.hero-note a:hover {
  color: #fff;
}
.stack-list {
  gap: 0.65rem;
  display: grid;
}
.stack-list li {
  border: 1px solid var(--border-light);
  background: #fff;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  font-size: 0.93rem;
  font-weight: 500;
  display: flex;
  box-shadow: 0 3px 8px #00000008;
}
.icon {
  width: 1.45rem;
  height: 1.45rem;
  font-family: var(--sans);
  border: 1px solid;
  border-radius: 50%;
  flex: none;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
}
.icon--check {
  color: var(--red);
}
.icon--x {
  color: #666;
}
.feature-grid {
  gap: 0.8rem;
  max-width: 62rem;
  margin-inline: auto;
  display: grid;
}
.feature-grid p {
  border: 1px solid var(--border-dark);
  color: silver;
  background: #ffffff06;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 1rem;
  font-size: 0.92rem;
  display: flex;
}
.clarity-intro {
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  display: grid;
}
.clarity-intro p {
  color: var(--muted-dark);
}
.clarity-intro figure {
  aspect-ratio: 16/10;
  background: #222;
  border: 1px solid #0000001f;
  margin: 0;
  overflow: hidden;
}
.clarity-intro img {
  object-fit: cover;
  object-position: 50% 35%;
  width: 100%;
  height: 100%;
}
.clarity-grid {
  background: #0000001a;
  border: 1px solid #0000001a;
  gap: 1px;
  display: grid;
}
.clarity-grid article {
  background: var(--grey);
  padding: 2rem;
}
.clarity-grid article > span {
  color: var(--red);
  margin-bottom: 1.4rem;
  font-weight: 700;
  display: block;
}
.clarity-grid h3 {
  margin-bottom: 0.8rem;
}
.clarity-grid p {
  color: var(--muted-dark);
  margin: 0;
  font-size: 0.92rem;
}
.fit-grid {
  gap: 1rem;
  display: grid;
}
.fit-card {
  border: 1px solid var(--border-dark);
  background: #151515;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.fit-card h3 {
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.7rem;
  display: flex;
}
.fit-card ul {
  gap: 0.85rem;
  display: grid;
}
.fit-card li {
  color: #aaa;
  gap: 0.8rem;
  font-size: 0.9rem;
  display: flex;
}
.fit-card li span {
  color: var(--red);
  font-weight: 700;
}
.fit-card--not li span {
  color: #666;
}
.process-grid {
  counter-reset: step;
  gap: 1rem;
  display: grid;
}
.process-grid li {
  border: 1px solid var(--border-light);
  background: #fff;
  padding: 1.7rem;
  box-shadow: 0 5px 18px #0000000a;
}
.process-grid li > span {
  background: var(--red);
  color: #fff;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.4rem;
  font-weight: 700;
  display: grid;
}
.process-grid h3 {
  margin-bottom: 0.7rem;
}
.process-grid p {
  color: var(--muted-dark);
  margin: 0;
  font-size: 0.9rem;
}
.guardrails-grid {
  align-items: start;
  gap: 3rem;
  display: grid;
}
.guardrails-grid > div p {
  color: var(--muted-light);
}
.guardrail-list {
  gap: 0.6rem;
  display: grid;
}
.guardrail-list li {
  border-left: 2px solid var(--red);
  color: #bbb;
  background: #ffffff09;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  display: flex;
}
.guardrail-list span {
  color: var(--red);
  font-weight: 700;
}
.pricing-card {
  border: 1px solid var(--border-light);
  max-width: 60rem;
  box-shadow: var(--shadow);
  background: #fff;
  margin-inline: auto;
}
.pricing-card__top {
  border-bottom: 1px solid var(--border-light);
  gap: 2rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  display: grid;
}
.pricing-card__top h3 {
  margin: 0;
}
.price {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
.price span,
.price small {
  color: var(--muted-dark);
  font-size: 0.78rem;
}
.price strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1;
}
.pricing-card__body {
  gap: 2.5rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  display: grid;
}
.pricing-card__body h4 {
  margin-bottom: 1.2rem;
}
.pricing-card__body ul {
  gap: 0.6rem;
  display: grid;
}
.pricing-card__body li {
  gap: 0.7rem;
  font-size: 0.9rem;
  display: flex;
}
.pricing-card__body li span {
  color: var(--red);
  font-weight: 700;
}
.handover {
  background: var(--light);
  border-left: 3px solid var(--red);
  padding: 1.5rem;
}
.handover span,
.handover strong {
  display: block;
}
.handover span {
  color: var(--muted-dark);
  font-size: 0.8rem;
}
.handover strong {
  font-family: var(--serif);
  margin-top: 0.35rem;
  font-size: 1.8rem;
}
.pricing-notes {
  border: 1px solid var(--border-light);
  background: var(--light);
  margin-inline: clamp(1.6rem, 5vw, 3rem);
  padding: 1.5rem;
}
.pricing-notes p {
  color: var(--muted-dark);
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
}
.pricing-notes p:last-child {
  margin-bottom: 0;
}
.pricing-card > .centered-action {
  margin: 0;
  padding: 2rem;
}
.whatsapp-grid {
  align-items: start;
  gap: 2.5rem;
  display: grid;
}
.whatsapp-grid > div p {
  color: var(--muted-light);
}
.whatsapp-grid aside {
  border: 1px solid var(--border-dark);
  background: #151515;
  padding: 2rem;
}
.whatsapp-grid aside > p {
  color: var(--muted-light);
}
.whatsapp-grid ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  display: grid;
}
.whatsapp-grid li {
  color: #bbb;
  gap: 0.5rem;
  font-size: 0.82rem;
  display: flex;
}
.whatsapp-grid li span {
  color: var(--red);
}
.whatsapp-note {
  border-top: 1px solid var(--border-dark);
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  font-size: 0.75rem;
}
.application-form {
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  background: #fff;
  gap: 1.5rem;
  padding: clamp(1.3rem, 4vw, 2.5rem);
  display: grid;
}
.honeypot {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -10000px;
  overflow: hidden;
}
.form-grid {
  gap: 1.5rem;
  display: grid;
}
.field {
  gap: 0.5rem;
  display: grid;
}
.field label {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
}
.field input,
.field textarea,
.field select {
  background: var(--light);
  width: 100%;
  min-height: 3rem;
  color: var(--ink);
  border: 1px solid #00000029;
  border-radius: 0;
  padding: 0.75rem 0.85rem;
}
.field textarea {
  resize: vertical;
  min-height: 6rem;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #777;
  opacity: 1;
}
.field [aria-invalid="true"] {
  border-color: var(--red);
}
.field-error {
  color: #a91414;
  min-height: 1em;
  font-size: 0.72rem;
}
.form-qualifiers {
  border-top: 1px solid var(--border-light);
  gap: 1.5rem;
  padding-top: 1.5rem;
  display: grid;
}
.form-status {
  border: 1px solid;
  padding: 1rem;
  font-size: 0.88rem;
}
.form-status--success {
  color: #285d28;
  background: #f1faf1;
  border-color: #72ad72;
}
.form-status--error {
  color: #8e1717;
  background: #fff0f0;
  border-color: #e19b9b;
}
.form-status a {
  font-weight: 700;
  text-decoration: underline;
}
.form-fallback {
  color: var(--muted-dark);
  text-align: center;
  margin: 0;
  font-size: 0.76rem;
}
.form-fallback a {
  font-weight: 700;
  text-decoration: underline;
}
.section--email {
  text-align: center;
  background: #fff;
  padding-block: 4rem;
}
.section--email h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.section--email p {
  color: var(--muted-dark);
}
.faq-list {
  border-top: 1px solid var(--border-light);
  margin-top: 2.5rem;
}
.faq-list details {
  border-bottom: 1px solid var(--border-light);
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--serif);
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
  display: flex;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--red);
  font-family: var(--sans);
  flex: none;
  font-size: 1.4rem;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  color: var(--muted-dark);
  margin: 0;
  padding: 0 2rem 1.4rem 0;
}
.section--privacy {
  padding-block: 4rem;
}
.section--privacy h2 {
  font-size: 1.6rem;
}
.section--privacy p {
  color: var(--muted-dark);
  margin: 0;
  font-size: 0.84rem;
}
.site-footer {
  border-top: 1px solid var(--border-dark);
  background: var(--darker);
  color: #f2f2f2;
  padding: 5rem 0 2rem;
}
.site-footer__grid {
  gap: 3rem;
  display: grid;
}
.site-footer .brand {
  margin-bottom: 1.4rem;
}
.site-footer p,
.site-footer__grid > div > a {
  color: #797979;
  margin: 0.25rem 0;
  font-size: 0.72rem;
}
.site-footer__grid nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0.8rem 2rem;
  display: grid;
}
.site-footer__grid nav a {
  color: #999;
  font-size: 0.78rem;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer__bottom {
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
}
.site-footer__bottom p {
  margin: 0;
}
@media (width>=40rem) {
  .container {
    width: min(100% - 3rem, 74rem);
  }
  .container--narrow {
    width: min(100% - 3rem, 56rem);
  }
  .container--form {
    width: min(100% - 3rem, 50rem);
  }
  .hero-note {
    flex-direction: row;
    justify-content: space-between;
  }
  .feature-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .clarity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-card__top,
  .pricing-card__body {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
  .price {
    text-align: right;
    align-items: flex-end;
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width>=48rem) {
  .desktop-nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guardrails-grid,
  .whatsapp-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .clarity-intro {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .clarity-intro figure {
    aspect-ratio: 1;
  }
  .process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .process-grid li {
    min-height: 19rem;
    padding: 1.4rem;
  }
  .site-footer__grid nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  :before,
  :after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.error-page {
  display: grid;
  min-height: 65vh;
  place-items: center;
}

.error-page h1 {
  margin-bottom: 1rem;
}

.error-page p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: #999;
}
