/* =========================================================
   ROOT / RESET
========================================================= */

:root {

  --bg: #ffffff;
  --bg-soft: #f7f8ff;
  --bg-purple: #f4f1ff;

  --text: #17172a;
  --text-soft: #64647a;

  --purple: #6557ff;
  --purple-dark: #4d3ee8;
  --purple-light: #8579ff;

  --blue: #2878ff;
  --cyan: #25c9e8;
  --yellow: #ffd85a;

  --green: #17a673;
  --green-soft: #ecfff8;

  --orange: #ec8b2c;
  --orange-soft: #fff8ee;

  --border: #e8e8f2;

  --shadow-sm:
    0 10px 30px rgba(36, 29, 89, 0.06);

  --shadow:
    0 25px 70px rgba(54, 44, 120, 0.12);

  --shadow-lg:
    0 40px 100px rgba(51, 40, 110, 0.18);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;

  --max-width: 1180px;

}


*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {

  margin: 0;

  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--bg);
  color: var(--text);

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;

}


img,
svg,
video {
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input,
textarea {
  font: inherit;
}


button {
  cursor: pointer;
}


.container {

  width:
    min(
      calc(100% - 40px),
      var(--max-width)
    );

  margin-inline: auto;

}



/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
p {
  margin-top: 0;
}


h1,
h2,
h3 {

  letter-spacing: -0.035em;
  line-height: 1.08;

}


h2 {

  font-size:
    clamp(2.2rem, 4vw, 3.7rem);

  margin-bottom: 20px;

}


h2 span {
  color: var(--purple);
}


h3 {
  font-size: 1.2rem;
}


p {
  color: var(--text-soft);
}


.section {
  padding: 64px 0;
}


.section-alt {
  background: var(--bg-soft);
}


.section-heading {

  max-width: 740px;

  margin-bottom: 42px;

}


.section-heading.centered {

  text-align: center;

  margin-inline: auto;
  margin-bottom: 42px;

}


.section-heading p {

  max-width: 680px;

  font-size: 1.08rem;

}


.centered p {
  margin-inline: auto;
}


.section-label {

  display: inline-block;

  margin-bottom: 15px;

  color: var(--purple);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.14em;

}



/* =========================================================
   AFFILIATE DISCLOSURE
========================================================= */

.disclosure-bar {

  background: #17172a;
  color: white;

  padding: 9px 0;

  text-align: center;

}


.disclosure-bar p {

  margin: 0;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 0.78rem;

}


.disclosure-bar strong {
  color: white;
}



/* =========================================================
   HEADER
========================================================= */

.site-header {

  position: sticky;
  top: 0;

  z-index: 1000;

  background:
    rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(18px);

  border-bottom:
    1px solid transparent;

  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;

}


.site-header.scrolled {

  border-color: var(--border);

  box-shadow:
    0 8px 30px
    rgba(31, 31, 65, 0.06);

}


.nav-container {

  height: 78px;

  display: flex;

  align-items: center;
  justify-content: space-between;

}


.brand {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-weight: 700;

}


.brand-icon {

  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  color: white;

  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--blue)
    );

  border-radius: 12px;

}


.brand-icon svg {

  width: 27px;
  height: 27px;

}


.brand-text {
  line-height: 1;
}


.brand-text strong {

  display: block;

  color: var(--purple);

  margin-top: 4px;

}


.main-nav {

  display: flex;

  align-items: center;

  gap: 30px;

}


.main-nav > a:not(.nav-cta) {

  color: #4f4f65;

  font-size: 0.91rem;
  font-weight: 600;

}


.main-nav > a:not(.nav-cta):hover {
  color: var(--purple);
}


.nav-cta {

  padding: 12px 19px;

  color: white;
  background: var(--text);

  border-radius: 12px;

  font-size: 0.9rem;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;

}


.nav-cta:hover {

  transform: translateY(-2px);

  background: var(--purple);

}


