:root {
  --bg: #0a0809;
  --card: #151011;
  --line: #352226;
  --text: #fffafa;
  --muted: #b9aaad;
  --pink: #ef233c;
  --scarlet: #ef233c;
  --scarlet-bright: #ff5364;
  --scarlet-dark: #8f101e;
  --light: #f2edef;
}

body {
  background: var(--bg);
}

body .hero {
  background:
    radial-gradient(circle at 83% 40%, rgba(239, 35, 60, .13), transparent 27%),
    radial-gradient(ellipse 46% 55% at 54% 13%, rgba(143, 16, 30, .7), transparent 72%);
}

body .hero-demo {
  border-color: rgba(255, 83, 100, .35);
  box-shadow: 0 28px 80px rgba(95, 5, 18, .22);
}

body .pink-button {
  color: #fff;
  background: linear-gradient(135deg, var(--scarlet-bright), var(--scarlet));
  box-shadow: 0 12px 32px rgba(239, 35, 60, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

body .pink-button:hover,
body .pink-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 17px 38px rgba(239, 35, 60, .34);
}

body .button {
  transition: transform .2s ease, box-shadow .2s ease;
}

body .button:hover,
body .button:focus-visible {
  transform: translateY(-2px);
}

body .logo-mark {
  background: linear-gradient(135deg, var(--scarlet-bright), var(--scarlet));
}

body .cards {
  display: block;
  width: min(100%, 1380px);
  max-width: 1380px;
  margin: 0 auto;
  padding: 68px 5vw 112px;
}

.cards-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  margin-bottom: 46px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--scarlet-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.section-label::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: '';
}

.cards-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(36px, 4vw, 57px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.cards-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  grid-template-rows: repeat(2, minmax(245px, auto));
  gap: 18px;
}

body .cards .feature-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(239, 35, 60, .1), transparent 34%),
    linear-gradient(145deg, #181213, #100d0e);
  text-align: left;
  isolation: isolate;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

body .cards .feature-card::before {
  position: absolute;
  inset: auto -12% -44% 22%;
  z-index: -1;
  height: 70%;
  border-radius: 50%;
  background: rgba(239, 35, 60, .07);
  filter: blur(55px);
  content: '';
}

body .cards .feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 83, 100, .32);
  box-shadow: 0 28px 65px rgba(76, 5, 15, .2);
}

body .cards .feature-card-main {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  min-height: 508px;
  padding: 42px 46px;
  border-color: rgba(255, 83, 100, .22);
  background:
    linear-gradient(150deg, rgba(239, 35, 60, .16), transparent 38%),
    radial-gradient(circle at 90% 88%, rgba(239, 35, 60, .14), transparent 38%),
    #151011;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 83, 100, .2);
  border-radius: 999px;
  color: #d8c4c7;
  background: rgba(255, 255, 255, .025);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

body .cards .icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 83, 100, .26);
  border-radius: 15px;
  color: var(--scarlet-bright);
  background: rgba(239, 35, 60, .08);
  box-shadow: inset 0 0 22px rgba(239, 35, 60, .08), 0 0 24px rgba(239, 35, 60, .1);
  font-size: 25px;
  text-shadow: none;
}

.feature-eyebrow {
  display: block;
  margin-bottom: 11px;
  color: var(--scarlet-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

body .cards .feature-card h2 {
  max-width: 520px;
  margin-bottom: 15px;
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

body .cards .feature-card p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

body .cards .feature-card-main p {
  font-size: 16px;
}

body .cards .feature-card p + p {
  margin-top: 14px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
  padding-top: 34px;
}

.feature-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  color: #dfd3d5;
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
  font-weight: 700;
}

body .cards .feature-card-safety {
  background:
    radial-gradient(circle at 91% 14%, rgba(239, 35, 60, .13), transparent 33%),
    linear-gradient(145deg, #181213, #100d0e);
}

.feature-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 83, 100, .24);
  border-radius: 22px;
  background:
    linear-gradient(110deg, rgba(239, 35, 60, .14), transparent 55%),
    #121011;
}

.feature-cta-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--scarlet);
  box-shadow: 0 10px 30px rgba(239, 35, 60, .3);
  font-size: 22px;
}

