

:root {
  --sb-sulphur: #d8ff3e;
  --sb-noise: 0.03;
  --sb-hazard: block;

  --sb-bg: #0b0c0d;
  --sb-bg-elevated: #131517;
  --sb-bg-panel: #1d2023;
  --sb-bg-hover: #232629;
  --sb-border: #2e3336;
  --sb-text: #f1f2f1;
  --sb-text-muted: #83888b;
  --sb-text-dim: #6b6f71;
  --sb-text-faint: #4a4e50;
  --sb-danger: #b94a3b;
  --sb-ink: #131517;

  --sb-font: "Instrument Sans", sans-serif;
  --sb-border-w: 1.5px;
  --sb-header-h: 68px;
  --sb-pad-x: clamp(16px, 4vw, 40px);
  --sb-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  background: var(--sb-bg);
  color: var(--sb-text);
  font-family: var(--sb-font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
span,
a,
button,
label,
select,
summary,
input {
  font-family: var(--sb-font);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h2 {
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--sb-sulphur);
  color: var(--sb-ink);
}

a {
  color: var(--sb-text);
  text-decoration: none;
}

a:hover {
  color: var(--sb-sulphur);
}

:focus-visible {
  outline: 2px solid var(--sb-sulphur);
  outline-offset: 2px;
}

option {
  background: var(--sb-ink);
  color: var(--sb-text);
}

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

.sb-display-lg,
.sb-display-md,
.sb-stat-figure {
  font-weight: 700;
  paint-order: stroke fill;
}

.sb-display-lg,
.sb-stat-figure {
  -webkit-text-stroke: 1.25px currentColor;
}

.sb-display-md {
  -webkit-text-stroke: 1px currentColor;
}

@media (min-width: 600px) {
  .sb-display-md {
    -webkit-text-stroke: 1.25px currentColor;
  }
}

@media (min-width: 900px) {
  .sb-section-title {
    -webkit-text-stroke: 1.25px currentColor;
  }
}

.sb-section-title {
  font-weight: 700;
  paint-order: stroke fill;
  -webkit-text-stroke: 1px currentColor;
  font-size: clamp(32px, 5.4vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-transform: uppercase;
}

.sb-section-title--sm {
  font-size: clamp(32px, 5.2vw, 72px);
}

.sb-lede {
  color: var(--sb-text-muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 46ch;
  text-wrap: pretty;
}

.sb-page {
  position: relative;
  background: var(--sb-bg);
  color: var(--sb-text);
}

.sb-section {
  scroll-margin-top: var(--sb-header-h);
}

.sb-section-pad {
  padding-left: var(--sb-pad-x);
  padding-right: var(--sb-pad-x);
}

.sb-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: last baseline;
  padding: clamp(56px, 9vh, 104px) var(--sb-pad-x) 56px;
}

.sb-hairline-t {
  border-top: var(--sb-border-w) solid var(--sb-border);
}

.sb-hairline-b {
  border-bottom: var(--sb-border-w) solid var(--sb-border);
}

.sb-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--sb-text);
  width: max-content;
  flex: 0 0 auto;
  cursor: default;
}

.sb-logo__hex {
  display: block;
  flex: 0 0 auto;
  transition: transform 320ms var(--sb-ease);
}

.sb-logo:hover .sb-logo__hex {
  transform: rotate(30deg);
}

.sb-logo__word {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--sb-text);
  white-space: nowrap;
  text-transform: lowercase;
}

.sb-logo__i {
  position: relative;
  display: inline-block;
}

.sb-logo__dot {
  position: absolute;
  left: 50%;
  top: 0.08em;
  transform: translateX(-50%);
  width: 0.14em;
  height: 0.14em;
  background: var(--sb-sulphur);
  pointer-events: none;
}

.sb-site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--sb-header-h);
  background: var(--sb-bg-elevated);
  border-bottom: var(--sb-border-w) solid var(--sb-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--sb-pad-x);
}

.sb-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sb-nav__link {
  display: inline-block;
  padding: 6px 9px;
  border-radius: 0;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sb-text-muted);
  white-space: nowrap;
}

.sb-nav__link:hover,
.sb-nav__link:focus-visible {
  background: var(--sb-sulphur);
  color: var(--sb-ink);
  outline: none;
}

