@import url('https://use.fontawesome.com/releases/v5.15.4/css/all.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-inter: 'Inter', 'Helvetica', 'Arial', 'Lucida', sans-serif;

  --background: #ffffff;
  --foreground: #131927;
  --surface-white: #ffffff;
  --surface-black: #131927;
  --text-primary: #131927;
  --text-secondary: #6d717f;
  --text-links: #547ef9;
  --text-accent: #547ef9;

  --primary-50: #fbf3fc;
  --primary-100: #f2dcf3;
  --primary-200: #dfb9e7;
  --primary-300: #c08bd0;
  --primary-400: #a062b7;
  --primary-500: #8947a5;
  --primary-600: #6f3190;
  --primary-700: #682c7f;
  --primary-800: #532468;
  --primary-900: #3d1a4d;
  --primary-950: #2a1135;

  --divi-accent: #547ef9;
  --divi-accent-secondary: #6f3190;
  --divi-button-bg: #6f3190;
  --divi-button-hover: rgba(84, 126, 249, 0.66);
  --divi-button-border: #6f3190;
  --divi-button-radius: 100px;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7ea;
  --gray-300: #d2d5db;
  --gray-400: #9ea2ae;
  --gray-500: #6d717f;
  --gray-600: #4d5461;
  --gray-700: #394050;
  --gray-800: #212936;
  --gray-900: #131927;
  --gray-950: #0b0f1c;

  --info-500: #8fabfb;
  --info-700: #547ef9;

  --page-bg: #07080d;
  --page-surface: #0f131f;
  --page-surface-strong: #151a27;
  --page-border: rgba(255, 255, 255, 0.08);
  --page-text: #f5f7fb;
  --page-muted: rgba(245, 247, 251, 0.7);
  --page-accent: var(--divi-accent);
  --page-accent-strong: var(--divi-accent-secondary);
  --page-glow: rgba(84, 126, 249, 0.35);
  --page-glow-alt: rgba(111, 49, 144, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 400;
  color: var(--page-text);
  background: var(--page-bg);
}

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

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

.page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(900px 480px at 15% 5%, var(--page-glow-alt), transparent 60%),
    radial-gradient(1100px 620px at 85% -10%, var(--page-glow), transparent 60%),
    var(--page-bg);
  overflow: hidden;
}

.page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 13, 0.2), rgba(7, 8, 13, 0.9) 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(1200px, 96vw);
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(1120px, 92vw);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 788px;
  background: transparent;
  border: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.nav-logo {
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  margin-left: auto;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.nav-links a {
  display: block;
  transition: opacity 0.4s ease-in-out;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  box-shadow:
    inset 0 -10px 30px rgba(116, 53, 215, 0.3),
    0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  text-align: center;
  padding: 13px 32px;
  border: 0;
}

.nav-cta-primary {
  border-radius: 50px;
  padding: 13px 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--divi-button-radius);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-ghost {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  box-shadow:
    inset 0 -10px 30px rgba(116, 53, 215, 0.3),
    0 0 14px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 -10px 30px rgba(116, 53, 215, 0.4),
    0 0 20px rgba(0, 0, 0, 0.5);
}

.nav-cta:hover {
  transform: none;
  box-shadow:
    inset 0 -10px 30px rgba(116, 53, 215, 0.3),
    0 0 10px rgba(0, 0, 0, 0.4);
}

.btn-primary {
  background: var(--divi-button-bg);
  color: #ffffff;
  border-color: var(--divi-button-border);
  box-shadow: 0 16px 30px rgba(111, 49, 144, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--divi-button-hover);
  box-shadow: 0 20px 34px rgba(84, 126, 249, 0.4);
}

.hero {
  position: relative;
  padding: 0;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64%, #000000 100%);
}

.hero-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
  padding-top: 36px;
  margin-top: -30px;
  min-height: 460px;
}

.hero-copy {
  max-width: 700px;
  margin-top: 106px;
  margin-bottom: 40px;
}

.hero-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--page-text);
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.hero-support {
  max-width: 50%;
  margin: 40px auto 0;
  text-align: center;
}

.hero-support-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  color: #fd8653;
}

.hero-support-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}