.mobile-menu-button {

  display: none;

  width: 44px;
  height: 44px;

  background: transparent;

  border: 0;

}


.mobile-menu-button span {

  display: block;

  width: 22px;
  height: 2px;

  margin: 5px auto;

  background: var(--text);

}



/* =========================================================
   BUTTONS
========================================================= */

.button {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 54px;

  padding: 0 24px;

  border-radius: 14px;

  font-size: 0.96rem;
  font-weight: 800;

  border:
    1px solid transparent;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;

}


.button:hover {
  transform: translateY(-3px);
}


.button-primary {

  color: white;

  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--blue)
    );

  box-shadow:
    0 14px 35px
    rgba(90, 76, 255, 0.25);

}


.button-primary:hover {

  box-shadow:
    0 20px 44px
    rgba(90, 76, 255, 0.32);

}


.button-secondary {

  color: var(--text);

  background: white;

  border-color: var(--border);

}


.button-ghost {

  border-color:
    rgba(255, 255, 255, 0.25);

}


.button-white {

  color: var(--purple-dark);

  background: white;

}


.button-full {
  width: 100%;
}


.text-link {

  color: var(--purple);

  font-weight: 800;

}



/* =========================================================
   HERO
========================================================= */

.hero {

  position: relative;

  overflow: hidden;

  padding:
    90px 0
    82px;

  background:

    radial-gradient(
      circle at 75% 10%,
      rgba(101, 87, 255, 0.13),
      transparent 27%
    ),

    radial-gradient(
      circle at 15% 80%,
      rgba(37, 201, 232, 0.09),
      transparent 25%
    ),

    #fff;

}


.hero-grid {

  display: grid;

  grid-template-columns:
    1.02fr
    0.98fr;

  gap: 65px;

  align-items: center;

}


.eyebrow {

  width: fit-content;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 8px 13px;
  margin-bottom: 24px;

  color: #4c477b;

  background: #f0eeff;

  border:
    1px solid
    #ded9ff;

  border-radius: 999px;

  font-size: 0.76rem;
  font-weight: 800;

}


.eyebrow-dot {

  width: 7px;
  height: 7px;

  background: var(--purple);

  border-radius: 50%;

  box-shadow:
    0 0 0 5px
    rgba(101, 87, 255, 0.12);

}


.hero-title {

  margin-bottom: 27px;

  font-size:
    clamp(3.3rem, 5.2vw, 5.1rem);

  line-height: 1.03;

  letter-spacing: -0.055em;

}


.hero-title > span {
  display: block;
}


.hero-highlight {

  position: relative;

  width: fit-content;

  color: var(--purple);

}


.hero-highlight::after {

  content: "";

  position: absolute;

  left: 1px;
  right: 0;
  bottom: -7px;

  height: 8px;

  border-top:
    4px solid
    var(--yellow);

  border-radius: 50%;

  transform: rotate(-1deg);

}


.hero-subtitle {

  max-width: 590px;

  margin-bottom: 29px;

  font-size: 1.12rem;

  line-height: 1.75;

}


.hero-buttons {

  display: flex;

  gap: 12px;

  flex-wrap: wrap;

}


.cta-note {

  margin:
    14px 0
    23px;

  font-size: 0.83rem;

}


.hero-points {

  display: flex;

  gap: 22px;

  flex-wrap: wrap;

  color: #55556c;

  font-size: 0.88rem;
  font-weight: 700;

}


.hero-points > div {

  display: flex;

  align-items: center;

  gap: 7px;

}


.check {

  display: inline-grid;

  place-items: center;

  width: 20px;
  height: 20px;

  color: var(--green);
  background: var(--green-soft);

  border-radius: 50%;

  font-size: 0.72rem;
  font-weight: 900;

}



/* =========================================================
   HERO MOCKUP
========================================================= */

.hero-visual {
  position: relative;
}