.sb-nav__cta {
  margin-left: 6px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 18px;
  border: var(--sb-border-w) solid var(--sb-sulphur);
  border-radius: 0;
  background: var(--sb-sulphur);
  color: var(--sb-ink);
  white-space: nowrap;
}

.sb-nav__cta:hover {
  background: transparent;
  color: var(--sb-sulphur);
  border-color: var(--sb-sulphur);
}

.sb-btn {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 26px;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  cursor: pointer;
  font-family: var(--sb-font);
}

.sb-btn--primary {
  border: var(--sb-border-w) solid var(--sb-sulphur);
  background: var(--sb-sulphur);
  color: var(--sb-ink);
}

.sb-btn--primary:hover {
  background: transparent;
  color: var(--sb-sulphur);
  border-color: var(--sb-sulphur);
}

.sb-btn--ghost {
  border: var(--sb-border-w) solid var(--sb-border);
  background: transparent;
  color: var(--sb-text);
}

.sb-btn--ghost:hover {
  border-color: var(--sb-sulphur);
  color: var(--sb-sulphur);
  background: transparent;
}

.sb-btn--block {
  width: 100%;
  height: 56px;
  justify-content: center;
  margin-top: 32px;
  font-weight: 500;
}

.sb-hero {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 148px 0 120px var(--sb-pad-x);
}

.sb-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
  width: 100%;
}

.sb-hero__copy {
  min-width: 0;
  align-self: start;
  padding-top: 88px;
}

.sb-hero__title {
  font-size: clamp(52px, 8.5vw, 128px);
  max-width: 100%;
  line-height: 0.92;
  letter-spacing: -0.015em;
  font-weight: 800;
  text-shadow: none;
  padding-bottom: 0.08em;
}

.sb-hero__line {
  display: block;
  margin: 0;
  font-size: 75px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1.25px currentColor;
  paint-order: stroke fill;
  animation: heroTextIn 640ms var(--sb-ease) both;
}

.sb-hero__line:nth-child(1) {
  animation-delay: 0ms;
}

.sb-hero__line:nth-child(2) {
  animation-delay: 90ms;
}

.sb-hero__line:nth-child(3) {
  animation-delay: 270ms;
}

.sb-hero__spark {
  color: var(--sb-sulphur);
  font-size: 75px;
  animation: sparkIgnite 400ms var(--sb-ease) 640ms both;
}

.sb-hero__lede {
  opacity: 1;
  animation: heroTextIn 640ms var(--sb-ease) 420ms both;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--sb-text-muted);
  max-width: 52ch;
  text-wrap: pretty;
}

.sb-hero__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 36px;
}

.sb-hero__actions .sb-btn--primary {
  animation: heroBtnIn 640ms var(--sb-ease) 540ms both;
}

.sb-hero__actions .sb-btn--ghost {
  animation: heroBtnIn 640ms var(--sb-ease) 610ms both;
}

.sb-hero__visual {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sb-hero__slide {
  animation: heroSlideIn 1100ms var(--sb-ease) 200ms both;
}

.sb-hero__hover {
  transition: transform 500ms var(--sb-ease);
}

.sb-hero__slide:hover .sb-hero__hover {
  transform: scale(1.04);
}

.sb-hero__img {
  max-width: 100%;
  height: 641px;
  display: block;
  object-fit: cover;
  width: 768px;
  aspect-ratio: 2400 / 1792;
  animation: heroFloat 7s ease-in-out 1300ms infinite;
}

.sb-hero__slide:hover .sb-hero__img {
  animation-play-state: paused;
}

.sb-noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  opacity: var(--sb-noise);
  width: 100%;
  height: 100%;
}

.sb-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-top: var(--sb-border-w) solid var(--sb-border);
  border-bottom: var(--sb-border-w) solid var(--sb-border);
  box-shadow: 0 var(--sb-border-w) 0 0 var(--sb-border);
}

.sb-tier {
  min-height: 230px;
  padding: 36px;
  background: var(--sb-bg);
  border-right: var(--sb-border-w) solid var(--sb-border);
  border-bottom: var(--sb-border-w) solid var(--sb-border);
}

.sb-tier:nth-child(3n) {
  border-right: 0;
}

.sb-tier:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.sb-tier:hover {
  background: var(--sb-sulphur);
}