.hero-animations {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr);
}

.search-trail-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 140px 0 24px;
  min-height: 220px;
}

.search-bar {
  position: absolute;
  left: 50%;
  width: 600px;
  height: 50px;
  padding: 4px 4px 4px 20px;
  padding-right: 2px !important;
  border-radius: 30px;
  background-color: #dddddd;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #333333;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 0;
  transition: all 0.5s ease;
}

.search-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-icon svg {
  width: 100%;
  height: 100%;
}

.typewriter-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0 solid rgba(0, 0, 0, 0.4);
  animation: blink 0.9s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.svg-scroll-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  overflow: visible;
  height: 70px;
}

.svg-scroll {
  position: relative;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0.2));
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0.2));
}

.svg-track {
  display: flex;
  width: 200%;
  animation: scroll-left 60s linear infinite;
}

.svg-track img {
  flex-shrink: 0;
  width: 50%;
  height: auto;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero-stack {
    margin-top: 0;
    min-height: 0;
  }

  .hero-copy {
    margin-top: 38px;
    margin-bottom: 32px;
  }

  .hero-animations {
    gap: 24px;
  }

  .hero-support {
    max-width: 100%;
  }

  .search-trail-wrapper {
    padding: 100px 0 20px;
    min-height: 180px;
  }

  .search-bar {
    width: 90%;
    height: 50px;
    font-size: 16px;
    padding: 4px 4px 4px 16px;
  }

  .search-icon {
    width: 42px;
    height: 42px;
  }
}

.section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.section-features {
  background: #000000;
  padding-bottom: 0;
}

.section-audience {
  background: #000000;
  position: relative;
  padding-top: 0;
}

.section-audience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(900px, 90vw);
  height: 160px;
  transform: translateX(-50%);
  background-image: radial-gradient(ellipse at top, #00013d 0%, rgba(0, 0, 0, 0) 64% 100%);
  pointer-events: none;
  z-index: 0;
}

.section-waitlist {
  background: #000000;
  position: relative;
  padding-top: 0;
}

.section-waitlist::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(900px, 90vw);
  height: 160px;
  transform: translateX(-50%);
  background-image: radial-gradient(ellipse at top, rgba(0, 7, 140, 0.27) 2%, rgba(0, 0, 0, 0) 41% 92%);
  pointer-events: none;
  z-index: 0;
}

.section-audience .container,
.section-waitlist .container {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--page-muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-features .section-title,
.section-features .section-subtitle {
  text-align: center;
}

.section-audience .section-title {
  text-align: center;
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 48px;
}

.section-features .section-title {
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
}

.section-waitlist .section-title {
  margin-top: 0;
}

.section-features .section-subtitle {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  padding-bottom: 70px;
  position: relative;
}

.feature-row::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-image: radial-gradient(circle at center, #00078c 0%, rgba(0, 0, 0, 0) 100%);
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.feature h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.feature p {
  margin: 0;
  color: #697277;
  line-height: 1.6;
}

.feature .feature-eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #6f3190;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .feature-row .feature:nth-child(2)::before,
  .feature-row .feature:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: -70px;
    width: 1px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 30%, #00078c 100%);
  }

  .feature-row .feature:nth-child(2)::before {
    left: -15px;
  }

  .feature-row .feature:nth-child(2)::after {
    right: -15px;
  }
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 740px;
  margin: 40px auto 0;
}

.audience-card {
  padding: 0 12px;
  background: transparent;
  border: 0;
  text-align: left;
}

.audience-card h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.audience-card h3 span {
  display: block;
}

.audience-copy {
  margin: 0;
  color: #697277;
  line-height: 1.6;
}


.audience-card h3 {
  margin-top: 0;
}

.audience-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--page-muted);
  line-height: 1.6;
}

.waitlist {
  padding: 64px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(21, 26, 39, 0.95), rgba(7, 8, 13, 0.95));
  border: 1px solid var(--page-border);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.4);
}

.waitlist form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.waitlist input {
  flex: 1 1 220px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 14px;
}

.waitlist input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.page-simple .hero {
  padding-top: 120px;
}

.page-header {
  padding: 40px 0 24px;
  max-width: 810px;
  margin: 0 auto;
  text-align: center;
}