.app-window {

  overflow: hidden;

  background: white;

  border:
    1px solid
    rgba(100, 85, 220, 0.14);

  border-radius: 26px;

  box-shadow: var(--shadow-lg);

  transform:
    perspective(1200px)
    rotateY(-3deg)
    rotateX(1deg);

}


.window-top {

  height: 52px;

  display: flex;

  align-items: center;

  padding: 0 17px;

  border-bottom:
    1px solid
    #ededf4;

  background: #fbfbff;

}


.window-dots {

  display: flex;

  gap: 6px;

}


.window-dots span {

  width: 9px;
  height: 9px;

  border-radius: 50%;

}


.window-dots span:nth-child(1) {
  background: #ff6c6c;
}


.window-dots span:nth-child(2) {
  background: #ffd45c;
}


.window-dots span:nth-child(3) {
  background: #55d38a;
}


.window-title {

  margin-left: auto;
  margin-right: auto;

  color: #9292a3;

  font-size: 0.68rem;
  font-weight: 700;

}


.app-body {

  min-height: 420px;

  display: flex;

}


.mock-sidebar {

  width: 65px;

  display: flex;

  align-items: center;
  flex-direction: column;

  gap: 20px;

  padding: 20px 10px;

  background: #18172a;

}


.side-logo {

  display: grid;
  place-items: center;

  width: 35px;
  height: 35px;

  color: white;

  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--cyan)
    );

  border-radius: 10px;

  font-size: 0.72rem;
  font-weight: 900;

}


.side-item {

  width: 25px;
  height: 6px;

  background:
    rgba(255, 255, 255, 0.17);

  border-radius: 10px;

}


.side-item.active {
  background: var(--purple-light);
}


.whiteboard-preview {

  position: relative;

  flex: 1;

  padding: 25px;

  background:
    radial-gradient(
      circle at 1px 1px,
      #dedee8 1px,
      transparent 0
    );

  background-size: 22px 22px;

}


.whiteboard-preview svg {
  width: 100%;
}


.draw-line {

  fill: none;

  stroke: #252536;

  stroke-width: 7;

  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;

  animation:
    draw 2.3s
    ease forwards;

}


.delay-2 {
  animation-delay: 0.4s;
}


.delay-3 {
  animation-delay: 0.8s;
}


.delay-4 {
  animation-delay: 1.2s;
}


.accent-line {
  stroke: var(--purple);
}


.sparkle {
  fill: var(--yellow);
}


.sparkle-line {

  fill: none;

  stroke: var(--yellow);

  stroke-width: 5;

  stroke-linecap: round;

}


@keyframes draw {

  to {
    stroke-dashoffset: 0;
  }

}


.prompt-card {

  position: absolute;

  left: 50%;
  bottom: 20px;

  width: 78%;

  transform:
    translateX(-50%);

  padding: 14px;

  background:
    rgba(255, 255, 255, 0.93);

  backdrop-filter: blur(15px);

  border:
    1px solid
    #e4e2f5;

  border-radius: 15px;

  box-shadow: var(--shadow-sm);

}


.prompt-card span {

  display: block;

  margin-bottom: 3px;

  color: var(--purple);

  font-size: 0.65rem;
  font-weight: 900;

  letter-spacing: 0.1em;

  text-transform: uppercase;

}


.prompt-card p {

  display: inline;

  margin: 0;

  color: var(--text);

  font-size: 0.78rem;

}


.prompt-card button {

  float: right;

  padding: 7px 11px;

  color: white;

  background: var(--purple);

  border: 0;

  border-radius: 8px;

  font-size: 0.68rem;
  font-weight: 800;

}


.floating-badge {

  position: absolute;

  z-index: 4;

  padding: 10px 14px;

  background: white;

  border:
    1px solid
    rgba(100, 85, 220, 0.12);

  border-radius: 13px;

  box-shadow: var(--shadow);

  font-size: 0.76rem;
  font-weight: 800;

}