.sb-tier:hover .sb-tier__title,
.sb-tier:hover .sb-tier__desc {
  color: var(--sb-ink);
}

.sb-tier:hover .sb-tier__bar {
  background: var(--sb-ink);
}

.sb-tier__bar {
  width: 44px;
  height: 3px;
  background: var(--sb-sulphur);
}

.sb-tier__title {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sb-text);
}

.sb-tier__desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--sb-text-muted);
}

.sb-tier-cta {
  display: block;
  min-height: 230px;
  padding: 36px;
  background: var(--sb-bg-panel);
  outline: var(--sb-border-w) solid var(--sb-sulphur);
  outline-offset: -1.5px;
  text-decoration: none;
  border-right: var(--sb-border-w) solid var(--sb-border);
  border-bottom: var(--sb-border-w) solid var(--sb-border);
}

.sb-tier-cta:nth-child(3n) {
  border-right: 0;
}

.sb-tier-cta:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.sb-tier-cta:hover {
  background: var(--sb-sulphur);
}

.sb-tier-cta:hover .sb-tier-cta__title,
.sb-tier-cta:hover .sb-tier-cta__sub {
  color: var(--sb-ink);
}

.sb-tier-cta:hover .sb-tier__bar {
  background: var(--sb-ink);
}

.sb-tier-cta__title {
  display: block;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sb-sulphur);
}

.sb-tier-cta__sub {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--sb-text-muted);
}

.sb-vision {
  position: relative;
  overflow: hidden;
  background: var(--sb-sulphur);
  color: var(--sb-ink);
  border-top: var(--sb-border-w) solid var(--sb-border);
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(48px, 8vh, 88px) 0 80px;
}

.sb-vision__title {
  font-size: clamp(44px, 8vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--sb-ink);
  -webkit-text-stroke: 1px currentColor;
  paint-order: stroke fill;
}

@media (min-width: 600px) {
  .sb-vision__title {
    -webkit-text-stroke: 1.25px currentColor;
  }
}

.sb-vision__title span {
  display: block;
}

.sb-vision__body {
  padding: clamp(40px, 7vh, 80px) var(--sb-pad-x) 0;
}

.sb-vision__text {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  max-width: 68ch;
  color: var(--sb-ink);
  text-wrap: pretty;
}

.sb-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-top: var(--sb-border-w) solid var(--sb-border);
  border-bottom: var(--sb-border-w) solid var(--sb-border);
}

.sb-feature-cell {
  position: relative;
  background: var(--sb-bg-panel);
  min-height: 300px;
  padding: 40px;
  display: grid;
  grid-template-rows: 100px auto 1fr;
  justify-items: start;
  border-right: var(--sb-border-w) solid var(--sb-border);
  border-bottom: var(--sb-border-w) solid var(--sb-border);
}

.sb-feature-cell:nth-child(3n) {
  border-right: 0;
}

.sb-feature-cell:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.sb-feature-cell:hover {
  outline: var(--sb-border-w) solid var(--sb-sulphur);
  outline-offset: -1.5px;
  z-index: 1;
}

.sb-feature-cell:hover .sb-feature-cell__icon rect,
.sb-feature-cell:hover .sb-feature-cell__icon circle {
  fill: var(--sb-sulphur);
}

.sb-feature-cell__icon {
  display: block;
  flex: 0 0 auto;
  width: 62px;
  height: 61px;
}

.sb-feature-cell:nth-child(2) .sb-feature-cell__icon {
  width: 67px;
  height: 65px;
}

.sb-feature-cell:nth-child(3) .sb-feature-cell__icon {
  width: 72px;
  height: 67px;
}

.sb-feature-cell:nth-child(4) .sb-feature-cell__icon {
  width: 67px;
  height: 63px;
}

.sb-feature-cell:nth-child(5) .sb-feature-cell__icon {
  width: 73px;
  height: 60px;
}

.sb-feature-cell:nth-child(6) .sb-feature-cell__icon {
  width: 70px;
  height: 61px;
}

.sb-feature-cell__title {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sb-text);
}

.sb-feature-cell__desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--sb-text-muted);
  max-width: 38ch;
}

.sb-wideband {
  margin: 0;
  border-bottom: var(--sb-border-w) solid var(--sb-border);
}