.feature-cta small {
  display: block;
  margin-bottom: 5px;
  color: var(--scarlet-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.feature-cta strong {
  display: block;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.25;
}

body .feature-cta .pink-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  padding: 15px 20px;
}

body .feature-cta .pink-button span {
  font-size: 18px;
}

body .faq summary::after {
  color: var(--scarlet-bright);
}

body .cta {
  background: radial-gradient(ellipse at center, #8f1424 0%, #2a1115 46%, #0a0809 76%);
}

body footer {
  background: #1b1718;
}

body .community {
  padding-bottom: 42px;
}

body .dark-section {
  max-width: 1440px;
  padding: 38px 7vw 70px;
}

body .dark-section .section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 54px;
  padding: 52px 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 83, 100, .18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 4% 0%, rgba(239, 35, 60, .17), transparent 34%),
    linear-gradient(125deg, #171112, #0f0d0e 68%);
  text-align: left;
  isolation: isolate;
}

body .dark-section .section-heading::after {
  position: absolute;
  right: -90px;
  bottom: -150px;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 83, 100, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(239, 35, 60, .025), 0 0 0 90px rgba(239, 35, 60, .018);
  content: '';
}

body .dark-section .section-heading h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 59px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

body .dark-section .section-heading h2 em {
  display: block;
  color: var(--scarlet-bright);
  font-style: normal;
}

body .dark-section .section-heading p,
body .dark-section .section-heading p:last-of-type {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.prompt-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
}

.prompt-flow span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f4e9eb;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.prompt-flow b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 83, 100, .24);
  border-radius: 50%;
  color: var(--scarlet-bright);
  background: rgba(239, 35, 60, .08);
  font-size: 9px;
}

.prompt-flow i {
  color: #6e555a;
  font-style: normal;
}

body .section-heading-copy .pink-button {
  display: inline-flex;
  padding: 14px 20px;
}

body .dark-section .showcase,
body .dark-section .showcase.flip {
  display: grid;
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 70px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 22px;
  padding: 34px 42px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 45%, rgba(239, 35, 60, .065), transparent 29%),
    #100e0f;
}

body .dark-section .showcase.flip {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
  background:
    radial-gradient(circle at 92% 45%, rgba(239, 35, 60, .065), transparent 29%),
    #100e0f;
}

body .dark-section .showcase:last-child {
  margin-bottom: 0;
}

body .dark-section .showcase .compare {
  width: min(100%, 290px) !important;
}

body .dark-section .showcase > div:not(.compare) {
  max-width: 720px;
  padding-top: 0;
}

body .dark-section .showcase h2 {
  margin-bottom: 17px;
  font-size: clamp(30px, 3.1vw, 42px);
}

body .dark-section .showcase p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.65;
}

body .dark-section .showcase .button {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .cards-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body .cards .feature-card-main {
    grid-row: auto;
    min-height: 420px;
  }

  body .dark-section .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 800px) {
  body .cards {
    padding: 46px 22px 74px;
  }

  .cards-heading {
    margin-bottom: 30px;
  }

  .cards-heading h2 {
    font-size: 36px;
  }

  .cards-heading > p {
    font-size: 15px;
  }

  body .cards .feature-card,
  body .cards .feature-card-main {
    min-height: 0;
    padding: 29px 26px;
    border-radius: 22px;
  }

  body .cards .feature-card-main {
    min-height: 390px;
  }

  .feature-cta {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 22px;
  }

  body .feature-cta .pink-button {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
    margin-top: 4px;
  }

  body .community {
    padding-bottom: 30px;
  }

  body .dark-section {
    padding: 30px 22px 56px;
  }

  body .dark-section .section-heading {
    gap: 22px;
    margin-bottom: 28px;
    padding: 30px 26px;
    border-radius: 24px;
  }

  body .dark-section .section-heading h2 {
    font-size: 38px;
  }

  .prompt-flow {
    flex-wrap: wrap;
  }

  body .section-heading-copy .pink-button {
    justify-content: center;
    width: 100%;
  }

  body .dark-section .showcase,
  body .dark-section .showcase.flip {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 16px;
    padding: 27px 24px;
    border-radius: 23px;
  }

  body .dark-section .showcase.flip > div:first-child {
    order: 2;
  }

  body .dark-section .showcase .compare {
    align-self: center;
    width: min(100%, 270px) !important;
  }
}