.badge-ai {

  top: -28px;
  right: 24px;

  color: var(--purple);

}


.badge-cloud {

  left: -35px;
  bottom: 44px;

  color: var(--blue);

}



/* =========================================================
   QUICK STATS
========================================================= */

.quick-stats {

  border-top:
    1px solid
    var(--border);

  border-bottom:
    1px solid
    var(--border);

  background: #fcfcff;

}


.stats-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

}


.stat-card {

  padding: 27px 25px;

  text-align: center;

  border-right:
    1px solid
    var(--border);

}


.stat-card:last-child {
  border-right: 0;
}


.stat-card strong {

  display: block;

  margin-bottom: 5px;

  color: var(--text);

  font-size: 1.7rem;

}


.stat-card span {

  color: var(--text-soft);

  font-size: 0.83rem;

}



/* =========================================================
   EXPLANATION
========================================================= */

.explanation-grid {

  display: grid;

  grid-template-columns:
    0.8fr
    1.2fr;

  gap: 70px;

  align-items: start;

}


.explanation-copy > p {

  font-size: 1.06rem;

  line-height: 1.8;

}


.info-callout {

  display: flex;

  gap: 13px;

  margin-top: 28px;

  padding: 18px;

  background: var(--bg-purple);

  border:
    1px solid
    #e2ddff;

  border-radius: var(--radius-sm);

}


.info-icon {

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  width: 26px;
  height: 26px;

  color: white;

  background: var(--purple);

  border-radius: 50%;

  font-weight: 900;

}


.info-callout p {

  margin: 0;

  font-size: 0.9rem;

}


.steps {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;

}


.step-card {

  display: flex;

  gap: 15px;

  padding: 25px;

  background: white;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow-sm);

}


.step-number {

  color: var(--purple);

  font-size: 0.71rem;
  font-weight: 900;

  letter-spacing: 0.08em;

}


.step-card h3 {
  margin-bottom: 9px;
}


.step-card p {

  margin: 0;

  font-size: 0.88rem;

}



/* =========================================================
   CUSTOM ILLUSTRATIONS
========================================================= */

.site-illustration {

  max-width: 1060px;

  margin:
    42px auto 0;

  text-align: center;

}


.site-illustration img {

  display: block;

  width: 100%;
  height: auto;

  background: white;

  border:
    1px solid
    rgba(101, 87, 255, 0.10);

  border-radius: 27px;

  box-shadow:
    0 22px 60px
    rgba(54, 44, 120, 0.08);

}


.illustration-note {

  max-width: 620px;

  margin:
    12px auto 0;

  color: var(--text-soft);

  font-size: 0.71rem;

  line-height: 1.55;

}


.workflow-illustration {
  max-width: 1080px;
}


.creator-illustration {

  max-width: 980px;

  margin-top: 42px;

}



/* =========================================================
   VIDEO
========================================================= */

.video-shell {

  max-width: 930px;

  margin-inline: auto;

  padding: 15px;

  background: #17172a;

  border-radius: 28px;

  box-shadow: var(--shadow-lg);

}


.video-label {

  display: flex;

  align-items: center;

  gap: 8px;

  padding:
    2px 5px
    12px;

  color:
    rgba(255, 255, 255, 0.75);

  font-size: 0.75rem;
  font-weight: 700;

}


.live-dot {

  width: 8px;
  height: 8px;

  background: #5de59f;

  border-radius: 50%;

  box-shadow:
    0 0 0 5px
    rgba(93, 229, 159, 0.12);

}


.video-wrapper {

  position: relative;

  overflow: hidden;

  padding-top: 56.25%;

  background: #080810;

  border-radius: 18px;

}


.video-wrapper iframe {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;

}



/* =========================================================
   DEMO ATTRIBUTION
========================================================= */

.demo-attribution {

  max-width: 820px;

  display: flex;

  align-items: flex-start;

  gap: 14px;

  margin:
    21px auto 0;

  padding: 17px 19px;

  background:
    rgba(101, 87, 255, 0.055);

  border:
    1px solid
    rgba(101, 87, 255, 0.14);

  border-radius: 16px;

}


