:root {
  --bg: #050505;
  --panel: #0a0a0a;
  --line: rgba(255, 255, 255, 0.16);
  --soft: rgba(255, 255, 255, 0.68);
  --muted: rgba(255, 255, 255, 0.48);
  --white: #f6f6f3;
  --light-bg: #efefec;
  --light-ink: #101010;
  --light-mute: #5f5f5f;
  --light-line: #c8c8c3;
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 72px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.08));
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-nav.scrolled {
  height: 58px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.wordmark .logo {
  width: 40px;
  height: auto;
  flex: 0 0 auto;
}

.wordmark-text {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  white-space: nowrap;
}

.navlinks {
  display: flex;
  gap: 28px;
  margin: auto;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navlinks a {
  color: var(--soft);
  transition: color 0.2s ease;
}

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

.navcta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 11px 16px;
  transition: background 0.2s ease, color 0.2s ease;
}

.navcta:hover {
  background: #fff;
  color: #000;
}

.menu {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 58px 0 auto 0;
  z-index: 49;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
  padding: 20px 6vw 28px;
  flex-direction: column;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.mobile-nav.open {
  display: flex;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 130px 6vw 70px;
  background: #050505;
  overflow: hidden;
}

.hero-vault {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(62vw, 920px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: rise 0.9s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.brand-lockup {
  margin-bottom: 56px;
}

.brand-logo {
  width: clamp(110px, 16vw, 168px);
  height: auto;
  display: block;
}

.brand-lockup .name {
  font-size: 12px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 22px;
}

.kicker {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1,
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 18px 0;
  font-size: clamp(52px, 7vw, 102px);
}

.hero p.lead {
  max-width: 520px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.65;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 210px;
  padding: 15px 21px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn.light {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn.light:hover {
  background: var(--white);
}

.hero-stats {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 32px;
  display: flex;
  gap: 32px;
  animation: rise 1s 0.15s ease both;
}

.hero-stats div {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.hero-stats strong {
  display: block;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-display);
}

.hero-stats span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 120px 6vw;
  position: relative;
}

.light {
  background: var(--light-bg);
  color: var(--light-ink);
}

.light .kicker {
  color: #656565;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
}

.intro-grid p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--light-mute);
  max-width: 570px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 75px;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.metric {
  padding: 30px 28px 30px 0;
  border-right: 1px solid var(--light-line);
}

.metric + .metric {
  padding-left: 28px;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
}

.metric span {
  display: block;
  color: #656565;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 9px;
}

.image-section {
  min-height: 88vh;
  padding: 8vw 6vw;
  display: flex;
  align-items: center;
  background-color: #050505;
  background-image:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.9) 45%, rgba(5, 5, 5, 0.2) 75%),
    url("assets/venues.jpg");
  background-size: cover;
  background-position: center right;
  position: relative;
}

.image-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.image-content p {
  color: var(--soft);
  line-height: 1.7;
  font-size: 16px;
}

.image-content .btn {
  margin-top: 28px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.feature {
  padding: 28px 26px;
  min-height: 170px;
  border-right: 1px solid var(--line);
  transition: background 0.25s ease;
}

.feature:hover {
  background: #101010;
}

.feature:last-child {
  border-right: 0;
}

.feature .num {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.16em;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin: 38px 0 8px;
}

.feature p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.solution {
  background-color: #050505;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.75) 48%, #050505 78%),
    url("assets/solution.jpg");
  background-size: cover;
  background-position: center left;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 100px 6vw;
}

.solution-copy {
  width: min(540px, 100%);
}

.solution-copy ol {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}

.solution-copy li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.solution-copy li span {
  color: var(--muted);
  font-size: 11px;
}

.solution-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.solution-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.products {
  background: #050505;
  padding: 120px 6vw;
}

.products-head {
  max-width: 820px;
  margin-bottom: 55px;
}

.products-head .lede {
  color: var(--soft);
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #222;
  border: 1px solid #222;
}

.product {
  background: #090909;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.25s ease;
}

.product:hover {
  background: #111;
}

.product .icon {
  font-size: 34px;
  margin-bottom: auto;
  color: #ddd;
  font-family: var(--font-display);
  line-height: 1;
}

.product h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.product p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.product small {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.partner {
  background: #070707;
  padding: 120px 6vw;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  gap: 6vw;
  align-items: start;
  border-top: 1px solid var(--line);
}

.partner-copy .section-title {
  font-size: clamp(40px, 5vw, 72px);
  max-width: 11ch;
}

.partner-copy p {
  color: var(--soft);
  line-height: 1.7;
  max-width: 420px;
  font-size: 16px;
  margin: 0 0 40px;
}

form {
  background: #0c0c0c;
  border: 1px solid var(--line);
  padding: 36px 34px 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
textarea,
select {
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 0;
  outline: none;
  border-radius: 0;
}

input:focus,
textarea:focus,
select:focus {
  border-bottom-color: #fff;
}

select option {
  color: #111;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.submit {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: #fff;
  color: #000;
  border: 0;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.submit:hover {
  opacity: 0.88;
}

.form-status {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  min-height: 16px;
  margin: 12px 0 0;
}

.form-note {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
  margin-top: 10px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 360px;
}

.lock-logo {
  width: 48px;
  height: auto;
  opacity: 0.9;
  margin-top: 4px;
  flex: 0 0 auto;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.contact-info .role {
  color: var(--muted);
  margin: 4px 0 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info a {
  display: block;
  margin: 6px 0;
  color: var(--soft);
  font-size: 14px;
}

.contact-info a:hover {
  color: var(--white);
}

footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: var(--muted);
  gap: 16px;
}

footer .fbrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--font-display);
}

footer .fbrand .logo {
  width: 28px;
  height: auto;
}

@media (max-width: 900px) {
  .navlinks,
  .navcta {
    display: none;
  }

  .menu {
    display: block;
  }

  .hero-stats {
    display: none;
  }

  .intro-grid,
  .partner {
    grid-template-columns: 1fr;
  }

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

  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .site-nav {
    padding: 0 20px;
  }

  .hero {
    padding: 110px 22px 55px;
    background-position: 62% center;
  }

  .brand-lockup {
    margin-bottom: 72px;
  }

  .brand-lockup .name {
    font-size: 8px;
    letter-spacing: 0.3em;
  }

  .hero-vault {
    width: 78vw;
    opacity: 0.55;
  }

  .wordmark-text {
    display: none;
  }

  .hero h1,
  .section-title {
    font-size: 46px;
  }

  .section,
  .products {
    padding: 85px 22px;
  }

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

  .metric,
  .metric + .metric {
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
    padding: 24px 0;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution {
    padding: 85px 22px;
    background-position: 32% center;
  }

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

  .partner {
    padding: 85px 22px;
  }

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

  .full {
    grid-column: auto;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
