:root {
  color: #2c3150;
  background: #fffaf0;
  font-family:
    Nunito,
    PingFang SC,
    Microsoft YaHei,
    system-ui,
    sans-serif;
  font-synthesis: none;
  --ink: #2c3150;
  --muted: #6e7188;
  --cream: #fffaf0;
  --paper: #fffef9;
  --coral: #ff756d;
  --yellow: #ffc94d;
  --mint: #4fc8af;
  --sky: #68bff3;
  --purple: #8b72df;
  --line: #eadfcd;
}
.mode-selector {
  margin-bottom: 18px;
  padding: 13px;
  border: 1px solid #ead7bc;
  border-radius: 18px;
  background: #fff8df;
}
.mode-selector-label {
  display: block;
  margin-bottom: 9px;
  color: #7a6a4d;
  font-size: 12px;
  font-weight: 1000;
}
.mode-selector-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mode-option {
  min-height: 42px;
  border: 1px solid #eadfcd;
  border-radius: 12px;
  color: #5f6177;
  background: #fffef9;
  font-size: 13px;
  font-weight: 1000;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.mode-option:hover {
  transform: translateY(-1px);
  border-color: #eab59b;
}
.mode-option.active {
  border-color: #ff756d;
  color: #fff;
  background: linear-gradient(135deg, #e65f59, #ff9470);
  box-shadow: 0 8px 16px #ff756d33;
}
.cognitive-panel-head h2 {
  color: #2c3150;
}
.cognitive-step-note {
  margin-top: 16px;
  padding: 12px 13px;
  border-left: 4px solid var(--mint);
  border-radius: 12px;
  color: #3d7167;
  background: #e9faf5;
  font-size: 12px;
  line-height: 1.65;
}
.cognitive-topic-fields {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.cognitive-topic-field {
  margin-top: 0;
}
.cognitive-topic-field-full {
  grid-column: 1 / -1;
}
.cognitive-photo-block {
  background: #f6fffb;
  border-color: #ccefe3;
}
.cognitive-photo-copy {
  align-self: center;
  margin: 0;
  color: #6e7188;
  font-size: 12px;
  line-height: 1.65;
}
.cognitive-action-row button {
  padding: 0 9px;
  font-size: 12px;
}
@media (max-width: 520px) {
  .mode-selector-buttons {
    grid-template-columns: 1fr;
  }
  .cognitive-photo-copy {
    align-self: start;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
        circle at 12px 12px,
        rgba(255, 201, 77, 0.12) 2px,
        transparent 2.5px
      )
      0 0 / 30px 30px,
    var(--cream);
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  border: 0;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}
textarea {
  resize: vertical;
}
.web-shell {
  min-height: 100vh;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - 1440px) / 2));
  background: #fffaf0e6;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 223, 205, 0.8);
}
.brand,
.topnav button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
}
.brand {
  padding-left: 4px;
  font-size: 17px;
}
.brand-mascot {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 46% 54%;
  background: #fff0ec;
  box-shadow: inset 0 -3px #ff756d24;
  font-size: 23px;
}
.topnav {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.topnav button:hover {
  background: #fffc;
  color: var(--purple);
}
.topnav .primary,
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #ff9270);
  box-shadow: 0 11px 22px #ff756d40;
}
.hero-section.web-hero {
  position: relative;
  padding: 30px 28px 0;
  overflow: hidden;
}
.hero-section.web-hero:before,
.hero-section.web-hero:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}
.hero-section.web-hero:before {
  width: 220px;
  height: 72px;
  left: -55px;
  top: 92px;
  background: #68bff321;
  transform: rotate(-10deg);
}
.hero-section.web-hero:after {
  width: 180px;
  height: 180px;
  right: -65px;
  bottom: 12px;
  background: #4fc8af1f;
}
.hero-content.web-hero-content {
  position: relative;
  max-width: 1384px;
  min-height: 520px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #f0ddc5;
  border-radius: 38px;
  background: #fff5dc;
  box-shadow: 0 24px 60px #5b41251c;
}
.hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy-card {
  position: relative;
  z-index: 2;
  width: min(585px, 52%);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 18px 58px 58px;
}
.hero-kicker,
.credits-header > div > span,
.section-head > span,
.eyebrow {
  color: #d95755;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.11em;
}
.web-hero-content h1 {
  max-width: 560px;
  margin: 15px 0 18px;
  color: var(--ink);
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.web-hero-content h1 > span {
  display: block;
}
.web-hero-content h1 em {
  display: block;
  color: #e65f59;
  font-style: normal;
}
.web-hero-content p,
.credits-header p {
  max-width: 510px;
  margin: 0;
  color: #5f6177;
  font-size: 16px;
  line-height: 1.75;
}
.hero-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-chip-row span,
.status,
.suite-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #56586b;
  background: #ffffffc7;
  border: 1px solid rgba(229, 209, 180, 0.7);
  font-size: 12px;
  font-weight: 900;
}
.hero-action {
  align-self: flex-start;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 26px #2c315033;
  font-weight: 900;
}
.hero-action span {
  margin-left: 12px;
  font-size: 20px;
}
.how-strip {
  max-width: 1050px;
  margin: 24px auto 4px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 999px;
  background: #ffffffe0;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px #4d3c250f;
}
.how-strip > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.how-strip b {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px 15px;
  color: #fff;
  background: var(--coral);
  transform: rotate(-3deg);
}
.how-strip div:nth-of-type(2) b {
  background: var(--yellow);
  color: #725517;
}
.how-strip div:nth-of-type(3) b {
  background: var(--mint);
}
.how-strip span {
  color: var(--muted);
  font-size: 12px;
}
.how-strip strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}
.how-strip i {
  color: #c7b99f;
  font-style: normal;
  font-size: 21px;
}
.workspace,
.history-page,
.credits-page-web {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 28px 52px;
}
.workspace {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 22px;
  align-items: start;
}
.workspace-sidebar {
  position: sticky;
  top: 92px;
}
.panel,
.plan-card,
.suite-card,
.package-card {
  background: #fffef9f5;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 38px #57422813;
}
.panel {
  padding: 22px;
}
.panel-head h2 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.25;
}
.panel-head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.animal-ideas {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}
.animal-idea {
  min-width: 0;
  padding: 9px 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-radius: 18px;
  color: var(--ink);
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.animal-idea:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 9px 18px #3e2f1e1a;
}
.animal-idea span {
  font-size: 28px;
}
.animal-idea strong {
  font-size: 11px;
  white-space: nowrap;
}
.animal-idea.coral {
  background: #fff0ec;
  border-color: #ffd2ca;
}
.animal-idea.yellow {
  background: #fff7d8;
  border-color: #f9df8b;
}
.animal-idea.sky {
  background: #eaf7ff;
  border-color: #bee5fa;
}
.animal-idea.mint {
  background: #e8faf5;
  border-color: #b5e9dc;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
  color: #3b3d57;
  font-size: 13px;
  font-weight: 900;
}
.field > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.idea-btn {
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #f6c3a9;
  border-radius: 999px;
  color: #b85d48;
  background: #fff4ed;
  font-size: 11px;
  font-weight: 900;
}
.idea-btn:disabled {
  opacity: 0.6;
}
.idea-analysis {
  margin-top: 13px;
  padding: 14px;
  border: 1px solid #d9e8e1;
  border-radius: 16px;
  color: #40564e;
  background: linear-gradient(135deg, #f2fbf7, #fffaf0);
  line-height: 1.65;
}
.idea-analysis-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: #24705e;
  font-size: 12px;
  font-weight: 900;
}
.idea-analysis-head strong {
  color: #b85d48;
  font-size: 14px;
}
.idea-analysis-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px;
  margin-top: 9px;
  font-size: 12px;
}
.idea-analysis-row b {
  color: #7d6b51;
}
.idea-analysis-row span {
  color: #53645e;
}
.field-dot {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-size: 11px;
}
.field-dot.coral {
  background: var(--coral);
}
.field-dot.yellow {
  background: var(--yellow);
  color: #6d5014;
}
.field-dot.mint {
  background: var(--mint);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #e5dbc9;
  border-radius: 16px;
  outline: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdfa;
  transition:
    border 0.18s ease,
    box-shadow 0.18s ease;
}
.field textarea {
  line-height: 1.65;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #f09a80;
  box-shadow: 0 0 0 4px #ff756d1a;
}
.field-hint {
  color: #8b826f;
  font-size: 11px;
  font-weight: 600;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.main-character-block {
  margin: 14px 0 12px;
  padding: 14px;
  border: 1px solid #f0dfc4;
  border-radius: 18px;
  background: #fffaf0;
}
.main-character-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.main-character-head strong {
  display: block;
  color: #45475a;
  font-size: 13px;
}
.main-character-head small {
  display: block;
  margin-top: 4px;
  color: #8b826f;
  font-size: 11px;
  line-height: 1.4;
}
.main-character-head button {
  flex: none;
  padding: 4px 8px;
  border: 1px solid #efc7b6;
  border-radius: 999px;
  color: #b85d48;
  background: #fff4ed;
  font-size: 11px;
  font-weight: 800;
}
.main-character-fields {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.main-character-upload {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  border: 2px dashed #d9c9aa;
  border-radius: 15px;
  color: #6f6a5e;
  background: #fff;
  font-size: 11px;
  text-align: center;
  cursor: pointer;
}
.main-character-upload input {
  display: none;
}
.main-character-upload img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
}
.main-character-name {
  margin: 0;
}
.main-character-name input {
  min-height: 42px;
}
.upload-box {
  min-height: 112px;
  margin-top: 17px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px dashed #d9c9aa;
  border-radius: 20px;
  color: #5c5e70;
  background: #fff9e8;
  text-align: center;
  transition:
    border 0.18s ease,
    transform 0.18s ease;
  cursor: pointer;
}
.upload-box:hover {
  border-color: var(--mint);
  transform: translateY(-1px);
}
.upload-box input {
  display: none;
}
.upload-box small {
  color: #8b826f;
  font-size: 11px;
}
.upload-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--mint);
}
.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}
.image-strip img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 17px;
  box-shadow: 0 4px 12px #392c1b1f;
}
.action-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 9px;
  margin-top: 17px;
}
.action-row button,
.package-card button,
.auth-form button[type="submit"] {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 15px;
  color: #45475a;
  background: #f2eddf;
  font-weight: 900;
}
.action-row .primary,
.package-card button,
.auth-form button[type="submit"] {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #ff9470);
}
.notice,
.loading-line,
.form-error {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}
.notice {
  color: #19705d;
  background: #e7faf4;
}
.loading-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #286d94;
  background: #eaf7ff;
}
.form-error {
  color: #9d3b30;
  background: #fff0ec;
}
.empty-panel {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 201, 77, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(79, 200, 175, 0.13),
      transparent 25%
    ),
    #fffef9;
}
.empty-panel img {
  width: min(390px, 75%);
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.empty-panel h2 {
  max-width: 560px;
  margin: 3px 0;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 38px);
}
.empty-panel p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.empty-kicker {
  color: #d95755;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
}
.empty-badges {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.empty-badges span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #56586b;
  background: #fff6d9;
  font-size: 12px;
  font-weight: 900;
}
.plan-summary {
  margin-bottom: 17px;
}
.plan-summary .panel-head {
  align-items: flex-start;
  gap: 16px;
}
.plan-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.plan-toolbar button,
.single-generate {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 10px;
  color: #4d5063;
  background: #f4efe5;
  font-size: 12px;
  font-weight: 900;
}
.plan-toolbar .primary {
  color: #fff;
  background: var(--coral);
}
.story-block {
  margin-top: 14px;
  padding: 16px;
  border-radius: 17px;
  color: #55586b;
  background: #fff8e8;
  line-height: 1.8;
}
.compliance-note {
  margin: 12px 0 0;
  color: #666a7b;
  font-size: 12px;
  line-height: 1.6;
}
.export-actions {
  display: flex;
  gap: 9px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.export-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 10px;
  color: #b04c45;
  background: #fff0ed;
  font-size: 13px;
  font-weight: 900;
}
.export-actions a.primary {
  color: #fff;
  background: var(--coral);
}
.pdf-size-picker {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid #ead7bc;
  border-radius: 10px;
  color: #70644f;
  background: #fffaf0;
  font-size: 12px;
  font-weight: 900;
}
.pdf-size-picker select {
  max-width: 230px;
  border: 0;
  outline: 0;
  color: #4d5063;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}
.plan-card {
  padding: 16px;
}
.plan-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.checkbox-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 900;
}
.checkbox-line input {
  accent-color: var(--coral);
  width: 18px;
  height: 18px;
}
.page-type {
  padding: 5px 8px;
  border-radius: 7px;
  color: #6d5b29;
  background: #fff0b9;
  font-size: 11px;
}
.page-type.title_page {
  color: #316686;
  background: #e4f4ff;
}
.page-type.story {
  color: #24705e;
  background: #e4f7f1;
}
.page-type.back_cover {
  color: #6d5187;
  background: #f0e8f8;
}
.plan-image-frame {
  position: relative;
}
.plan-cover,
.plan-cover.placeholder,
.suite-cover img,
.cover-empty,
.page-card img,
.page-empty {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 14px;
  border-radius: 18px;
  background: #f5eddd;
  object-fit: cover;
}
.ai-badge {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 5px 8px;
  border: 1px solid rgba(56, 60, 72, 0.14);
  border-radius: 7px;
  color: #4d5160;
  background: #ffffffe0;
  font-size: 10px;
  font-weight: 800;
}
.single-generate {
  width: 100%;
  margin-top: 12px;
  color: #c6534b;
  background: #fff0ed;
}
.plan-cover.placeholder,
.cover-empty,
.page-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92856e;
  font-weight: 900;
}
.section-head.compact {
  margin-bottom: 18px;
}
.section-head h2,
.credits-header h2 {
  margin: 7px 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}