.demo-attribution-icon {

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  width: 27px;
  height: 27px;

  color: white;

  background: var(--purple);

  border-radius: 50%;

  font-size: 0.75rem;
  font-weight: 900;

}


.demo-attribution strong {

  display: block;

  margin-bottom: 3px;

  color: var(--text);

  font-size: 0.86rem;

}


.demo-attribution p {

  margin: 0;

  color: var(--text-soft);

  font-size: 0.78rem;

  line-height: 1.65;

}



/* =========================================================
   FEATURES
========================================================= */

.feature-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 16px;

}


.feature-card {

  position: relative;

  min-height: 235px;

  padding: 26px;

  background: white;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;

}


.feature-card:hover {

  transform: translateY(-5px);

  box-shadow: var(--shadow);

}


.featured-card {

  color: white;

  background:
    linear-gradient(
      145deg,
      #6152ff,
      #7444df
    );

  border: 0;

}


.featured-card p {

  color:
    rgba(255, 255, 255, 0.78);

}


.feature-icon {

  display: grid;
  place-items: center;

  width: 43px;
  height: 43px;

  margin-bottom: 25px;

  color: var(--purple);

  background: #f1efff;

  border-radius: 13px;

  font-weight: 900;

}


.featured-card .feature-icon {

  color: white;

  background:
    rgba(255, 255, 255, 0.15);

}


.feature-card h3 {
  margin-bottom: 10px;
}


.feature-card p {

  margin: 0;

  font-size: 0.88rem;

}


.feature-tag {

  position: absolute;

  right: 18px;
  top: 18px;

  padding: 5px 8px;

  background:
    rgba(255, 255, 255, 0.14);

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  border-radius: 999px;

  font-size: 0.57rem;
  font-weight: 900;

  letter-spacing: 0.09em;

}



/* =========================================================
   AUDIENCE
========================================================= */

.audience-section {

  padding-bottom: 55px;

  background:
    linear-gradient(
      180deg,
      white,
      #fafaff
    );

}


.audience-grid {

  display: grid;

  grid-template-columns:
    0.82fr
    1.18fr;

  gap: 72px;

  align-items: center;

}


.audience-copy > p {

  max-width: 460px;

  font-size: 1.04rem;

}


.audience-cards {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;

}


.audience-card {

  display: flex;

  align-items: flex-start;

  gap: 15px;

  padding: 24px;

  background: white;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow-sm);

}


.audience-card > span {

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  width: 43px;
  height: 43px;

  background: var(--bg-purple);

  border-radius: 12px;

}


.audience-card h3 {
  margin-bottom: 6px;
}


.audience-card p {

  margin: 0;

  font-size: 0.84rem;

}



/* =========================================================
   PROS / CONS
========================================================= */

#pros-cons {
  padding-top: 55px;
}


.pros-cons-grid {

  max-width: 980px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 22px;

}


.pros-card,
.cons-card {

  padding: 34px;

  background: white;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

}


.pros-card {

  border-top:
    4px solid
    var(--green);

}


.cons-card {

  border-top:
    4px solid
    var(--orange);

}


.card-heading {

  display: flex;

  align-items: center;

  gap: 11px;

  margin-bottom: 25px;

}


.card-heading span {

  display: grid;
  place-items: center;

  width: 31px;
  height: 31px;

  border-radius: 50%;

  font-weight: 900;

}


.card-heading h3 {
  margin: 0;
}


.positive span {

  color: var(--green);

  background: var(--green-soft);

}


.caution span {

  color: var(--orange);

  background: var(--orange-soft);

}


.pros-card ul,
.cons-card ul {

  list-style: none;

  padding: 0;
  margin: 0;

}


