@font-face {
  font-family: Poppins;
  src: url("assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #8a5fff;
  --purple-light: #b6a0f6;
  --white: #f5f4f9;
  --navy: #2e3047;
  --black: #0b0b0e;
  --ink: #17171c;
  --gray: #6b6b75;
  --line: rgba(255, 255, 255, 0.2);
  --header-h: 72px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  font-family: Poppins, Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(11, 11, 14, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.brand img {
  width: 205px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-nav a {
  opacity: 0.82;
  transition: opacity 0.2s;
}
.site-nav a:hover,
.site-nav a.active {
  opacity: 1;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 9px 15px;
  border-radius: 3px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.25s;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.full-screen {
  min-height: 100vh;
  position: relative;
}
.hero {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/businesses.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 42%,
      rgba(0, 0, 0, 0.12) 78%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 82vw);
  margin: 0 0 10vh clamp(36px, 8vw, 140px);
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 18px;
}
.eyebrow.dark {
  color: var(--purple);
}
.title-small {
  display: block;
  margin-top: 0.14em;
  font-size: 0.56em;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.hero .title-small {
  font-size: 0.52em;
  color: rgba(255, 255, 255, 0.9);
}
.light-panel .title-small,
.section-heading-block .title-small,
.process .title-small,
.pricing .title-small {
  color: #555560;
}
.hero h1 {
  font-size: clamp(2.75rem, 5.4vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.052em;
  max-width: 900px;
  margin-bottom: 26px;
  font-weight: 600;
}
.hero-lead {
  font-size: clamp(0.98rem, 1.35vw, 1.16rem);
  font-weight: 500;
  margin-bottom: 15px;
  max-width: 610px;
  line-height: 1.65;
}
.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 31px;
  flex-wrap: wrap;
}
.button {
  min-width: 170px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-light {
  background: #fff;
  color: #111;
}
.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}
.button-dark {
  background: #111;
  color: #fff;
}

.audiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 76vh;
  background: #000;
}
.audience-tile {
  position: relative;
  overflow: hidden;
  min-height: 76vh;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05)),
    var(--image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 45px 28px;
  transition: filter 0.3s;
}
.audience-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(138, 95, 255, 0);
  transition: background 0.35s;
}
.audience-tile:hover::after {
  background: rgba(138, 95, 255, 0.18);
}
.audience-tile div {
  position: relative;
  z-index: 2;
}
.audience-tile span {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.audience-tile h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.section-heading-block {
  background: var(--white);
  color: var(--ink);
  padding: 140px clamp(40px, 10vw, 165px) 125px;
}
.section-heading-block h2 {
  font-size: clamp(2.5rem, 4.8vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  font-weight: 500;
  max-width: 900px;
}

.feature-panel {
  display: grid;
  background: #09090b;
}
.feature-panel.light-panel {
  background: var(--white);
  color: var(--ink);
}
.image-right {
  grid-template-columns: 46% 54%;
}
.image-left {
  grid-template-columns: 54% 46%;
}
.feature-copy-inner {
  width: min(100%, 520px);
}
.image-right .feature-copy-inner {
  margin-left: auto;
}
.image-left .feature-copy-inner {
  margin-right: auto;
}
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(82px, 11vh, 135px) clamp(44px, 5.8vw, 96px);
}
.feature-copy h2 {
  font-size: clamp(2.65rem, 4.55vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  font-weight: 500;
  margin-bottom: 28px;
}
.feature-copy p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.8;
}
.light-panel .feature-copy p:not(.eyebrow) {
  color: #565660;
}
.feature-image {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2)), var(--image);
  background-size: cover;
  background-position: center;
}
.text-link {
  margin-top: 35px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  width: max-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 5px;
}
.dark-link {
  border-bottom-color: #777;
  color: #222;
}
.text-link span {
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}

.process {
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 7vw;
  padding: 14vh clamp(40px, 9vw, 150px);
  align-items: center;
}
.process-intro h2 {
  font-size: clamp(2.55rem, 4.45vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: 31px;
}
.process-intro p:not(.eyebrow) {
  color: #656570;
  max-width: 500px;
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.78;
}
.process-steps {
  display: grid;
  border-top: 1px solid #ccc;
}
.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #ccc;
}
.process-step > span {
  font-size: 0.75rem;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: 0.12em;
}
.process-step h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.process-step p {
  font-size: 0.9rem;
  color: #686873;
  max-width: 650px;
}
.process .button {
  margin-top: 40px;
  width: max-content;
}

.ip-section {
  background: #0b0b0e;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 7vw;
  padding: 14vh clamp(40px, 9vw, 150px);
}
.ip-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.ip-intro h2 {
  font-size: clamp(2.5rem, 4.15vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 38px;
}
.ip-intro h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 13px;
}
.ip-intro p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.78;
  max-width: 500px;
}
.ip-list {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.ip-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.ip-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  padding: 27px 0;
}
.ip-item summary::-webkit-details-marker {
  display: none;
}
.ip-item summary span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--purple-light);
}
.ip-item summary h3 {
  font-size: 1.22rem;
  font-weight: 500;
}
.ip-item summary b {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.2s;
}
.ip-item[open] summary b {
  transform: rotate(45deg);
}
.ip-item > p {
  color: rgba(255, 255, 255, 0.62);
  padding: 0 30px 28px 60px;
  font-size: 0.9rem;
  max-width: 820px;
}

