/* ==========================================================================
   Everyday Rockstar AI — Have To -> Get To Rewrite
   Brand spec source of truth: BUILD_DOC.md Section 3. This is a dark,
   single-screen conversational flow, mobile-first (most traffic arrives
   from an Instagram bio link on a phone).
   ========================================================================== */

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --purple-bar: #7d62bc;
  --purple-dark: #2e0e42;
  --charcoal: #1A1A1A;
  --charcoal-dark: #2A2A2A;
  --gray-light: #f5f3f5;
  --white: #FFFFFF;
  --text-muted: #666666;

  /* Derived: the brand spec's --text-muted assumes a light background.
     This tool is a single dark-themed flow (matching the signup-gate
     reference), so muted text on dark needs its own value for contrast. */
  --text-on-dark-muted: rgba(255, 255, 255, 0.62);
  --text-on-dark-faint: rgba(255, 255, 255, 0.4);

  --font-heading: "Barlow", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --max-width: 560px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--charcoal-dark);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

/* ---- Header ---- */

.app-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px 20px 8px;
}

/* .app-header's own display:flex above beats the browser's default
   [hidden] { display: none } at equal specificity (author styles always
   win over the UA stylesheet) -- so toggling the hidden property alone
   (app.js, sign-up screen) silently did nothing without this. */
.app-header[hidden] {
  display: none;
}

.wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 15px;
  text-transform: uppercase;
}

.wordmark .reg {
  font-size: 9px;
  vertical-align: super;
}

.start-over {
  position: absolute;
  right: 16px;
  top: 26px;
}

/* ---- Progress ---- */

.progress-track {
  height: 3px;
  width: 100%;
  background: var(--purple-bar);
  opacity: 0.35;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.35s ease;
}

/* ---- Main / screens ---- */

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 48px;
  gap: 20px;
}

.screen {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fade-in 0.28s ease;
}

/* Any element appended directly to #app-main (not just .screen blocks --
   e.g. the reveal screen's separate crank-card block) shares the same
   column width so multiple top-level children stack instead of running
   into a row. */
.app-main > * {
  width: 100%;
  max-width: var(--max-width);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 12px;
}

.heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  margin: 0;
  white-space: pre-line;
}

.body-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
  white-space: pre-line;
}

.body-text.muted {
  color: var(--text-on-dark-muted);
}

/* Reflection fades in fully once its fetch resolves, on the dedicated
   "reflect" screen (Addendum 1 A1.2) -- the user then taps Continue
   themselves, this never auto-advances. */