.pros-card li,
.cons-card li {

  display: flex;

  gap: 12px;

  padding: 14px 0;

  color: #59596e;

  border-bottom:
    1px solid
    #eeeef5;

  font-size: 0.88rem;

}


.pros-card li:last-child,
.cons-card li:last-child {
  border-bottom: 0;
}


.pros-card li > span {

  color: var(--green);

  font-weight: 900;

}


.cons-card li > span {

  color: var(--orange);

  font-weight: 900;

}



/* =========================================================
   PRICING
========================================================= */

.pricing-section {

  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(101, 87, 255, 0.08),
      transparent 35%
    );

}


.pricing-grid {

  max-width: 980px;

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    1fr 0.8fr;

  gap: 23px;

}


.pricing-card {

  padding: 38px;

  background: white;

  border:
    1px solid
    #dedbf4;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow);

}


.plan-name {

  margin-bottom: 8px;

  color: var(--purple);

  font-weight: 900;

}


.price {

  display: flex;

  align-items: flex-start;

  margin-bottom: 15px;

}


.currency {

  padding-top: 11px;

  font-size: 1.5rem;
  font-weight: 800;

}


.price strong {

  font-size: 4.4rem;

  line-height: 0.95;

  letter-spacing: -0.07em;

}


.price-period {

  align-self: flex-end;

  padding:
    0 0 7px
    9px;

  color: var(--text-soft);

  font-size: 0.85rem;

}


.pricing-description {
  max-width: 500px;
}


.pricing-features {

  list-style: none;

  padding: 22px 0;

  margin: 23px 0;

  border-top:
    1px solid
    var(--border);

  border-bottom:
    1px solid
    var(--border);

}


.pricing-features li {

  padding: 7px 0;

  color: #55556b;

  font-size: 0.9rem;

}


.pricing-disclaimer {

  margin:
    13px 0 0;

  text-align: center;

  font-size: 0.68rem;

  line-height: 1.5;

}


.pricing-side {

  display: flex;

  flex-direction: column;

  gap: 15px;

}


.side-info-card {

  display: flex;

  gap: 14px;

  padding: 25px;

  background: white;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow-sm);

}


.side-info-card h3 {
  margin-bottom: 7px;
}


.side-info-card p {

  margin: 0;

  font-size: 0.84rem;

}


.mini-icon {

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  background: var(--bg-purple);

  border-radius: 11px;

}


.guarantee-card {

  background: var(--green-soft);

  border-color: #caefe2;

}


.last-checked {

  margin:
    22px auto 0;

  text-align: center;

  font-size: 0.72rem;

}



/* =========================================================
   VERDICT
========================================================= */

.verdict-section {
  background: #17172a;
}


.verdict-box {

  display: grid;

  grid-template-columns:
    0.35fr
    0.65fr;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #6758ff,
      #7043dd
    );

  border-radius: 34px;

}


.verdict-score {

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 55px;

  background:
    rgba(255, 255, 255, 0.08);

  border-right:
    1px solid
    rgba(255, 255, 255, 0.15);

}


.verdict-score span {

  margin-bottom: 10px;

  color:
    rgba(255, 255, 255, 0.7);

  font-size: 0.74rem;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;

}


.verdict-score strong {

  color: white;

  font-size: 2.5rem;

  line-height: 1;

}


.verdict-copy {
  padding: 55px;
}


.verdict-copy .section-label {
  color: #ddd9ff;
}


.verdict-copy h2,
.verdict-copy p {
  color: white;
}


.verdict-copy p {

  color:
    rgba(255, 255, 255, 0.76);

}


.verdict-buttons {

  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 30px;

}


.verdict-buttons .button-ghost {
  color: white;
}



/* =========================================================
   FAQ
========================================================= */

.faq-container {
  max-width: 850px;
}


.faq-list {

  display: grid;

  gap: 11px;

}


.faq-item {

  overflow: hidden;

  background: white;

  border:
    1px solid
    var(--border);

  border-radius: 17px;

}