.sb-wideband__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sb-cmp-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: last baseline;
  justify-content: space-between;
  padding: clamp(56px, 9vh, 104px) var(--sb-pad-x) 56px;
}

.sb-cmp-intro__title-wrap {
  flex: 1 1 420px;
}

.sb-cmp-intro__lede {
  flex: 0 1 400px;
  color: var(--sb-text-muted);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.sb-cmp {
  border-bottom: var(--sb-border-w) solid var(--sb-border);
}

.sb-cmp__head {
  display: grid;
  grid-template-columns: 22% 39% 39%;
}

.sb-cmp__head-spacer {
  height: 56px;
  border-right: var(--sb-border-w) solid var(--sb-border);
}

.sb-cmp__head-col {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 28px;
}

.sb-cmp__head-col--hot {
  border-top: 3px solid var(--sb-danger);
  border-right: var(--sb-border-w) solid var(--sb-border);
}

.sb-cmp__head-col--cold {
  border-top: 3px solid var(--sb-sulphur);
}

.sb-cmp__head-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.sb-cmp__head-col--hot .sb-cmp__head-label {
  color: var(--sb-danger);
}

.sb-cmp__head-col--cold .sb-cmp__head-label {
  color: var(--sb-sulphur);
}

.sb-cmp__row {
  display: grid;
  grid-template-columns: 22% 39% 39%;
  border-top: var(--sb-border-w) solid var(--sb-border);
}

.sb-cmp__row:hover > * {
  background: var(--sb-bg-hover);
}

.sb-cmp__crit {
  height: 96px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  border-right: var(--sb-border-w) solid var(--sb-border);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--sb-text);
}

.sb-cmp__cell {
  height: 96px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
}

.sb-cmp__cell--hot {
  background: var(--sb-bg-elevated);
  border-right: var(--sb-border-w) solid var(--sb-border);
}

.sb-cmp__cell--cold {
  background: var(--sb-bg-panel);
}

.sb-cmp__mark {
  flex: 0 0 24px;
  font-size: 15px;
  line-height: 1;
}

.sb-cmp__mark--bad {
  color: var(--sb-danger);
}

.sb-cmp__mark--good {
  color: var(--sb-sulphur);
}

.sb-cmp__text {
  font-size: 16px;
  line-height: 1.4;
}

.sb-cmp__cell--hot .sb-cmp__text {
  color: var(--sb-text-muted);
}

.sb-cmp__cell--cold .sb-cmp__text {
  color: var(--sb-text);
}

.sb-hazard-strip {
  display: var(--sb-hazard);
  height: 8px;
  background: repeating-linear-gradient(
    45deg,
    var(--sb-sulphur) 0 10px,
    var(--sb-ink) 10px 20px
  );
}

.sb-statement {
  overflow: hidden;
}

.sb-statement__inner {
  padding: clamp(56px, 9vh, 110px) var(--sb-pad-x);
}

.sb-stat-figure {
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--sb-sulphur);
  margin-left: calc(-1 * var(--sb-pad-x) - 0.06em);
  white-space: nowrap;
}

.sb-statement__body {
  font-size: 20px;
  line-height: 1.45;
  max-width: 44ch;
  margin-top: clamp(28px, 4vh, 44px);
  text-wrap: pretty;
}

.sb-privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-top: var(--sb-border-w) solid var(--sb-border);
}

.sb-privacy-card {
  min-height: 240px;
  padding: 40px;
  display: grid;
  grid-template-rows: 72px auto 1fr;
  justify-items: start;
  border-right: var(--sb-border-w) solid var(--sb-border);
}

.sb-privacy-card:nth-child(3n) {
  border-right: 0;
}

.sb-privacy-card__icon {
  display: block;
}

.sb-privacy-card__title {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sb-text);
}

.sb-privacy-card__desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--sb-text-muted);
  max-width: 38ch;
}

.sb-privacy-banner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  padding: 56px;
  background: var(--sb-bg-panel);
  border-top: var(--sb-border-w) solid var(--sb-border);
  border-bottom: var(--sb-border-w) solid var(--sb-border);
}

.sb-privacy-banner__title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--sb-text);
}

.sb-privacy-banner__text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--sb-text-muted);
  max-width: 52ch;
  text-wrap: pretty;
}