.suite-card {
  padding: 14px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 17px;
  color: inherit;
  text-align: left;
}
.suite-card:hover {
  border-color: #e7b894;
  transform: translateY(-2px);
}
.suite-body p {
  margin: 12px 0;
  color: var(--muted);
  line-height: 1.7;
}
.suite-title-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.suite-title-row h2 {
  color: var(--ink);
}
.suite-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  background: #2c31504d;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.drawer-panel {
  width: min(860px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  background: var(--cream);
}
.close-btn {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--ink);
  background: #f1e9da;
  font-weight: 900;
}
.download-book {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--coral);
  font-size: 13px;
  font-weight: 900;
}
.page-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.page-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.page-card p {
  color: var(--muted);
  line-height: 1.6;
}
.credits-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff8dc;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
.package-card {
  min-height: 290px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-card:nth-child(3n + 1) {
  border-top: 6px solid var(--coral);
}
.package-card:nth-child(3n + 2) {
  border-top: 6px solid var(--yellow);
}
.package-card:nth-child(3n + 3) {
  border-top: 6px solid var(--mint);
}
.package-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}
.package-card strong {
  color: #db5f58;
}
.package-card p {
  flex: 1;
  color: var(--muted);
  line-height: 1.7;
}
.package-credits {
  color: var(--ink);
  font-size: 30px;
  font-weight: 1000;
}
.auth-screen.web-auth-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255, 201, 77, 0.25),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(79, 200, 175, 0.2),
      transparent 28%
    ),
    var(--cream);
}
.auth-panel.web-auth-panel {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1.15fr 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 80px #513d2424;
}
.auth-copy {
  position: relative;
  min-height: 600px;
  padding: 42px;
  overflow: hidden;
  color: var(--ink);
  background: #fff3d2;
}
.auth-kicker {
  color: #d95755;
  font-size: 13px;
  font-weight: 1000;
}
.auth-copy h1 {
  max-width: 430px;
  margin: 16px 0 12px;
  font-size: 40px;
  line-height: 1.15;
}
.auth-copy p {
  max-width: 460px;
  margin: 0;
  color: #626478;
  line-height: 1.75;
}
.auth-illustration {
  position: absolute;
  width: 390px;
  max-width: 78%;
  right: 15px;
  bottom: -18px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.auth-form {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.back-home {
  min-height: 44px;
  border-radius: 15px;
  color: var(--ink);
  background: #f2eddf;
  font-weight: 900;
}
.status.success {
  color: #13745c;
  background: #dff8ef;
  border-color: #bde9dd;
}
.status.failed {
  color: #a13b30;
  background: #fff0ec;
  border-color: #ffd3ca;
}
.status.queued,
.status.neutral {
  color: #6a6170;
  background: #f2eddf;
  border-color: #e1d7c5;
}
.spin {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1100px) {
  .workspace {
    grid-template-columns: 360px 1fr;
  }
  .hero-content.web-hero-content,
  .hero-copy-card {
    min-height: 470px;
  }
  .hero-copy-card {
    width: 59%;
    padding-left: 40px;
  }
  .web-hero-content h1 {
    font-size: 46px;
  }
  .plan-grid,
  .suite-grid,
  .package-grid,
  .page-list,
  .suite-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .topbar {
    height: auto;
    min-height: 66px;
    padding: 10px 14px;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .topnav {
    width: auto;
    max-width: 64%;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .topnav button {
    flex: 0 0 auto;
  }
  .hero-section.web-hero {
    padding: 16px 14px 0;
  }
  .hero-content.web-hero-content {
    min-height: 650px;
    border-radius: 28px;
  }
  .hero-picture {
    height: 360px;
    top: auto;
    object-position: 69% center;
  }
  .hero-copy-card {
    width: 100%;
    min-height: 410px;
    padding: 36px 25px 18px;
    justify-content: flex-start;
    background: linear-gradient(180deg, #fff5dcfa 78%, #fff5dc00);
  }
  .web-hero-content h1 {
    margin: 11px 0 13px;
    font-size: clamp(35px, 9vw, 48px);
  }
  .hero-action {
    margin-top: 18px;
  }
  .how-strip {
    margin: 16px 14px 0;
    padding: 13px;
    border-radius: 24px;
    align-items: stretch;
  }
  .how-strip > div {
    flex: 1;
    align-items: flex-start;
  }
  .how-strip div span {
    display: block;
    font-size: 0;
  }
  .how-strip div strong {
    font-size: 12px;
    padding-top: 9px;
    white-space: nowrap;
  }
  .how-strip i {
    display: none;
  }
  .workspace {
    grid-template-columns: 1fr;
    padding: 18px 14px 42px;
  }
  .workspace-sidebar {
    position: static;
  }
  .empty-panel {
    min-height: 540px;
  }
  .auth-panel.web-auth-panel {
    grid-template-columns: 1fr;
  }
  .auth-copy {
    min-height: 330px;
  }
  .auth-illustration {
    width: 245px;
    right: -10px;
    bottom: -25px;
  }
  .credits-header {
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .brand {
    font-size: 15px;
  }
  .topnav button {
    min-height: 36px;
    padding: 0 9px;
    font-size: 12px;
  }
  .hero-content.web-hero-content {
    min-height: 640px;
  }
  .hero-copy-card {
    min-height: 400px;
    padding: 28px 20px 12px;
  }
  .web-hero-content p {
    font-size: 14px;
  }
  .hero-chip-row span:nth-child(2) {
    display: none;
  }
  .hero-picture {
    height: 330px;
  }
  .animal-ideas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .animal-idea {
    flex-direction: row;
    justify-content: center;
  }
  .animal-idea span {
    font-size: 24px;
  }
  .field-grid,
  .action-row {
    grid-template-columns: 1fr;
  }
  .panel {
    padding: 18px;
    border-radius: 22px;
  }
  .empty-panel img {
    width: 92%;
  }
  .auth-copy {
    min-height: 310px;
    padding: 28px;
  }
  .auth-copy h1 {
    font-size: 31px;
  }
  .auth-form {
    padding: 26px;
  }
}