.faq-question {

  width: 100%;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 21px 23px;

  color: var(--text);

  background: white;

  border: 0;

  text-align: left;

  font-weight: 800;

}


.faq-plus {

  display: grid;
  place-items: center;

  width: 29px;
  height: 29px;

  color: var(--purple);

  background: var(--bg-purple);

  border-radius: 50%;

  font-size: 1.15rem;

  transition:
    transform 0.25s ease;

}


.faq-item.open .faq-plus {
  transform: rotate(45deg);
}


.faq-answer {

  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.35s ease;

}


.faq-answer p {

  padding:
    0 23px
    22px;

  margin: 0;

  font-size: 0.9rem;

}



/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(
      135deg,
      #5f50fa,
      #7352ed 55%,
      #4379f4
    );

}


.final-cta-inner {

  position: relative;

  z-index: 2;

  max-width: 760px;

  text-align: center;

}


.final-eyebrow {

  display: inline-block;

  margin-bottom: 14px;

  color: #dedbff;

  font-size: 0.8rem;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;

}


.final-cta h2 {
  color: white;
}


.final-cta h2 span {
  color: var(--yellow);
}


.final-cta p {

  max-width: 600px;

  margin:
    0 auto
    28px;

  color:
    rgba(255, 255, 255, 0.78);

  font-size: 1.05rem;

}


.final-cta small {

  display: block;

  margin-top: 13px;

  color:
    rgba(255, 255, 255, 0.6);

}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {

  padding:
    55px 0
    90px;

  background: #10101d;

}


.footer-grid {

  display: flex;

  justify-content: space-between;

  gap: 40px;

}


.footer-brand {
  color: white;
}


.footer-description {

  margin:
    16px 0 0;

  font-size: 0.83rem;

}


.footer-links {

  display: flex;

  gap: 25px;

  flex-wrap: wrap;

  color:
    rgba(255, 255, 255, 0.68);

  font-size: 0.82rem;

}


.footer-links a:hover {
  color: white;
}


.footer-bottom {

  display: flex;

  justify-content: space-between;

  gap: 30px;

  padding-top: 35px;

  margin-top: 35px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.09);

}


.footer-bottom p {

  margin: 0;

  color:
    rgba(255, 255, 255, 0.47);

  font-size: 0.72rem;

}


.legal-copy {
  margin-top: 28px;
}


.legal-copy p {

  max-width: 950px;

  color:
    rgba(255, 255, 255, 0.35);

  font-size: 0.66rem;

}



/* =========================================================
   MOBILE STICKY CTA
========================================================= */

.mobile-sticky-cta {

  display: none;

  position: fixed;

  z-index: 999;

  left: 12px;
  right: 12px;
  bottom: 12px;

  align-items: center;
  justify-content: space-between;

  gap: 12px;

  padding:
    10px 11px
    10px 15px;

  background:
    rgba(23, 23, 42, 0.94);

  backdrop-filter: blur(16px);

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  border-radius: 16px;

  box-shadow:
    0 15px 40px
    rgba(0, 0, 0, 0.23);

}


.mobile-sticky-cta div {

  display: flex;

  flex-direction: column;

}


.mobile-sticky-cta span {

  color: white;

  font-size: 0.79rem;
  font-weight: 800;

}


.mobile-sticky-cta strong {

  color:
    rgba(255, 255, 255, 0.56);

  font-size: 0.62rem;

}


.mobile-sticky-cta a {

  flex: 0 0 auto;

  padding: 10px 14px;

  color: white;

  background: var(--purple);

  border-radius: 10px;

  font-size: 0.72rem;
  font-weight: 800;

}



/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

  opacity: 0;

  transform:
    translateY(22px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;

}


.reveal.visible {

  opacity: 1;

  transform:
    translateY(0);

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

  .hero-grid,
  .explanation-grid,
  .audience-grid {
    gap: 48px;
  }


  .feature-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }

}