.sb-privacy-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 12px var(--sb-pad-x);
  background: var(--sb-bg-elevated);
  border-bottom: var(--sb-border-w) solid var(--sb-border);
  font-size: 15px;
  line-height: 1.5;
  color: var(--sb-text-muted);
}

.sb-who-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-top: var(--sb-border-w) solid var(--sb-border);
  border-bottom: var(--sb-border-w) solid var(--sb-border);
}

.sb-who-card {
  min-height: 320px;
  padding: 48px;
  border-right: var(--sb-border-w) solid var(--sb-border);
}

.sb-who-card:nth-child(3n) {
  border-right: 0;
}

.sb-who-card:hover .sb-who-card__bar {
  width: 100%;
}

.sb-who-card__bar {
  width: 56px;
  height: 3px;
  background: var(--sb-sulphur);
  transition: width 260ms var(--sb-ease);
}

.sb-who-card__title {
  margin-top: 28px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sb-text);
}

.sb-who-card__desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--sb-text-muted);
  max-width: 40ch;
}

.sb-faq-item {
  border-top: var(--sb-border-w) solid var(--sb-border);
}

.sb-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 88px;
  padding: 0 var(--sb-pad-x);
  color: var(--sb-text);
}

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

.sb-faq-item summary:hover .sb-faq-item__q {
  color: var(--sb-sulphur);
}

.sb-faq-item__q {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--sb-text);
}

.sb-faq-item__plus {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: var(--sb-border-w) solid var(--sb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sb-sulphur);
  font-size: 19px;
  line-height: 1;
  transition: transform 200ms var(--sb-ease);
}

.sb-faq-item[open] summary .sb-faq-item__plus {
  transform: rotate(45deg);
}

.sb-faq-item__a {
  padding: 0 var(--sb-pad-x) 24px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sb-text-muted);
  max-width: 68ch;
}

.sb-faq-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 72px;
  padding: 12px var(--sb-pad-x);
  border-top: var(--sb-border-w) solid var(--sb-border);
  font-size: 15px;
  color: var(--sb-text-muted);
}

.sb-faq-more__link {
  font-size: 15px;
  color: var(--sb-sulphur);
  border-bottom: 1px solid var(--sb-sulphur);
}

.sb-faq-more__link:hover {
  color: var(--sb-text);
  border-color: var(--sb-text);
}

.sb-reserve-split {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 640px;
}

.sb-reserve-panel {
  padding: 64px;
  display: flex;
  flex-direction: column;
}

.sb-reserve-panel--info {
  background: var(--sb-bg-elevated);
  border-right: var(--sb-border-w) solid var(--sb-border);
}

.sb-reserve-panel--form {
  background: var(--sb-bg-panel);
  justify-content: center;
}

.sb-reserve-panel__title {
  margin-top: 24px;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.sb-reserve-panel__lede {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sb-text-muted);
  max-width: 42ch;
  text-wrap: pretty;
}

.sb-form {
  width: 100%;
  max-width: 480px;
}

.sb-form__label {
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: var(--sb-text-muted);
  margin-bottom: 10px;
}

.sb-form__label--spaced {
  margin-top: 28px;
}

.sb-form__req {
  color: var(--sb-sulphur);
}

.sb-form__input,
.sb-form__select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: transparent;
  border: var(--sb-border-w) solid var(--sb-border);
  border-radius: 0;
  font-family: var(--sb-font);
  font-size: 16px;
  color: var(--sb-text);
  outline: none;
}

.sb-form__select {
  padding-right: 44px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
}

.sb-form__input:focus,
.sb-form__select:focus {
  border-color: var(--sb-sulphur);
}

.sb-form__input::placeholder {
  color: var(--sb-text-faint);
  opacity: 1;
}

.sb-form__input:invalid:not(:placeholder-shown) {
  border-color: var(--sb-danger);
}

.sb-form__input:invalid:not(:placeholder-shown) + .sb-form__error {
  display: block;
}

.sb-form__select:user-invalid {
  border-color: var(--sb-danger);
}

.sb-form__select-wrap:has(.sb-form__select:user-invalid) + .sb-form__error {
  display: block;
}

.sb-form__select-wrap {
  position: relative;
}