.reflection-slot {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reflection-slot.filled {
  opacity: 1;
}

/* Thinking indicator -- simple pulsing dots shown while the reflection
   call is in flight (Addendum 1 A1.2 item 1). */
.thinking-indicator {
  display: flex;
  gap: 6px;
  padding: 8px 0;
}

.thinking-indicator span {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.thinking-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.thinking-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse-dot {
  0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

/* ---- "What This Is Costing You" screen (Addendum 1, A1.3) ---- */

.have-to-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.have-to-row {
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.have-to-row.flagged {
  border-left-color: var(--gold);
}

.flag-label {
  color: var(--gold);
}

.have-to-text {
  font-weight: 600;
}

.have-to-reflection {
  font-size: 14px;
}

.crash-crank-heading {
  font-size: 18px;
  margin-top: 4px;
}

.crash-crank-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.crash-col,
.crank-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 8px;
  padding: 16px;
}

.crash-col {
  background: rgba(255, 255, 255, 0.05);
}

.crank-col {
  background: rgba(184, 134, 11, 0.1);
}

.crank-col .eyebrow {
  color: var(--gold-light);
}

@media (min-width: 640px) {
  .crash-crank-table {
    flex-direction: row;
  }

  .crash-col,
  .crank-col {
    flex: 1;
  }
}

/* ---- Forms ---- */

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* Consent checkbox row -- checkbox + inline label, unlike .field's
   stacked label-above-input layout. */
.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.field-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.field-checkbox label {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-on-dark-muted);
}

/* Honeypot -- display:none. REVISED 2026-08-10: this used to be
   off-screen positioning instead, specifically to defeat bots that
   check computed style and skip display:none fields -- that backfired
   against a much more common case, browser autofill, which doesn't
   reliably skip off-screen-but-laid-out fields the way it skips
   display:none ones. A real user got auto-rejected as a bot because of
   it. display:none is skipped by both autofill AND the least
   sophisticated form-filling bots (which don't render CSS at all and
   fill every <input> regardless of computed style) -- it only fails
   against a bot capable enough to run a real browser and check style,
   which is more than this free tool's threat model warrants. */
.honeypot {
  display: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-on-dark-faint);
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

textarea {
  resize: vertical;
  min-height: 96px;
}

/* ---- Buttons ---- */

.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  border-radius: 6px;
  padding: 15px 22px;
  border: 2px solid var(--gold);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover:not(:disabled) {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(184, 134, 11, 0.12);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Callouts / cards ---- */

.callout {
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 18px;
  background: rgba(184, 134, 11, 0.08);
}

.callout .heading {
  font-size: 18px;
  color: var(--gold);
}

.crank-card {
  background: var(--purple-dark);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.crank-card .eyebrow {
  color: var(--gold-light);
}

.crank-card .quote {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
}

.crank-card .dimension {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  font-size: 15px;
}

.fine-print {
  font-size: 12px;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  text-align: center;
}

/* ---- Misc ---- */

.link-muted {
  background: none;
  border: none;
  color: var(--text-on-dark-muted);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}

.link-muted:hover {
  color: var(--white);
}

.error-text {
  color: #e7a3a3;
  font-size: 14px;
  line-height: 1.5;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(26, 26, 26, 0.35);
  border-top-color: var(--charcoal);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Footer ---- */

.app-footer {
  text-align: center;
  padding: 18px 20px 28px;
  font-size: 11px;
  color: var(--text-on-dark-faint);
}

@media (min-width: 640px) {
  .heading {
    font-size: 26px;
  }
}

/* Content column stays at the mobile-tuned 560px cap up through tablet
   widths, then stretches wider on desktop (2026-08-10, Heather's
   request) -- not a separate layout, just the same column growing.
   950px matches the breakpoint the sign-up screen's two-column layout
   already uses below, so "desktop mode" kicks in at one consistent
   viewport width across the app rather than two slightly different
   ones. */
@media (min-width: 950px) {
  :root {
    --max-width: 960px;
  }
}

/* ==========================================================================
   Brand v2 -- new visual direction, 2026-08-10 (sign-up screen), extended
   2026-08-10 same day to the results-screen "next steps" section
   (Addendum 2). Originally .signup-v2, RENAMED to .brand-v2 when the
   results screen became the second consumer -- this is now a shared
   system (colors, Inter type, the su-cta button style, waveform
   decorations), not a sign-up-only thing, so it needed a name that says
   that. Still entirely scoped under .brand-v2 with su-/ns- prefixed
   class names so nothing here can collide with or leak into the shared
   classes every other screen still uses (.field, .btn, .eyebrow,
   .heading, etc.). su- = shared across both consumers (buttons, colors,
   waveform decoration) or sign-up-specific layout; ns- = results-screen
   ("next steps") specific layout. Deliberately NOT edge-to-edge/full-
   viewport like the reference files' own standalone .page background --
   bounded within the existing #app-main padding on both screens, no
   fragile viewport-breakout hack. The app's shared header/footer
   (wordmark bar, copyright line) are still on the original theme on
   every screen, not touched -- ask if/when you want those redone too.
   ========================================================================== */

.brand-v2 {
  --su-black: #050505;
  --su-charcoal: #101012;
  --su-purple: #6f36a8;
  --su-purple-bright: #9a4ddd;
  --su-purple-dark: #1c1029;
  --su-gold: #d39a00;
  --su-gold-bright: #f2b91f;
  --su-gold-soft: #d9aa32;
  --su-body: #c4c2c8;
  --su-muted: #8e8b94;

  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;

  border-radius: 20px;
  padding: 40px 28px;
  background:
    radial-gradient(circle at 82% 46%, rgba(91, 39, 135, 0.20), transparent 38%),
    radial-gradient(circle at 15% 80%, rgba(77, 25, 120, 0.12), transparent 35%),
    var(--su-black);
}

.app-main > .brand-v2 {
  max-width: 1180px;
}

/* Sign-up wordmark -- matches Heather's reference image (2026-08-11).
   Replaces the plain shared header on this screen only (see appHeader
   toggling in app.js); every other screen keeps the original. */
.su-wordmark {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 28px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.su-wordmark-everyday {
  color: var(--white);
}

.su-wordmark-rockstar {
  color: var(--su-gold-bright);
  margin-left: 0.35em;
}

.su-wordmark-reg {
  font-size: 0.4em;
  vertical-align: super;
  margin-left: 0.1em;
}

.su-wordmark-glow {
  width: min(100%, 720px);
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--su-purple-bright) 32%,
    #ffffff 56%,
    var(--su-gold-bright) 74%,
    transparent 100%
  );
  box-shadow: 0 0 22px 3px rgba(242, 185, 31, 0.45), 0 0 26px 4px rgba(154, 77, 221, 0.35);
}

.su-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.su-hero-copy {
  position: relative;
  padding-bottom: 150px;
}

.su-eyebrow {
  margin-bottom: 22px;
  color: var(--su-gold-bright);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.su-heading {
  max-width: 600px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.su-gold-rule {
  width: 56px;
  height: 3px;
  margin: 24px 0;
  border-radius: 99px;
  background: var(--su-gold-bright);
}

.su-subcopy {
  max-width: 520px;
  margin: 0;
  color: var(--su-body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.su-cred {
  margin-top: 22px;
  color: #a8a1af;
  font-size: 14px;
  line-height: 1.4;
}

.su-cred strong {
  color: #c7b6d4;
  font-weight: 500;
}

/* --- Waveform motif --- */

.su-signal-wrap {
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: -10px;
  height: 160px;
  pointer-events: none;
  opacity: 0.95;
  overflow: visible;
}

.su-signal-wrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-v2 .signal-purple {
  filter: drop-shadow(0 0 8px rgba(146, 72, 208, 0.65)) drop-shadow(0 0 20px rgba(111, 54, 168, 0.25));
}

.brand-v2 .signal-gold {
  filter: drop-shadow(0 0 8px rgba(242, 185, 31, 0.7)) drop-shadow(0 0 26px rgba(211, 154, 0, 0.28));
}

.brand-v2 .transition-glow {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 28px rgba(242, 185, 31, 0.8))
    drop-shadow(0 0 42px rgba(154, 77, 221, 0.6));
}

@keyframes su-pulse-signal {
  0%, 100% { opacity: 0.78; }
  50% { opacity: 1; }
}

.brand-v2 .signal-line {
  animation: su-pulse-signal 5s ease-in-out infinite;
}

/* The bloom "grows" where purple meets gold -- a slow scale+opacity
   pulse on the soft outer glow circle, separate from (and slower than)
   the line pulse above so the two don't read as perfectly synced. */
@keyframes su-bloom-grow {
  0%, 100% { transform: scale(0.85); opacity: 0.55; }
  50% { transform: scale(1.15); opacity: 0.95; }
}

.brand-v2 .transition-bloom {
  transform-box: fill-box;
  transform-origin: center;
  animation: su-bloom-grow 4s ease-in-out infinite;
}

/* --- Form card --- */

.su-form-card {
  position: relative;
  padding: 40px 28px 32px;
  border: 1px solid rgba(218, 162, 25, 0.82);
  border-radius: 20px;
  background:
    radial-gradient(circle at 75% 20%, rgba(84, 39, 120, 0.19), transparent 40%),
    linear-gradient(145deg, rgba(20, 19, 24, 0.98), rgba(12, 9, 16, 0.98));
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(89, 39, 126, 0.06);
}

.su-form-heading {
  text-align: center;
}

.su-form-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.su-small-rule {
  width: 80px;
  height: 2px;
  margin: 16px auto 20px;
  background: var(--su-gold-bright);
}

.su-form-heading p {
  max-width: 440px;
  margin: 0 auto 36px;
  color: var(--su-body);
  font-size: 15px;
  line-height: 1.55;
}

.su-field {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.su-field label {
  color: #c2bec8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.su-field input {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(193, 184, 204, 0.4);
  border-radius: 9px;
  outline: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), rgba(80, 31, 107, 0.065));
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.su-field input::placeholder {
  color: #86818d;
}

.su-field input:focus {
  border-color: var(--su-purple-bright);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(98, 42, 135, 0.11));
  box-shadow: 0 0 0 3px rgba(139, 68, 194, 0.12), 0 0 22px rgba(104, 45, 149, 0.14);
}

.su-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 26px;
  color: #b4b0b8;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.su-consent input {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--su-gold-bright);
  cursor: pointer;
}

.su-cta {
  width: 100%;
  min-height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 207, 70, 0.8);
  border-radius: 10px;
  cursor: pointer;
  color: #121212;
  text-decoration: none; /* .su-cta is used on both <button> (sign-up) and <a> (results-screen cards) -- only the latter needs this reset */
  background: linear-gradient(180deg, #f5c230, #d69a05);
  box-shadow: 0 8px 26px rgba(211, 154, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.35);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.su-cta:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(211, 154, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.4);
}

.su-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.su-cta-arrow {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.su-cta:hover:not(:disabled) .su-cta-arrow {
  transform: translateX(5px);
}

.su-privacy {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #8e8a94;
  font-size: 12px;
}

.su-lock {
  width: 19px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--su-gold-bright);
  border: 1px solid var(--su-gold-bright);
  border-radius: 6px;
}

@media (min-width: 950px) {
  .su-hero {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
  }

  .su-form-card {
    padding: 48px 40px 36px;
  }
}

/* ==========================================================================
   Results screen "next steps" section -- Addendum 2, 2026-08-10.
   Second consumer of the .brand-v2 system (see the big comment above).
   Replaces the old ctaBlock (a single deeperBridge paragraph + two
   plain buttons) with a header block + a two-card grid. ns- prefix for
   everything specific to this layout; reuses .su-eyebrow, .su-cta, and
   the shared waveform decoration rules (.signal-line etc.) rather than
   duplicating them.
   ========================================================================== */

.ns-subhead {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(19px, 2.6vw, 26px);
  font-weight: 600;
  line-height: 1.35;
}

.ns-body {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--su-body);
  font-size: 16px;
  line-height: 1.65;
}

/* Same waveform asset as the sign-up hero, different placement -- a
   normal in-flow divider here rather than an absolutely-positioned
   overlay, since it sits under a block of copy instead of behind it. */
.ns-signal-wrap {
  width: 100%;
  height: 110px;
  margin-top: 30px;
  overflow: visible;
}

.ns-signal-wrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ns-cards-header {
  margin-top: 44px;
}

.ns-cards-headline {
  margin: 0;
  color: var(--white);
  font-size: clamp(23px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ns-cards-subhead {
  margin: 8px 0 0;
  color: var(--su-body);
  font-size: 16px;
}

.ns-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ns-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px;
  border: 1px solid rgba(218, 162, 25, 0.35);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(20, 19, 24, 0.9), rgba(10, 8, 14, 0.95));
}

.ns-card-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--su-gold-bright);
  color: var(--su-gold-bright);
  box-shadow: 0 0 0 6px rgba(154, 77, 221, 0.14);
  margin-bottom: 20px;
}

.ns-card-title {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.ns-card-description {
  margin: 10px 0 0;
  color: var(--su-body);
  font-size: 15px;
  line-height: 1.6;
}

.ns-card-divider {
  width: 100%;
  height: 1px;
  margin: 22px 0 16px;
  background: rgba(255, 255, 255, 0.12);
}

.ns-card-tag {
  color: var(--su-purple-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.ns-card .su-cta {
  margin-top: auto;
  width: 100%;
}

@media (min-width: 768px) {
  .ns-cards {
    grid-template-columns: 1fr 1fr;
  }
}