@media (max-width: 850px) {


  .main-nav {

    position: absolute;

    left: 20px;
    right: 20px;
    top: 70px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 5px;

    padding: 16px;

    background: white;

    border:
      1px solid
      var(--border);

    border-radius: 18px;

    box-shadow: var(--shadow);

  }


  .main-nav.open {
    display: flex;
  }


  .main-nav a {
    padding: 12px;
  }


  .mobile-menu-button {
    display: block;
  }


  .hero {
    padding-top: 70px;
  }


  .hero-grid,
  .explanation-grid,
  .audience-grid,
  .pricing-grid,
  .verdict-box {

    grid-template-columns: 1fr;

  }


  .hero-copy {
    text-align: center;
  }


  .eyebrow {
    margin-inline: auto;
  }


  .hero-subtitle {
    margin-inline: auto;
  }


  .hero-buttons,
  .hero-points {

    justify-content: center;

  }


  .hero-highlight {
    margin-inline: auto;
  }


  .hero-visual {

    max-width: 620px;

    margin-inline: auto;

  }


  .stats-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .stat-card:nth-child(2) {
    border-right: 0;
  }


  .stat-card:nth-child(-n + 2) {

    border-bottom:
      1px solid
      var(--border);

  }


  .pros-cons-grid {

    grid-template-columns: 1fr;

  }


  .verdict-score {

    padding: 35px;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.14);

  }


  .verdict-copy {
    padding: 40px;
  }

}



@media (max-width: 600px) {


  .container {

    width:
      min(
        calc(100% - 28px),
        var(--max-width)
      );

  }


  .section {
    padding: 52px 0;
  }


  h2 {
    font-size: 2.25rem;
  }


  .hero-title {

    font-size:
      clamp(2.55rem, 12vw, 3.6rem);

  }


  .disclosure-bar {
    padding: 7px 0;
  }


  .disclosure-bar p {
    font-size: 0.67rem;
  }


  .nav-container {
    height: 66px;
  }


  .brand-text {
    font-size: 0.86rem;
  }


  .hero {

    padding:
      60px 0
      62px;

  }


  .hero-buttons {

    flex-direction: column;

  }


  .hero-buttons .button {
    width: 100%;
  }


  .app-window {
    transform: none;
  }


  .app-body {
    min-height: 330px;
  }


  .mock-sidebar {
    width: 48px;
  }


  .prompt-card {
    width: 90%;
  }


  .badge-ai {
    right: 5px;
  }


  .badge-cloud {
    left: -5px;
  }


  .steps,
  .audience-cards,
  .feature-grid {

    grid-template-columns: 1fr;

  }


  .stats-grid {

    grid-template-columns:
      1fr 1fr;

  }


  .stat-card {

    padding:
      24px 10px;

  }


  .feature-card {
    min-height: 210px;
  }


  .pros-card,
  .cons-card,
  .pricing-card {

    padding: 26px;

  }


  .verdict-copy,
  .verdict-score {

    padding: 30px;

  }


  .verdict-buttons {

    flex-direction: column;

  }


  .verdict-buttons .button {
    width: 100%;
  }


  .final-cta {

    padding:
      60px 0
      115px;

  }


  .footer-grid,
  .footer-bottom {

    flex-direction: column;

  }


  .mobile-sticky-cta {
    display: flex;
  }


  .demo-attribution {
    padding: 15px;
  }


  .site-illustration {

    margin-top: 32px;

  }


  .site-illustration img {

    border-radius: 18px;

  }


  .illustration-note {

    max-width: 320px;

    font-size: 0.65rem;

  }


  .creator-illustration {
    margin-top: 34px;
  }

}



/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {


  *,
  *::before,
  *::after {

    scroll-behavior: auto !important;

    animation-duration:
      0.01ms !important;

    transition-duration:
      0.01ms !important;

  }


  .reveal {

    opacity: 1;

    transform: none;

  }

}