.sb-form__chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  pointer-events: none;
}

.sb-form__error {
  display: none;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--sb-danger);
}

.sb-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sb-chip {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.sb-chip__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
}

.sb-chip__label {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  border: var(--sb-border-w) solid var(--sb-border);
  border-radius: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: var(--sb-text-muted);
  white-space: nowrap;
}

.sb-chip__input:checked + .sb-chip__label {
  background: var(--sb-sulphur);
  color: var(--sb-ink);
}

.sb-chip__input:focus-visible + .sb-chip__label {
  outline: 2px solid var(--sb-sulphur);
  outline-offset: 2px;
}

.sb-form__fine {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--sb-text-dim);
}

.sb-form__privacy {
  color: var(--sb-text-muted);
  border-bottom: 1px solid var(--sb-text-muted);
}

.sb-form__privacy:hover {
  color: var(--sb-sulphur);
  border-color: var(--sb-sulphur);
}

.sb-form-success {
  display: none;
  background: var(--sb-sulphur);
  color: var(--sb-ink);
  padding: 40px;
}

.sb-form-success.sb-is-visible {
  display: block;
}

.sb-form-success__eyebrow {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.sb-form-success__num {
  margin-top: 18px;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.sb-form-success__text {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.5;
}

.sb-is-hidden {
  display: none !important;
}

.sb-site-footer {
  border-top: var(--sb-border-w) solid var(--sb-border);
  background: var(--sb-bg-elevated);
}

.sb-site-footer__meta {
  padding: 18px var(--sb-pad-x) 22px;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sb-text-muted);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBtnIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translate(80px, 90px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes sparkIgnite {
  from {
    color: var(--sb-text);
  }
  to {
    color: var(--sb-sulphur);
  }
}

@keyframes heroFloat {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes rvUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rvPop {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rvSettle {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@supports (animation-timeline: view()) {
  [data-sb-reveal="up"],
  .sb-tier,
  .sb-feature-cell,
  .sb-cmp__row,
  .sb-who-card,
  .sb-privacy-card,
  .sb-faq-item,
  .sb-reserve-panel {
    animation: rvUp linear both;
    animation-timeline: view();
    animation-range: entry calc(10% + var(--sb-rvs, 0%)) cover 35%;
  }

  .sb-stat-figure {
    animation: rvPop linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 35%;
  }

  .sb-wideband__img {
    animation: rvSettle linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  .sb-section-header > .sb-lede[data-sb-reveal="up"],
  .sb-section-header > div > p[data-sb-reveal="up"] {
    --sb-rvs: 8%;
  }

  .sb-feature-cell:nth-of-type(1) {
    --sb-rvs: 0%;
  }
  .sb-feature-cell:nth-of-type(2) {
    --sb-rvs: 3%;
  }
  .sb-feature-cell:nth-of-type(3) {
    --sb-rvs: 6%;
  }
  .sb-feature-cell:nth-of-type(4) {
    --sb-rvs: 9%;
  }
  .sb-feature-cell:nth-of-type(5) {
    --sb-rvs: 12%;
  }
  .sb-feature-cell:nth-of-type(6) {
    --sb-rvs: 15%;
  }

  .sb-cmp__row:nth-of-type(1) {
    --sb-rvs: 0%;
  }
  .sb-cmp__row:nth-of-type(2) {
    --sb-rvs: 4%;
  }
  .sb-cmp__row:nth-of-type(3) {
    --sb-rvs: 8%;
  }

  .sb-who-card:nth-of-type(1) {
    --sb-rvs: 0%;
  }
  .sb-who-card:nth-of-type(2) {
    --sb-rvs: 4%;
  }
  .sb-who-card:nth-of-type(3) {
    --sb-rvs: 8%;
  }

  .sb-privacy-card:nth-of-type(1) {
    --sb-rvs: 0%;
  }
  .sb-privacy-card:nth-of-type(2) {
    --sb-rvs: 4%;
  }
  .sb-privacy-card:nth-of-type(3) {
    --sb-rvs: 8%;
  }

  .sb-faq-item:nth-of-type(1) {
    --sb-rvs: 0%;
  }
  .sb-faq-item:nth-of-type(2) {
    --sb-rvs: 3%;
  }
  .sb-faq-item:nth-of-type(3) {
    --sb-rvs: 6%;
  }
  .sb-faq-item:nth-of-type(4) {
    --sb-rvs: 9%;
  }
  .sb-faq-item:nth-of-type(5) {
    --sb-rvs: 12%;
  }
  .sb-faq-item:nth-of-type(6) {
    --sb-rvs: 15%;
  }

  .sb-reserve-panel:nth-of-type(1) {
    --sb-rvs: 0%;
  }
  .sb-reserve-panel:nth-of-type(2) {
    --sb-rvs: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1024px) {
  .sb-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-feature-cell {
    border-right: var(--sb-border-w) solid var(--sb-border);
    border-bottom: var(--sb-border-w) solid var(--sb-border);
  }

  .sb-feature-cell:nth-child(3n) {
    border-right: var(--sb-border-w) solid var(--sb-border);
  }

  .sb-feature-cell:nth-child(2n) {
    border-right: 0;
  }

  .sb-feature-cell:nth-last-child(-n + 3) {
    border-bottom: var(--sb-border-w) solid var(--sb-border);
  }

  .sb-feature-cell:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .sb-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-tier,
  .sb-tier-cta {
    border-right: var(--sb-border-w) solid var(--sb-border);
    border-bottom: var(--sb-border-w) solid var(--sb-border);
  }

  .sb-tier:nth-child(3n) {
    border-right: var(--sb-border-w) solid var(--sb-border);
  }

  .sb-tier:nth-child(2n),
  .sb-tier-cta:nth-child(2n) {
    border-right: 0;
  }

  .sb-tier:nth-last-child(-n + 3) {
    border-bottom: var(--sb-border-w) solid var(--sb-border);
  }

  .sb-tier:nth-last-child(-n + 2),
  .sb-tier-cta {
    border-bottom: 0;
  }

  .sb-section-title {
    -webkit-text-stroke: 1px currentColor;
  }
}

@media (max-width: 900px) {
  .sb-nav__link {
    display: none;
  }

  .sb-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-right: var(--sb-pad-x);
  }

  .sb-hero__visual {
    display: none;
  }

  .sb-hero__actions {
    flex-wrap: wrap;
  }

  .sb-section-header {
    grid-template-columns: 1fr;
  }

  .sb-vision__text {
    max-width: 100%;
    font-size: 18px;
  }

  .sb-wideband__img {
    height: 300px;
  }

  .sb-privacy-grid,
  .sb-who-grid {
    grid-template-columns: 1fr;
  }

  .sb-privacy-card,
  .sb-who-card {
    border-right: 0;
    border-bottom: var(--sb-border-w) solid var(--sb-border);
  }

  .sb-privacy-card:last-child,
  .sb-who-card:last-child {
    border-bottom: 0;
  }

  .sb-privacy-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px var(--sb-pad-x);
  }

  .sb-reserve-split {
    grid-template-columns: 1fr;
  }

  .sb-reserve-panel--info {
    border-right: 0;
    border-bottom: var(--sb-border-w) solid var(--sb-border);
  }

  .sb-reserve-panel {
    padding: 40px var(--sb-pad-x);
  }

  .sb-form {
    max-width: none;
  }

}

@media (max-width: 768px) {
  .sb-cmp__head {
    display: none;
  }

  .sb-cmp__row {
    grid-template-columns: 1fr;
  }

  .sb-cmp__row > * {
    height: auto;
    border-right: 0;
    border-bottom: var(--sb-border-w) solid var(--sb-border);
    padding: 18px 20px;
  }

  .sb-cmp__crit {
    background: var(--sb-bg-panel);
  }
}

@media (max-width: 700px) {
  .sb-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sb-feature-cell {
    border-right: 0;
    border-bottom: var(--sb-border-w) solid var(--sb-border);
    min-height: 0;
    padding: 32px;
  }

  .sb-feature-cell:last-child {
    border-bottom: 0;
  }

  .sb-tier-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sb-tier,
  .sb-tier-cta {
    border-right: 0 !important;
    border-bottom: var(--sb-border-w) solid var(--sb-border);
    min-height: 0;
    padding: 28px;
  }

  .sb-tier-cta {
    border-bottom: 0;
  }

  .sb-hero__actions {
    flex-wrap: wrap;
  }
}