/* Light workflow and use-case sections */
body .light-section {
  padding: 82px 6vw 66px;
  background:
    radial-gradient(circle at 10% 0%, rgba(239, 35, 60, .07), transparent 24%),
    #f4eff0;
  text-align: left;
}

.light-heading,
.use-cases-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: end;
  max-width: 1280px;
  margin: 0 auto 38px;
}

.light-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: #d71932;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.light-label::before {
  width: 27px;
  height: 1px;
  background: currentColor;
  content: '';
}

body .light-section .light-heading h2,
body .use-cases .use-cases-heading h2 {
  margin: 0;
  color: #151012;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

body .light-section .light-heading > p,
body .use-cases .use-cases-heading > p {
  max-width: 500px;
  margin: 0 0 3px;
  color: #6c5e61;
  font-size: 15px;
  line-height: 1.7;
}

body .light-section .steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

body .light-section .steps .step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(68, 34, 40, .1);
  border-radius: 27px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 45px rgba(63, 34, 40, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

body .light-section .steps .step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 35, 60, .22);
  box-shadow: 0 24px 55px rgba(76, 26, 36, .1);
}

body .light-section .step-art {
  position: relative;
  height: 166px;
  min-height: 166px;
  padding: 22px;
  overflow: hidden;
  border-radius: 20px;
  justify-content: space-between;
  background: #1a1214;
}

body .light-section .step-art::after {
  position: absolute;
  right: -42px;
  bottom: -78px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 27px rgba(255, 255, 255, .045), 0 0 0 54px rgba(255, 255, 255, .025);
  content: '';
}

body .light-section .step-art.blue {
  background: linear-gradient(145deg, #35151b, #ef233c);
}

body .light-section .step-art.mint {
  background: linear-gradient(145deg, #231416, #b8172b 72%, #ef5365);
}

body .light-section .step-art.gold {
  background: linear-gradient(145deg, #481a21, #d9364a 66%, #ff7785);
}

body .light-section .step-art b {
  position: relative;
  z-index: 1;
  font-size: 46px;
  line-height: 1;
  opacity: 1;
}

body .light-section .step-art span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.step-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px 19px 19px;
}

body .light-section .steps h3 {
  margin: 0 0 13px;
  color: #171113;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

body .light-section .steps p {
  margin: 0;
  color: #675a5d;
  font-size: 13.5px;
  line-height: 1.65;
}

body .light-section .steps p + p {
  margin-top: 11px;
}

.step-tags,
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.step-tags {
  margin-top: auto;
  padding-top: 20px;
}

.step-tags span,
.case-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(100, 51, 60, .12);
  border-radius: 999px;
  color: #714a51;
  background: #f9f3f4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .02em;
}

body .use-cases {
  padding: 62px 6vw 96px;
  background: #f4eff0;
  text-align: left;
}

.use-cases-heading {
  align-items: end;
  margin-bottom: 32px;
  padding-top: 4px;
  border-top: 1px solid rgba(71, 42, 47, .1);
}

.use-cases-heading .light-label {
  margin-top: 38px;
}

body .use-cases .case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

body .use-cases .case-list .use-row,
body .use-cases .case-list .use-row.reverse,
body .use-cases .case-list .use-row:last-child {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 27px;
  align-items: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(68, 34, 40, .1);
  border-radius: 27px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 45px rgba(63, 34, 40, .05);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

body .use-cases .case-list .use-row:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 35, 60, .2);
  box-shadow: 0 24px 55px rgba(76, 26, 36, .09);
}

body .use-cases .case-list .use-row.reverse .static-media {
  order: -1;
}

body .use-cases .case-list .static-media,
body .use-cases .case-list .use-row:last-child .case-art {
  width: 185px !important;
  height: 100%;
  min-height: 380px;
  align-self: stretch;
  border-radius: 19px;
  box-shadow: none;
  aspect-ratio: auto;
}

body .use-cases .case-list .static-media img {
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: cover;
}

.case-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 14px 9px 10px 0;
}

