:root {
  --ink: #141414;
  --ink-soft: #3d3d3d;
  --ink-muted: #767676;
  --canvas: #f5f1eb;
  --canvas-warm: #ede8df;
  --teal: #1a5058;
  --teal-mid: #24717a;
  --teal-bright: #3698a5;
  --teal-pale: #cde6e9;
  --teal-ghost: #eaf4f5;
  --rose: #d4006a;
  --rose-vivid: #f0007a;
  --gold: #c98a00;
  --gold-pale: #f0c040;
  --gold-light: #fde896;
  --gold-deep: #8a5e00;
  --green: #1b8852;
  --white: #fff;
  --line: rgba(20, 20, 20, .13);
  --line-warm: #eadbc8;
  --shadow: 0 16px 48px rgba(20, 20, 20, .11);
  --shadow-soft: 0 8px 28px rgba(20, 20, 20, .08);
  --shadow-teal: 0 18px 52px rgba(26, 80, 88, .20);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12rem, rgba(54, 152, 165, .08), transparent 36rem),
    linear-gradient(180deg, #fffaf4 0%, var(--canvas) 58%, #fffaf2 100%);
  -webkit-font-smoothing: antialiased;
}

button,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  border-bottom: 1px solid rgba(201, 138, 0, .5);
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 250, 244, .82);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 64px);
  line-height: .86;
  color: var(--teal);
  letter-spacing: .01em;
}

.brand-heart {
  color: var(--rose);
  font-family: "Cormorant Garamond", serif;
  font-size: 45px;
  line-height: 1;
}

.brand-product {
  color: var(--rose);
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-bar p {
  margin: 0;
  color: var(--teal);
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-bar p span {
  color: var(--gold);
  margin-right: 10px;
}

.page-shell {
  position: relative;
  width: min(1420px, calc(100% - 52px));
  margin: 0 auto;
  padding: 30px 0 46px;
}

.version-bubble {
  position: absolute;
  top: 8px;
  right: 0;
  z-index: 5;
  border: 1px solid rgba(26, 80, 88, .16);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--teal);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.step-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin: 4px auto 30px;
  padding: 0 34px;
}

.step-item {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 8px;
  min-width: 0;
  border: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #dccdbd;
  border-radius: 50%;
  color: var(--ink-soft);
  background: #fffaf4;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 600;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.step-line {
  position: absolute;
  top: 18px;
  left: 36px;
  right: calc(-100% - 8px);
  height: 2px;
  background: #d8c7b4;
}

.step-item.complete .step-line,
.step-item.active .step-line {
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
}

.step-item.active .step-number,
.step-item.complete .step-number {
  border-color: var(--teal);
  color: #fff;
  background: radial-gradient(circle at 30% 20%, var(--teal-mid), var(--teal));
  box-shadow: 0 8px 18px rgba(26, 80, 88, .18);
}

.step-item strong {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.step-item.active strong,
.step-item.complete strong {
  color: var(--teal);
}

.step-item small {
  max-width: 170px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 42px;
  align-items: start;
}

.wizard-card,
.results-panel,
.refine-panel,
.loading-panel,
.trust-row {
  border: 1px solid var(--line-warm);
  background: rgba(255, 253, 248, .80);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.wizard-card {
  min-height: 560px;
  border-radius: var(--r-sm);
  padding: clamp(26px, 4vw, 52px);
}

.wizard-step {
  min-height: 330px;
}

.step-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(46px, 5.6vw, 68px);
  line-height: 1.03;
}

h2 {
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.08;
}

h3 {
  color: var(--teal);
  font-size: 21px;
  line-height: 1.3;
}

p {
  color: var(--ink-soft);
  line-height: 1.76;
}

.support-line {
  display: flex;
  gap: 14px;
  max-width: 780px;
  margin: 24px 0 26px;
  color: var(--teal);
  font-size: 18px;
  line-height: 1.6;
}

.support-line span {
  flex: 0 0 auto;
  color: var(--rose);
  font-size: 28px;
  line-height: .9;
}

.field {
  display: block;
  margin: 0;
}

.label-line {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  border: 1px solid #dbcbb8;
  border-radius: var(--r-sm);
  outline: none;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, .68);
  line-height: 1.64;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

textarea:focus {
  border-color: var(--teal-mid);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(36, 113, 122, .12);
}

::placeholder {
  color: #817a72;
}

.split-fields {
  display: grid;
  gap: 18px;
}

.split-fields textarea {
  min-height: 114px;
}

.field-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  color: #718187;
  font-size: 12px;
  line-height: 1.45;
}

.char-count {
  flex: 0 0 auto;
  color: var(--ink-muted);
  white-space: nowrap;
}

.progress-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  color: var(--ink-muted);
  font-size: 13px;
}

