:root {
  --bg: #3b3b3b;
  --panel: #1d1d1d;
  --panel-deep: #0a0a0a;
  --panel-soft: #232323;
  --border: #424242;
  --copy: #f2f2f2;
  --muted: #cfcfcf;
  --pink: #D445B7;
  --pink-soft: rgba(216, 67, 184, 0.35);
  --pink-bright: #f04cd2;
  --bubble-dark: rgba(62, 12, 54, 0.8);
  --bubble-soft: rgba(137, 70, 124, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--copy);
  font-family: "Aptos Narrow", "Bahnschrift SemiCondensed", "Trebuchet MS", "Arial Narrow", Arial, sans-serif;
}

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

img {
  display: block;
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 48px;
  border-radius: 6px;
  background: var(--pink);
  color: #180515;
  font-size: 16px;
  padding: 0 12px;
}

.site-shell {
  width: min(1170px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.panel {
  margin-bottom: 0;
}

header.topbar {
  display: flex;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: min(1170px, calc(100% - 24px));
  justify-content: space-between;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.50) 100%);
  color: var(--pink);
  border-radius: 0 0 12px 12px;
  padding: 12px;
}

header.topbar > * {
  display: inline-flex
}

header.topbar .chip {
  margin-right: 24px;
}

section.hero {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  gap: 48px;
  min-height: 0;
  padding: 48px;
  background: var(--panel);
}

section.hero .copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section.hero .logo {
  width: 250px;
  margin: 0;
}

section.hero .visual {
  width: 700px;
}

section.hero .visual img {
  width: 100%;
}

.newsletter {
  flex: 0 0 auto;
  padding: 18px 12px 24px 24px;
  background: var(--panel);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.newsletter-label {
  font-size: 18px;
  color: var(--copy);
  white-space: nowrap;
  margin: 0;
}

.sib-form {
  margin: 0;
  width: 100%;
}

.sib-form-container {
  padding: 0;
}

#sib-form-container,
#sib-container,
#sib-form {
  background: transparent !important;
}

#sib-form-container {
  max-width: none !important;
}

#sib-container {
  max-width: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

#sib-container .form__entry,
#sib-container .form__label-row,
#sib-container .entry_block,
#sib-container .sib-input,
#sib-container .sib-form-block {
  margin: 0 !important;
}

#sib-form {
  display: flex;
  align-items: center;
  gap: 14px;
}

#sib-form > div {
  padding: 0 !important;
  width: 100%;
}

#sib-container .entry__field {
  min-width: 0;
  background: none;
  border: none;
  width: 100%;
}
#sib-container .entry__field:focus-within {
  box-shadow: none;
}

#sib-container .input {
  width: 260px !important;
  min-height: 48px !important;
  border: 1px solid #2c2c2c !important;
  border-radius: 6px !important;
  background: #202020 !important;
  color: var(--copy) !important;
  padding: 0 14px !important;
  font: inherit !important;
  box-shadow: none !important;
}

#sib-container .input::placeholder {
  color: #909090 !important;
  font-family: inherit !important;
}

#sib-container .input:focus {
  outline: 2px solid rgba(212, 69, 183, 0.5) !important;
  outline-offset: 1px !important;
}

#sib-container .sib-form-block__button {
  min-width: 86px;
  min-height: 48px;
  border-radius: 6px !important;
  background: var(--pink) !important;
  color: #180515 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: inherit !important;
  padding: 0 12px !important;
  box-shadow: none !important;
}

#sib-container .sib-form-block__button:hover {
  background: var(--pink-bright) !important;
}

#sib-container .sib-form-block__button svg {
  display: none;
}

.sib-form-message-panel {
  display: none;
}

@media (max-width: 900px) {
  section.hero {
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
  }

  section.hero .logo {
    width: min(250px, 100%);
    margin: 0;
  }

  section.hero .visual {
    width: min(700px, 100%);
  }

  .newsletter {
    padding: 16px;
  }

  .newsletter-inner {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-label {
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }

  #sib-form {
    flex-direction: column;
    gap: 12px;
  }

  #sib-container .input,
  #sib-container .sib-form-block__button {
    width: 100% !important;
  }

  #sib-container {
    width: 100%;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .newsletter-inner {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-label {
    white-space: normal;
    text-align: center;
  }

  #sib-form {
    justify-content: center;
    gap: 0;
  }

  #sib-form > div {
    width: inherit;
  }
}

.guided-slab {
  position: relative;
  align-items: center;
  min-height: 264px;
  overflow: visible;
  background:
    radial-gradient(circle at 22% 100%, rgba(92, 22, 78, 0.34), transparent 26%),
    radial-gradient(circle at 78% 0%, rgba(92, 22, 78, 0.34), transparent 26%),
    linear-gradient(180deg, #080808 0%, #171717 28%, #1d1d1d 100%);
}

.guided-slab::before {
  top: -130px;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 24, 94, 0.5), rgba(15, 5, 13, 0.08) 52%, transparent 70%);
}

.guided-copy {
  grid-area: copy;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  align-items: center;
}

.guided-copy h2 {
  background: linear-gradient(rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.20) 100%);
}

.guided-copy h2,
.download-block h2 {
  margin: 0 0 var(--space-24);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
}

.guided-copy .content {
  margin: 0 auto;
  width: 400px;
}

.guided-copy p {
  margin: 0 0 var(--space-24);
  font-size: 18px;
  line-height: 1.55;
}

.phone {
  grid-area: left;
  position: absolute;
  z-index: 100;
  top: -96px;
}

.phone img {
  height: 450px;
}

.phone-left {
  right: calc(50% + 175px);
}

.phone-right {
  grid-area: right;
  left: calc(50% + 175px);
}