.individuals {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.38)),
    url("assets/images/artists.jpeg") center/cover;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 7vw;
  padding: 14vh clamp(40px, 9vw, 150px);
}
.individuals-content h2 {
  font-size: clamp(2.7rem, 4.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  font-weight: 500;
  margin-bottom: 29px;
}
.individuals-content p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.8;
}
.use-case-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}
.use-case-cloud span {
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing {
  background: var(--white);
  color: var(--ink);
  padding: 140px clamp(40px, 8vw, 135px);
}
.pricing-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}
.pricing-heading h2 {
  font-size: clamp(2.45rem, 4.25vw, 4.6rem);
  letter-spacing: -0.05em;
  font-weight: 500;
  line-height: 1.02;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1250px;
  margin: auto;
  align-items: stretch;
}
.price-card {
  position: relative;
  border: 1px solid #d8d8dc;
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  background: #fff;
}
.price-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-18px);
}
.plan-label {
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 28px;
}
.price-card h3 {
  font-size: 1.13rem;
  font-weight: 500;
  line-height: 1.5;
  min-height: 82px;
  max-width: 260px;
}
.price {
  margin: auto 0 35px;
  display: flex;
  flex-direction: column;
}
.price strong {
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 500;
}
.price span {
  font-size: 0.78rem;
  color: #777;
  margin-top: 8px;
}
.featured .price span {
  color: rgba(255, 255, 255, 0.65);
}
.badge {
  position: absolute;
  right: 20px;
  top: 20px;
  background: var(--purple);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.badge.subtle {
  background: #111;
}

.newsletter {
  background: linear-gradient(180deg, var(--purple), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12vh 6vw;
}
.newsletter-inner {
  width: min(900px, 100%);
  text-align: center;
}
.newsletter-inner > img {
  width: 90px;
  margin: 0 auto 30px;
  filter: none;
}
.newsletter h2 {
  font-size: clamp(2.65rem, 4.65vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  font-weight: 500;
}
.newsletter-inner > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px auto 48px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.75;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
  max-width: 760px;
  margin: auto;
}
.field {
  display: grid;
  gap: 7px;
}
.wide {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.field label span {
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0;
}
.field input {
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0 15px;
  outline: none;
  border-radius: 0;
}
.field input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
}
.consent input {
  margin-top: 5px;
}
.form-status {
  min-height: 24px;
  text-align: center;
  font-size: 0.82rem;
}

.site-footer {
  background: #09090b;
  padding: 55px 6vw 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  align-items: end;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}
.footer-brand img {
  width: 205px;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer > p {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.toast {
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 35px;
  transform: translate(-50%, 25px);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: #111;
  padding: 13px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: 0.25s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(11, 11, 14, 0.98);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 5vw;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  .site-nav.open {
    max-height: 560px;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 24px;
  }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-cta {
    border: 0;
    border-radius: 0;
  }
  .audiences {
    grid-template-columns: 1fr 1fr;
  }
  .audience-tile {
    min-height: 55vh;
  }
  .feature-panel,
  .feature-panel.image-left,
  .feature-panel.image-right {
    grid-template-columns: 1fr;
  }
  .feature-image {
    min-height: 55vh;
  }
  .image-left .feature-image {
    order: 2;
  }
  .feature-copy-inner,
  .image-right .feature-copy-inner,
  .image-left .feature-copy-inner {
    margin: 0;
    max-width: 620px;
  }
  .process,
  .ip-section,
  .individuals {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .ip-intro {
    position: static;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
  }
  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 650px) {
  .site-header {
    padding: 0 5vw;
  }
  .brand img {
    width: 165px;
  }
  .hero-content {
    margin: 0 7vw 11vh;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.15rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    width: 100%;
  }
  .audiences {
    grid-template-columns: 1fr;
  }
  .audience-tile {
    min-height: 62vh;
  }
  .section-heading-block {
    padding: 95px 6vw 80px;
  }
  .feature-copy {
    padding: 88px 9vw;
  }
  .feature-image {
    min-height: 48vh;
  }
  .process,
  .ip-section,
  .individuals {
    padding: 100px 9vw;
  }
  .process-step {
    grid-template-columns: 48px 1fr;
  }
  .ip-item summary {
    grid-template-columns: 40px 1fr 25px;
  }
  .ip-item > p {
    padding-left: 40px;
  }
  .pricing {
    padding: 95px 6vw;
  }
  .price-card {
    min-height: 430px;
  }
  .newsletter-form {
    grid-template-columns: 1fr;
  }
  .wide {
    grid-column: auto;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .site-footer > p {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