.progress-row b,
#progressText {
  color: var(--rose);
}

.progress-track {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(26, 80, 88, .08);
}

#progressFill {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), #e84d8c);
  transition: width .2s ease;
}

.wizard-actions,
.button-row,
.idea-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.wizard-actions {
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: var(--r-sm);
  padding: 0 28px;
  overflow: hidden;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease, opacity .14s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.primary {
  min-width: 220px;
  color: #fffaf0;
  background: linear-gradient(160deg, var(--gold-light) 0%, var(--gold-pale) 36%, #d99800 100%);
  box-shadow: 0 10px 26px rgba(180, 130, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .35);
  color: #fff;
  text-shadow: 0 1px 1px rgba(91, 57, 0, .32);
}

.primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .26), transparent);
  transform: skewX(-18deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0%, 55% { left: -80%; }
  72%, 100% { left: 120%; }
}

.ghost,
.secondary {
  border: 1px solid #dac9b6;
  color: var(--teal);
  background: rgba(255, 255, 255, .56);
}

.live-preview {
  position: sticky;
  top: 22px;
  overflow: hidden;
  border: 1px solid rgba(26, 80, 88, .16);
  border-radius: var(--r-sm);
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.preview-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px 28px;
  color: #fff;
  background: linear-gradient(135deg, #0d3237 0%, var(--teal) 70%, #0b3c42 100%);
}

.preview-spark {
  color: var(--gold-light);
  font-size: 36px;
  line-height: 1;
}

.preview-head strong {
  display: block;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.preview-head span:last-child {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 800;
}

.preview-body {
  display: grid;
  gap: 0;
  padding: 24px 26px 26px;
}

.preview-body section {
  border-bottom: 1px solid #eadbc8;
  padding: 0 0 22px;
  margin-bottom: 22px;
}

.preview-body section:last-of-type {
  border-bottom: 0;
}

.preview-body section span {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.preview-body p {
  color: var(--teal);
  font-size: 17px;
  line-height: 1.45;
}

#previewTopic {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.15;
}

.preview-note {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #f2c6d8;
  border-radius: var(--r-sm);
  padding: 14px;
  color: var(--ink-soft);
  background: #fff7f9;
  font-size: 12px;
  line-height: 1.5;
}

.preview-note span {
  color: var(--rose);
  font-size: 31px;
  line-height: 1;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-radius: var(--r-md);
  padding: 18px 26px;
}

.trust-row div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-right: 1px solid #eadbc8;
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #eadbc8;
  border-radius: 50%;
  color: var(--teal);
  font-size: 24px;
  background: rgba(255, 250, 244, .8);
}

.trust-row strong {
  color: var(--teal);
  font-size: 14px;
}

.trust-row div:last-child strong,
.trust-row div:last-child span {
  color: var(--rose);
}

.trust-row small {
  color: var(--ink-soft);
  font-size: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  border-top: 1px solid #eadbc8;
  padding: 24px 4px 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--teal);
  font-weight: 900;
}

.site-footer span {
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--rose);
}

.loading-panel,
.results-panel,
.refine-panel {
  margin-top: 34px;
  border-radius: var(--r-md);
  padding: clamp(24px, 4vw, 42px);
}

.loading-panel {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.loader {
  width: 46px;
  height: 46px;
  border: 4px solid var(--teal-pale);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin .85s linear infinite;
}

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

.timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 80, 88, .16);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--teal);
  background: var(--teal-ghost);
  font-size: 12px;
  font-weight: 900;
}

.result-head {
  max-width: 920px;
}

.result-head p {
  margin-top: 12px;
  font-size: 17px;
}

.ideas {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.idea-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(214, 164, 72, .26);
  border-radius: var(--r-md);
  padding: 24px;
  background: linear-gradient(135deg, #fffaf4 0%, #fff5ec 100%);
  box-shadow: var(--shadow-soft);
}

.idea-kicker {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.idea-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.idea-top h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--teal);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.score {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--r-sm);
  padding: 7px 11px;
  color: #7a5200;
  background: #fff5d8;
  border: 1px solid #f3d487;
  font-size: 12px;
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: .04em;
}

.score-label {
  color: var(--ink-soft);
  font-size: 11px;
}

.idea-promise {
  margin: 0;
  border-left: 4px solid var(--rose);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 18px;
  color: var(--teal);
  font-weight: 800;
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  background: #fff1f5;
}