.page-title {
  font-size: clamp(32px, 3.5vw, 44px);
  margin: 0 0 12px;
}

.page-lede {
  color: #697277;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto;
}

.page-content {
  margin-top: 24px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  color: #697277;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.page-content > :where(p, ul, ol, h2, h3, h4, blockquote):not(.pull-quote) {
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
}

.page-content .bg-text-inner {
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
}

.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--page-text);
  margin-top: 48px;
  clear: both;
}

.page-content h2 {
  font-size: 24px;
}

.page-content h3 {
  font-size: 20px;
}

.page-content a {
  color: var(--page-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-content ul {
  padding-left: 20px;
  line-height: 1.7;
}

.page-content p {
  margin: 0 0 1em;
}

.page-content p:last-child {
  margin-bottom: 0;
}

.page-content img {
  margin: 28px 0 36px;
  border-radius: 16px;
  border: 1px solid rgba(92, 125, 241, 0.22);
  box-shadow:
    0 26px 42px rgba(3, 7, 24, 0.55),
    0 0 36px rgba(84, 126, 249, 0.32);
  background: rgba(12, 15, 24, 0.55);
}

.page-content table {
  width: 100%;
  margin: 28px auto 32px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(21, 26, 39, 0.92), rgba(12, 15, 24, 0.95));
  border: 1px solid rgba(92, 125, 241, 0.22);
  box-shadow:
    0 22px 40px rgba(3, 7, 24, 0.55),
    0 0 36px rgba(84, 126, 249, 0.18);
  z-index: 0;
  clear: both;
}

.page-content table::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 140px at 50% -15%, rgba(84, 126, 249, 0.45), rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.page-content table::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background-image: radial-gradient(circle at center, #00078c 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0.8;
  z-index: 0;
}

.page-content th,
.page-content td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(92, 125, 241, 0.12);
  position: relative;
  z-index: 1;
}

.page-content th:last-child,
.page-content td:last-child {
  border-right: none;
}

.page-content tr:last-child td {
  border-bottom: none;
}

.page-content th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 247, 251, 0.8);
  background: linear-gradient(180deg, rgba(18, 24, 40, 0.95), rgba(10, 13, 22, 0.95));
}

.page-content tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.page-content blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--page-accent);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  color: var(--page-text);
}

.page-content .pull-quote {
  position: relative;
  float: right;
  width: min(360px, 42%);
  margin: 6px 0 32px 36px;
  padding: 20px 22px 20px 44px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(215deg, rgba(84, 126, 249, 0.18), rgba(15, 19, 31, 0.85));
  box-shadow:
    0 20px 36px rgba(3, 7, 24, 0.5),
    0 0 30px rgba(84, 126, 249, 0.12);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  shape-outside: inset(0 round 20px);
  shape-margin: 16px;
}

.page-content .pull-quote:nth-of-type(even) {
  float: left;
  margin: 6px 36px 32px 0;
  background: linear-gradient(145deg, rgba(84, 126, 249, 0.18), rgba(15, 19, 31, 0.85));
}

.page-content .pull-quote::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  left: 18px;
  font-size: 44px;
  line-height: 1;
  color: rgba(84, 126, 249, 0.65);
  font-style: normal;
}

.page-content .pull-quote p {
  margin: 0;
}

.page-content .pull-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-inter);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: right;
  color: rgba(245, 247, 251, 0.65);
}

.page-content .pull-quote cite a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 247, 251, 0.25);
  padding-bottom: 2px;
}

.page-content .pull-quote cite a:hover {
  color: rgba(245, 247, 251, 0.85);
  border-bottom-color: rgba(245, 247, 251, 0.45);
}

.content-block {
  clear: both;
  margin: 28px 0;
}

@media (max-width: 900px) {
  .page-content .pull-quote,
  .page-content .pull-quote:nth-of-type(even) {
    float: none;
    width: 100%;
    margin: 24px 0;
    shape-outside: none;
  }
}

.content-note {
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid rgb(105, 114, 119);
  background: rgba(30, 29, 30, 0.93);
}