body .use-cases .case-list .use-row:last-child .case-copy {
  max-width: none;
  justify-self: stretch;
  text-align: left;
}

.case-label {
  display: block;
  margin-bottom: 9px;
  color: #d71932;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

body .use-cases .case-list .use-row h2,
body .use-cases .case-list .use-row:last-child h2 {
  margin: 0 0 13px;
  color: #171113;
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

body .use-cases .case-list .use-row p,
body .use-cases .case-list .use-row:last-child p {
  margin: 0;
  color: #675a5d;
  font-size: 13.5px;
  line-height: 1.62;
  text-align: left;
}

body .use-cases .case-list .use-row p + p {
  margin-top: 10px;
}

.case-tags {
  margin-top: 17px;
}

body .use-cases .case-list .use-row .button {
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 15px;
  border-radius: 10px;
  font-size: 10px;
}

@media (max-width: 1120px) {
  body .use-cases .case-list {
    grid-template-columns: 1fr;
  }

  body .use-cases .case-list .use-row,
  body .use-cases .case-list .use-row.reverse,
  body .use-cases .case-list .use-row:last-child {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  body .use-cases .case-list .static-media,
  body .use-cases .case-list .use-row:last-child .case-art {
    width: 220px !important;
    min-height: 330px;
  }
}

@media (max-width: 800px) {
  body .light-section {
    padding: 62px 22px 48px;
  }

  .light-heading,
  .use-cases-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 27px;
  }

  body .light-section .light-heading h2,
  body .use-cases .use-cases-heading h2 {
    font-size: 36px;
  }

  body .light-section .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body .light-section .step-art {
    height: 145px;
    min-height: 145px;
  }

  body .use-cases {
    padding: 46px 22px 72px;
  }

  .use-cases-heading .light-label {
    margin-top: 27px;
  }

  body .use-cases .case-list .use-row,
  body .use-cases .case-list .use-row.reverse,
  body .use-cases .case-list .use-row:last-child {
    display: grid;
    grid-template-columns: 155px minmax(0, 1fr);
    gap: 20px;
    margin: 0;
    padding: 14px;
  }

  body .use-cases .case-list .static-media,
  body .use-cases .case-list .use-row:last-child .case-art {
    order: -1;
    width: 155px !important;
    min-height: 350px;
  }

  .case-copy {
    order: 1;
    padding-top: 9px;
  }
}

@media (max-width: 560px) {
  body .use-cases .case-list .use-row,
  body .use-cases .case-list .use-row.reverse,
  body .use-cases .case-list .use-row:last-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  body .use-cases .case-list .static-media,
  body .use-cases .case-list .use-row:last-child .case-art {
    width: 100% !important;
    height: 320px;
    min-height: 320px;
  }

  .case-copy {
    width: 100%;
    padding: 4px 5px 7px;
  }

  body .use-cases .case-list .use-row .button {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .cards .feature-card,
  body .button,
  body .pink-button {
    transition: none;
  }
}