.idea-insight,
.market-chance,
.validation-box {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(26, 80, 88, .12);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  background: rgba(255, 255, 255, .58);
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.idea-grid div {
  display: grid;
  gap: 6px;
  border-top: 1px solid #eadbc8;
  padding-top: 12px;
}

.idea-insight strong,
.market-chance strong,
.validation-box strong,
.idea-grid strong,
.section-label {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.idea-insight span,
.market-chance span,
.validation-box span,
.idea-grid span {
  color: var(--ink-soft);
  line-height: 1.5;
}

.steps {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.steps li {
  line-height: 1.55;
}

.steps li::marker {
  color: var(--teal);
  font-weight: 900;
}

.idea-actions {
  margin-top: auto;
  justify-content: start;
}

.idea-actions .btn {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 12px;
}

.mkma-pitch {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 26px;
  align-items: center;
  margin-top: 30px;
  border: 1px solid rgba(214, 164, 72, .32);
  border-radius: var(--r-md);
  padding: 28px;
  background: linear-gradient(135deg, #0c4d52 0%, #08373d 100%);
  color: #fffaf4;
  box-shadow: var(--shadow-soft);
}

.mkma-copy {
  display: grid;
  gap: 16px;
}

.mkma-copy .step-kicker {
  color: var(--gold-light);
}

.mkma-copy h3 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.mkma-copy p,
.mkma-copy li {
  color: rgba(255, 250, 244, .84);
  line-height: 1.65;
}

.mkma-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mkma-copy li {
  position: relative;
  padding-left: 24px;
}

.mkma-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 900;
}

.mkma-note {
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}

.mkma-copy small {
  color: rgba(255, 250, 244, .7);
  font-size: 12px;
  font-weight: 800;
}

.mkma-visual {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.mkma-visual img {
  width: min(100%, 260px);
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .22));
}

.mkma-visual strong {
  color: #fff;
  font-size: 16px;
}

.mkma-visual span {
  color: rgba(255, 250, 244, .72);
  font-size: 13px;
  line-height: 1.5;
}

.refine-panel {
  max-width: 900px;
  margin-inline: auto;
}

.selected-idea {
  margin: 20px 0;
  border-left: 4px solid var(--gold-pale);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 18px;
  color: var(--teal);
  background: #fff8e6;
  line-height: 1.6;
}

.button-row {
  margin-top: 16px;
}

.error {
  display: none;
  margin-top: 18px;
  border: 1px solid rgba(212, 0, 106, .28);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  color: #8b0044;
  background: #fff0f7;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .brand-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand-bar p {
    white-space: normal;
  }

  .step-nav {
    grid-template-columns: repeat(5, 190px);
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
  }

  .step-item {
    scroll-snap-align: start;
  }

  .app-layout,
  .mkma-pitch,
  .ideas {
    grid-template-columns: 1fr;
  }

  .live-preview {
    position: static;
  }

  .preview-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .preview-body section {
    margin: 0;
  }

  .preview-note {
    grid-column: 1 / -1;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-row div:nth-child(2) {
    border-right: 0;
  }

  .trust-row div:nth-child(-n + 2) {
    border-bottom: 1px solid #eadbc8;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 680px) {
  .brand-bar {
    min-height: auto;
    padding: 18px 18px 16px;
  }

  .brand-mark {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6px 10px;
  }

  .brand-product {
    grid-column: 1 / -1;
    font-size: 12px;
    letter-spacing: .11em;
  }

  .brand-name {
    font-size: 48px;
  }

  .brand-heart {
    font-size: 36px;
  }

  .brand-bar p {
    font-size: 18px;
  }

  .page-shell {
    width: min(100% - 24px, 1420px);
    padding-top: 20px;
  }

  .version-bubble {
    position: static;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 12px;
  }

  .step-nav {
    gap: 14px;
    grid-template-columns: repeat(5, 146px);
    margin-bottom: 18px;
  }

  .step-item small {
    display: none;
  }

  .step-line {
    right: calc(-100% + 20px);
  }

  .app-layout {
    gap: 18px;
  }

  .wizard-card,
  .results-panel,
  .refine-panel,
  .loading-panel {
    border-radius: var(--r-md);
    padding: 22px;
  }

  .wizard-card {
    min-height: auto;
  }

  .wizard-step {
    min-height: 0;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 36px;
  }

  .support-line {
    font-size: 16px;
  }

  textarea {
    min-height: 150px;
    padding: 16px;
  }

  .field-foot,
  .progress-row,
  .wizard-actions,
  .button-row,
  .idea-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .btn,
  .primary {
    width: 100%;
    min-width: 0;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-body section {
    border-bottom: 1px solid #eadbc8;
    padding-bottom: 18px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    padding: 10px 18px;
  }

  .trust-row div,
  .trust-row div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #eadbc8;
    margin: 0;
    padding: 14px 0;
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 8px;
  }

  .idea-top,
  .idea-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .idea-card {
    padding: 18px;
  }

  .idea-promise {
    font-size: 16px;
  }
}