.content-note .content-note-title {
  margin: 0 0 8px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-note-body > :last-child {
  margin-bottom: 0;
}


.page-brand-guidelines {
  background: #000000;
  color: #697277;
}

.page-brand-guidelines::before {
  display: none;
}

.page-brand-guidelines .container {
  width: 80%;
  max-width: 1080px;
}

.brand-guidelines {
  padding: 120px 0 80px;
  background: transparent;
  color: #697277;
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 400;
}

.brand-guidelines h1,
.brand-guidelines h2,
.brand-guidelines h3,
.brand-guidelines h4 {
  color: #ffffff;
  margin: 0;
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 600;
}

.brand-guidelines h1 {
  font-size: 44px;
}

.brand-guidelines h2 {
  font-size: 30px;
}

.brand-guidelines h3 {
  font-size: 22px;
}

.brand-guidelines h4 {
  font-size: 18px;
}

.brand-guidelines p {
  margin: 0;
  padding-bottom: 1em;
}

.brand-guidelines p:last-of-type {
  padding-bottom: 0;
}

.brand-guidelines ul {
  list-style: disc;
  margin: 0;
  padding: 0 0 23px 1em;
  line-height: 26px;
}

.brand-guidelines li {
  margin-bottom: 0;
}

.brand-guidelines a {
  color: #2ea3f2;
  text-decoration: none;
}

.brand-guidelines a.bg-download,
.brand-guidelines a.bg-download:visited,
.brand-guidelines .bg-card a,
.brand-guidelines .bg-card a:visited {
  color: #ffffff;
}

.brand-guidelines > section {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2% 0;
}

.brand-guidelines > section.bg-note {
  padding: 24px 32px;
}

.brand-guidelines .bg-text-inner {
  width: 75%;
  max-width: 810px;
  margin: 0 auto;
}

.bg-hero {
  text-align: center;
}

.bg-hero p {
  color: #697277;
  max-width: none;
}

.bg-note {
  padding: 24px 32px;
  border: 1px solid #697277;
  border-radius: 12px;
  background: rgba(30, 29, 30, 0.93);
}

.bg-section {
  margin: 0;
}

.bg-grid {
  display: grid;
  gap: 5.5%;
  align-items: start;
}

.page-content .bg-grid {
  row-gap: 54px;
  column-gap: 32px;
}

.page-content .bg-section.bg-grid + .bg-section.bg-grid {
  margin-top: 54px;
}

.bg-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bg-grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.bg-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.bg-card img {
  width: 100%;
  border-radius: 15px;
  border: 0;
  background: transparent;
  padding: 0;
}

.bg-card p {
  margin: 0;
  padding: 0;
}

.bg-download,
.brand-guidelines .bg-card a {
  display: block;
  width: 100%;
  padding: 13px 32px;
  border-radius: 100px;
  background: #6f3190;
  border: 2px solid #6f3190;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-content a.bg-download {
  color: #ffffff;
  text-decoration: none;
}

.bg-download::after,
.brand-guidelines .bg-card a::after {
  content: '\f1c6';
  position: absolute;
  right: 26px;
  top: 50%;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  opacity: 0;
  transform: translate(10px, -50%);
  transition: all 0.3s ease;
}

.bg-download:hover,
.brand-guidelines .bg-card a:hover {
  background: rgba(84, 126, 249, 0.66);
  border-color: rgba(84, 126, 249, 0.66);
  color: #ffffff;
  padding-right: 64px;
}

.bg-download:hover::after,
.brand-guidelines .bg-card a:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.bg-copy {
  text-align: left;
}

.bg-swatch {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 14px;
  color: #697277;
  text-align: left;
}

.bg-swatch h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.bg-swatch p {
  margin: 0;
  padding-bottom: 1em;
}

.bg-swatch p:last-child {
  padding-bottom: 0;
}

.bg-swatch-chip {
  --swatch-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201024%201024%27%3E%3Cg%20transform%3D%27translate%280%20960%29%20scale%281%20-1%29%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M994%20960Q993%20960%20993.0%20960.0Q993%20960%20992%20960Q992%20960%20991.5%20960.0Q991%20960%20991%20960H588Q581%20959%20568.5%20951.0Q556%20943%20553%20941L83%20470Q64%20452%2064.0%20425.5Q64%20399%2083%20380L444%2019Q453%209%20465.0%204.5Q477%200%20489%200Q501%200%20513.0%204.5Q525%209%20534%2019L1005%20489Q1007%20492%201015.5%20503.5Q1024%20515%201024%20524V928Q1025%20941%201016.0%20950.5Q1007%20960%20994%20960ZM928%20832Q915%20832%20905.5%20841.5Q896%20851%20896%20864Q896%20877%20905.5%20886.5Q915%20896%20928%20896Q941%20896%20950.5%20886.5Q960%20877%20960%20864Q960%20851%20950.5%20841.5Q941%20832%20928%20832Z%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  width: 96px;
  height: 96px;
  border-radius: 0;
  border: 0;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: inherit;
}

.bg-swatch-chip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: currentColor;
  -webkit-mask-image: var(--swatch-mask);
  mask-image: var(--swatch-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
}

.bg-swatch--black .bg-swatch-chip {
  --swatch-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201024%201024%27%3E%3Cg%20transform%3D%27translate%280%20960%29%20scale%281%20-1%29%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M994%20960Q993%20960%20993.0%20960.0Q993%20960%20992%20960Q992%20960%20991.5%20960.0Q991%20960%20991%20960H588Q581%20959%20568.5%20951.0Q556%20943%20553%20941L83%20470Q64%20452%2064.0%20425.5Q64%20399%2083%20380L444%2019Q453%209%20465.0%204.5Q477%200%20489%200Q501%200%20513.0%204.5Q525%209%20534%2019L1005%20489Q1007%20492%201015.5%20503.5Q1024%20515%201024%20524V928Q1025%20941%201016.0%20950.5Q1007%20960%20994%20960ZM960%20536Q959%20535%20958.5%20534.0Q958%20533%20957%20532L489%2064L128%20425L596%20893Q597%20894%20598.0%20894.5Q599%20895%20600%20896H960ZM832%20800Q832%20787%20841.5%20777.5Q851%20768%20864%20768Q877%20768%20886.5%20777.5Q896%20787%20896%20800Q896%20813%20886.5%20822.5Q877%20832%20864%20832Q851%20832%20841.5%20822.5Q832%20813%20832%20800Z%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.bg-app-icon {
  grid-template-columns: 29.6667% 64.8333%;
  gap: 5.5%;
}

@media (max-width: 980px) {
  .bg-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bg-grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand-guidelines {
    padding-top: 100px;
  }

  .brand-guidelines .bg-text-inner {
    width: 100%;
  }

  .bg-grid-3,
  .bg-grid-6 {
    grid-template-columns: 1fr;
  }

  .bg-app-icon {
    grid-template-columns: 1fr;
  }
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.brand-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--page-surface-strong);
  border: 1px solid var(--page-border);
  text-align: center;
}

.brand-card img {
  border-radius: 14px;
  background: #ffffff;
  padding: 16px;
  width: 100%;
  height: auto;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.page-content a.download-link {
  color: #ffffff;
  text-decoration: none;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.color-swatch {
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--page-border);
}

.color-swatch span {
  display: block;
  font-size: 12px;
  color: var(--page-muted);
  margin-top: 8px;
}

.chip-preview {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.chip-preview img {
  max-width: 160px;
  border-radius: 16px;
  background: #ffffff;
  padding: 12px;
}

footer {
  padding: 40px 0 60px;
  color: #697277;
  font-size: 14px;
  z-index: 1;
  position: relative;
  background: #000000;
}

footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer-nav {
  width: 100%;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  color: #697277;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  border-left: 1px solid #697277;
  margin-left: 10px;
  padding-left: 10px;
}

.footer-link {
  color: var(--divi-accent);
}

.footer-link:hover {
  color: #8fabfb;
}

@media (max-width: 960px) {
  .nav {
    flex-direction: column;
    border-radius: 20px;
    top: 12px;
  }

  .nav-links {
    flex: 0 1 auto;
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

  .audience-grid .audience-card {
    grid-column: auto;
  }

  .waitlist {
    padding: 40px 28px;
  }
}
