:root {
  --ft-white: #f2f2f3;
  --ft-grey: #c5cfda;
  --ft-dark-grey: #272b3a;
  --ft-black: #1c1f2a;
  --ft-red: #ba0c2f;
  --ft-red-hover: #5b172c;
}

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

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--ft-black);
  color: var(--ft-white);
}

html {
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}

body {
  font-family: Rajdhani, Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 4rem;
  background: var(--ft-black);
  border-bottom: 1px solid rgba(242, 242, 243, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  height: 2rem;
  width: 9rem;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 100%;
  width: auto;
}

.nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 3rem;
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 1rem;
}

.nav a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 0.8;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  flex-shrink: 0;
  min-width: 8.5rem;
  padding: 0 1.25rem;
  background: var(--ft-red);
  color: var(--ft-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.header-cta:hover {
  background: var(--ft-red-hover);
}

.mobile-nav {
  display: flex;
  gap: 1.25rem;
  margin-right: 1.25rem;
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
}

.mobile-nav a {
  text-decoration: none;
}

main {
  flex: 1;
  width: min(100% - 3rem, 48rem);
  margin: 0 auto;
  padding: 5rem 0 3rem;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--ft-grey);
}

h1 {
  margin: 1rem 0 1.5rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

p,
li {
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.lede {
  margin: 0 0 3rem;
  color: var(--ft-grey);
}

section {
  margin-bottom: 3rem;
}

#help,
#attributions {
  scroll-margin-top: 5.5rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 1rem;
}

.strong {
  font-weight: 600;
  color: var(--ft-white);
}

a.inline {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease;
}

a.inline:hover {
  color: var(--ft-white);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
  color: var(--ft-grey);
}

.table-wrap {
  overflow-x: auto;
  margin: 0 -0.25rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
}

th,
td {
  text-align: left;
  vertical-align: top;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(197, 207, 218, 0.18);
}

th {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-grey);
  font-size: 0.75rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.card {
  display: block;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(197, 207, 218, 0.18);
  background: var(--ft-dark-grey);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--ft-red);
  transform: translateY(-2px);
}

.card h2 {
  margin: 0.35rem 0 0.75rem;
}

.card p {
  margin: 0;
  color: var(--ft-grey);
}

.meta {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--ft-grey);
}

.products {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.panel {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(197, 207, 218, 0.18);
  background: var(--ft-dark-grey);
}

.panel h2 {
  margin: 0.35rem 0 0.75rem;
}

.panel p,
.panel li {
  color: var(--ft-grey);
}

.panel p {
  margin: 0;
}

.panel ul {
  margin-top: 1rem;
}

.disclose {
  border: 1px solid rgba(197, 207, 218, 0.18);
  background: var(--ft-dark-grey);
  margin-bottom: 0.5rem;
}

.disclose + .disclose {
  margin-top: 0;
}

.disclose summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  list-style: none;
}

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

.disclose summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--ft-red);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

.disclose[open] summary::after {
  content: "–";
}

.disclose-body {
  padding: 0 1.25rem 1.2rem;
}

.disclose-body p {
  margin: 0 0 0.9rem;
  color: var(--ft-grey);
  font-size: 1rem;
  line-height: 1.7;
}

.disclose-body p:last-child {
  margin-bottom: 0;
}

.footer {
  margin-top: auto;
}

.footer-top {
  padding: 2rem 1.5rem 2.5rem;
  border-top: 1px solid var(--ft-dark-grey);
}

.footer-top-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.footer-top h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.12em;
}

.footer-top p {
  max-width: 36rem;
  margin: 1.5rem 0 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--ft-dark-grey);
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.footer-contact a {
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 2rem;
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--ft-grey);
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  text-decoration: none;
}

.footer-legal a:hover {
  opacity: 0.7;
}

.hs-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  font-family: Inter, sans-serif;
  font-weight: 300;
}

.hs-form label,
.hs-form legend {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form textarea {
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem;
  border: 0;
  border-radius: 0.25rem;
  background: var(--ft-dark-grey);
  color: var(--ft-white);
  font: inherit;
}

.hs-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.hs-form input::placeholder,
.hs-form textarea::placeholder {
  color: var(--ft-grey);
}

.hs-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.hs-checks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hs-form .hs-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.hs-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--ft-red);
}

.hs-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.hs-form button[type="submit"] {
  cursor: pointer;
  align-self: flex-start;
  min-width: 11rem;
  min-height: 2.75rem;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 1.5rem;
  background: var(--ft-red);
  color: var(--ft-white);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.hs-form button[type="submit"]:hover {
  background: var(--ft-red-hover);
}

.hs-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: wait;
}

.hs-status {
  margin: 0;
  font-size: 0.95rem;
}

.hs-status-ok {
  color: #9ad7b3;
}

.hs-status-error {
  color: #f0a3b3;
}

.hs-fallback {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ft-grey);
}

@media (min-width: 768px) {
  .header-inner {
    padding-left: 3rem;
  }

  .logo {
    width: 12rem;
    height: 2rem;
  }

  .nav {
    display: flex;
    gap: 2rem;
  }

  .mobile-nav {
    display: none;
  }

  .header-cta {
    min-width: 15rem;
  }

  main {
    width: min(100% - 6rem, 56rem);
    padding-top: 6rem;
  }

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

  .footer-contact {
    flex-direction: row;
    justify-content: space-around;
    padding: 2rem 4rem;
  }

  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8rem 2rem;
  }

  .footer-top {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
