@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --bg: #f6f1e8;
  --surface: #ffffff;
  --surface-soft: #fffaf2;
  --surface-blue: #eef8f6;
  --border: #e1d7c7;
  --border-strong: #c7b79f;
  --text: #16231f;
  --muted: #6f746f;
  --muted-strong: #414c46;
  --primary: #0f5e55;
  --primary-dark: #0a403c;
  --primary-soft: #e2f3ef;
  --accent: #d56a3d;
  --accent-soft: #fff0e8;
  --gold: #b88a2f;
  --danger: #dc2626;
  --warning: #9b6b18;
  --success: #137c59;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(41, 31, 20, 0.12);
  --shadow-soft: 0 12px 30px rgba(41, 31, 20, 0.08);
  --font: 'Manrope', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display-font: 'Sora', 'Manrope', ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, #fbf4e8 0, #f7f4ec 360px, #eef5f2 100%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 35, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 35, 31, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
}

a {
  color: var(--primary);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 38px;
  background: rgba(255, 251, 244, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 94, 85, 0.32), rgba(213, 106, 61, 0.24), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #0a403c, #0f5e55 58%, #d56a3d);
  box-shadow: 0 12px 24px rgba(15, 94, 85, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) rotate(-2deg);
  box-shadow: 0 16px 32px rgba(15, 94, 85, 0.3);
}

.brand-mark rect {
  fill: transparent;
}

.brand-mark path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
}

.brand strong {
  display: block;
  font-family: var(--display-font);
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.topnav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #263b35;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--display-font);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.topnav a:hover {
  color: var(--primary-dark);
  background: #ffffff;
  border-color: #d8cbb8;
  transform: translateY(-1px);
}

.server-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 460px;
  padding: 9px 14px;
  color: #744c06;
  background: #fff8e7;
  border: 1px solid #f2ddb1;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(183, 121, 31, 0.08);
}

.server-note.online {
  color: #08624b;
  background: #eafaf4;
  border-color: #bdebdc;
}

.server-note strong,
.server-note small {
  display: block;
}

.server-note strong {
  font-size: 12px;
  line-height: 1.2;
}

.server-note small {
  margin-top: 1px;
  font-size: 11px;
  color: currentColor;
  opacity: 0.82;
}

.server-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 5px rgba(183, 121, 31, 0.12);
  flex: 0 0 auto;
}

.server-note.online .server-dot {
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(15, 159, 110, 0.12);
}

.page-shell {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 28px 24px 48px;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 16px;
}

.intro-copy {
  padding: clamp(30px, 4.6vw, 58px);
  background:
    linear-gradient(135deg, rgba(6, 38, 87, 0.96), rgba(2, 86, 217, 0.96)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  color: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.intro-copy > * {
  position: relative;
  z-index: 1;
}

.intro-copy::after {
  content: "";
  position: absolute;
  inset: auto -120px -130px auto;
  width: 320px;
  height: 320px;
  background: rgba(20, 184, 166, 0.18);
  border-radius: 50%;
}

.intro-copy::before {
  content: "";
  position: absolute;
  inset: 20px 22px auto auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  transform: rotate(10deg);
}

.eyebrow {
  margin: 0 0 12px;
  color: #b9d8ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intro-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.intro-copy h1 span {
  color: #9fe7dc;
}

.intro-text {
  max-width: 760px;
  margin: 18px 0 0;
  color: #e7f0ff;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.primary-link {
  color: #05214a;
  background: #ffffff;
}

.secondary-link {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.trust-row span {
  padding: 9px 12px;
  color: #eef7ff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.audience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.audience-strip span {
  padding: 7px 10px;
  color: #dcecff;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.intro-preview {
  min-height: 100%;
  padding: 20px;
  background:
    linear-gradient(135deg, #dcecff, #edf6ff 52%, #e8fbf7);
  border: 1px solid #c8ddf5;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.intro-preview::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(2, 86, 217, 0.18);
  border-radius: var(--radius);
}

.paper-stack {
  position: absolute;
  inset: 34px 28px 20px 44px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(155, 187, 232, 0.8);
  border-radius: 6px;
  transform: rotate(-3deg);
}

.paper-sheet {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #d8e3f1;
  border-radius: 6px;
  box-shadow: 0 18px 35px rgba(2, 86, 217, 0.12);
  transform: rotate(1.2deg);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.intro-preview:hover .paper-sheet {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 22px 42px rgba(2, 86, 217, 0.16);
}

.paper-label {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.paper-sheet h2 {
  min-height: 64px;
  margin: 18px 0 24px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.paper-line {
  height: 10px;
  width: 82%;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #dce7f5, #edf4fb);
  border-radius: 999px;
}

.paper-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
}

.paper-tags span {
  padding: 5px 8px;
  color: #0c4a6e;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.paper-quality {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.paper-quality div {
  padding: 11px 12px;
  background: #f8fbff;
  border: 1px solid #e1eaf6;
  border-radius: var(--radius);
}

.paper-quality strong,
.paper-quality small {
  display: block;
}

.paper-quality strong {
  font-size: 12px;
}

.paper-quality small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.paper-line.wide {
  width: 100%;
}

.paper-line.short {
  width: 58%;
}

.paper-section {
  margin-top: 34px;
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.paper-section strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.paper-section ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted-strong);
  font-size: 13px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.metric-row article {
  padding: 18px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(18, 38, 63, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.metric-row article:hover {
  transform: translateY(-2px);
  border-color: #bfd1e8;
  box-shadow: 0 14px 30px rgba(18, 38, 63, 0.08);
}

.metric-row strong {
  display: block;
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-row span {
  display: block;
  margin-top: 7px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 800;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.comparison-section {
  margin: 0 0 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.split-title {
  margin-bottom: 18px;
}

.split-title > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.comparison-grid article {
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.comparison-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border-radius: 44px;
  transform: rotate(18deg);
}

.before-card {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.before-card::after {
  background: rgba(251, 146, 60, 0.13);
}

.after-card {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.after-card::after {
  background: rgba(20, 184, 166, 0.14);
}

.comparison-grid span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-grid h3 {
  max-width: 390px;
  margin: 14px 0 16px;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.comparison-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.workflow-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(18, 38, 63, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.workflow-strip article:hover {
  transform: translateY(-2px);
  border-color: #bfd1e8;
  box-shadow: 0 14px 30px rgba(18, 38, 63, 0.08);
}

.workflow-strip span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid #c7ddff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
}

.workflow-strip strong {
  font-size: 14px;
}

.workflow-strip small {
  color: var(--muted);
  font-size: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.workspace-heading {
  margin: 0 0 18px;
  padding: 26px 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(5, 33, 74, 0.96), rgba(2, 86, 217, 0.92)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.workspace-heading .eyebrow {
  color: #9fe7dc;
}

.workspace-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.workspace-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 10px 0 0;
  color: #dcecff;
  font-size: 14px;
}

.section-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 2px 2px;
}

.section-title h2 {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.eyebrow.dark {
  color: var(--primary);
}

.service-grid article {
  min-height: 190px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(18, 38, 63, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-grid article::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  background: var(--primary-soft);
  border-radius: 30px;
  transform: rotate(16deg);
}

.service-grid article:hover {
  transform: translateY(-3px);
  border-color: #bfd1e8;
  box-shadow: 0 16px 34px rgba(18, 38, 63, 0.09);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #1683ff);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
}

.service-grid h3 {
  margin: 18px 0 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

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

.workspace-form,
.workspace-main,
.workspace-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.workspace-sidebar {
  position: sticky;
  top: 92px;
}

.form-card,
.sidebar-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.form-card {
  overflow: hidden;
}

.form-card:hover,
.sidebar-card:hover {
  transform: translateY(-2px);
  border-color: #c4d2e5;
  box-shadow: 0 14px 36px rgba(18, 38, 63, 0.08);
}

.card-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 24px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff),
    linear-gradient(90deg, rgba(2, 86, 217, 0.04), transparent);
  border-bottom: 1px solid var(--border);
}

.form-card:focus-within .card-step {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 5px rgba(2, 86, 217, 0.1);
}

.card-step {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  flex: 0 0 auto;
}

.card-header h3,
.sidebar-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.card-header p,
.sidebar-kicker {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.form-row-2,
.form-row-3 {
  display: grid;
  gap: 18px;
}

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

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

.field {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.type-fields {
  display: grid;
  gap: 14px;
}

.type-field-panel {
  display: none;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(238, 246, 255, 0.92), rgba(255, 255, 255, 0.96));
  border: 1px solid #cfe0f6;
  border-radius: var(--radius);
}

.custom-pages-panel {
  display: grid;
  gap: 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.76), rgba(255, 255, 255, 0.96));
  border: 1px solid #bdebdc;
  border-radius: var(--radius);
}

.mini-upload {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 16px;
  background: #ffffff;
  border: 1.5px dashed #9bbbe8;
  border-radius: var(--radius);
  cursor: pointer;
}

.mini-upload:hover {
  border-color: var(--primary);
  background: #f8fbff;
}

.mini-upload input {
  display: none;
}

.mini-upload span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.mini-upload small {
  color: var(--muted);
  font-size: 12px;
  word-break: break-word;
}

.type-field-panel.active {
  display: grid;
  gap: 16px;
}

.panel-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dce8f7;
}

.panel-mini-header strong {
  font-size: 14px;
}

.panel-mini-header span {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

label {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.required-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  color: #ad1742;
  background: #fff0f4;
  border: 1px solid #ffd0dd;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  vertical-align: middle;
}

input[type="text"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--text);
  background: #fbfdff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

textarea {
  min-height: 112px;
  resize: none;
  overflow-y: hidden;
}

select {
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 86, 217, 0.11);
}

input:hover,
select:hover,
textarea:hover {
  border-color: #92a9c6;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

.hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.api-key-container {
  position: relative;
}

.api-key-container input {
  padding-right: 78px;
}

.api-key-container button {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  min-width: 62px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid #c7ddff;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.length-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.length-radio {
  cursor: pointer;
}

.length-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.radio-card strong,
.radio-card small {
  display: block;
}

.radio-card strong {
  font-size: 21px;
  line-height: 1;
}

.radio-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.length-radio input:checked + .radio-card {
  color: var(--primary);
  background: var(--primary-soft);
  border-color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.length-radio:hover .radio-card {
  transform: translateY(-1px);
  border-color: var(--primary);
}

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

.btn-text {
  padding: 8px 11px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid #c7ddff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

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

.upload-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upload-dropzone {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(238, 246, 255, 0.95), rgba(232, 251, 247, 0.92));
  border: 1.5px dashed #9bbbe8;
  border-radius: var(--radius);
  cursor: pointer;
}

.upload-dropzone:hover {
  border-color: var(--primary);
  background: #e6f1ff;
  transform: translateY(-1px);
}

.upload-dropzone input {
  display: none;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid #cfe0f6;
  border-radius: 16px;
}

.upload-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-text {
  display: block;
  font-weight: 800;
}

.upload-hint {
  display: block;
  max-width: 420px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.file-list li {
  padding: 9px 11px;
  color: var(--muted-strong);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  word-break: break-word;
}

.sidebar-card {
  padding: 22px;
}

.panel-label {
  margin: 0 0 7px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compile-btn {
  width: 100%;
  min-height: 52px;
  margin-top: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #013f9f, var(--primary), #1683ff);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 14px 26px rgba(2, 86, 217, 0.22);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.compile-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.compile-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-120%);
}

.compile-btn:hover::after {
  animation: button-sheen 0.8s ease;
}

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

.build-progress-container {
  margin-top: 18px;
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.progress-labels,
.status-badge-row,
.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.progress-labels {
  font-size: 12px;
  font-weight: 800;
}

#statusText {
  min-width: 0;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#progressValue {
  color: var(--primary);
}

.progress-bar-track {
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  background: #dbe7f6;
  border-radius: 999px;
}

#progressFill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: inherit;
  transition: width 0.25s ease;
  background-size: 180% 100%;
  animation: progress-flow 3s linear infinite;
}

.status-badge-row {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.status-badge,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  color: var(--muted-strong);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: capitalize;
  white-space: nowrap;
}

.status-badge.running {
  color: var(--primary);
  background: var(--primary-soft);
  border-color: #c7ddff;
}

.status-badge.complete {
  color: #087454;
  background: #eafaf4;
  border-color: #bdebdc;
}

.status-badge.error {
  color: var(--danger);
  background: #fff1f2;
  border-color: #fecdd3;
}

.build-phases-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.build-phases-list li {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.build-phases-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  flex: 0 0 auto;
}

.build-phases-list li.done {
  color: var(--muted-strong);
}

.build-phases-list li.done::before {
  background: var(--success);
}

.build-phases-list li.current {
  color: var(--text);
  font-weight: 800;
}

.build-phases-list li.current::before {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 86, 217, 0.12);
}

.download-card {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.download-card h4 {
  margin: 0;
  font-size: 15px;
}

.download-card p {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.download-button-group {
  display: grid;
  gap: 9px;
}

.btn-download {
  display: grid;
  min-height: 42px;
  place-items: center;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.btn-download.word {
  color: #ffffff;
  background: var(--primary);
}

.btn-download.pdf {
  color: #8b1d1d;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.citation-warning {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 10px 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 7px;
  font-size: 12px;
  color: #78350f;
  line-height: 1.5;
}

.preview-card {
  overflow: hidden;
}

.preview-header {
  align-items: flex-start;
  margin-bottom: 14px;
}

.preview-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.outline-scroller {
  max-height: 330px;
  overflow: auto;
  padding-right: 4px;
}

.outline-blueprint-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outline-blueprint-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  color: var(--muted-strong);
  border-bottom: 1px solid #edf2f8;
  font-size: 13px;
}

.outline-blueprint-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
}

.outline-blueprint-list li small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.outline-blueprint-list li.blueprint-divider {
  padding: 11px 0 8px;
  color: var(--primary);
  border-bottom: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outline-blueprint-list li.blueprint-divider::before {
  display: none;
}

.outline-blueprint-list li.blueprint-chapter,
.outline-blueprint-list li.blueprint-chapter-placeholder {
  color: var(--text);
  font-weight: 700;
}

.outline-blueprint-list li.blueprint-chapter::before,
.outline-blueprint-list li.blueprint-chapter-placeholder::before {
  background: var(--primary);
}

@keyframes button-sheen {
  to {
    transform: translateX(120%);
  }
}

@keyframes progress-flow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 180% 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .intro-copy,
  .intro-preview,
  .workflow-strip article,
  .metric-row article,
  .service-grid article,
  .comparison-section,
  .workspace-heading,
  .form-card,
  .sidebar-card {
    animation: rise-in 0.55s ease both;
  }

  .intro-preview {
    animation-delay: 0.08s;
  }

  .workflow-strip article:nth-child(1) {
    animation-delay: 0.12s;
  }

  .workflow-strip article:nth-child(2) {
    animation-delay: 0.17s;
  }

  .workflow-strip article:nth-child(3) {
    animation-delay: 0.22s;
  }

  .service-grid article:nth-of-type(1) {
    animation-delay: 0.08s;
  }

  .service-grid article:nth-of-type(2) {
    animation-delay: 0.12s;
  }

  .service-grid article:nth-of-type(3) {
    animation-delay: 0.16s;
  }

  .service-grid article:nth-of-type(4) {
    animation-delay: 0.2s;
  }
}

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

.hidden,
.btn-download.hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .intro-panel,
  .app-layout,
  .workflow-strip,
  .metric-row,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    position: static;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 10px 12px;
  }

  .topnav {
    order: 3;
    margin-left: 0;
    overflow-x: auto;
    padding: 1px 0 3px;
    scrollbar-width: none;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a {
    flex: 0 0 auto;
    padding: 8px 11px;
    font-size: 12px;
  }

  .server-note {
    max-width: none;
    border-radius: var(--radius);
    padding: 8px 10px;
  }

  .server-note strong {
    font-size: 11.5px;
  }

  .server-note small {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .page-shell {
    padding: 14px 10px 34px;
  }

  .intro-panel,
  .app-layout,
  .workspace-form,
  .workspace-main,
  .workspace-sidebar {
    gap: 16px;
  }

  .intro-copy,
  .intro-preview,
  .comparison-section,
  .workspace-heading,
  .card-body,
  .card-header,
  .sidebar-card {
    padding: 16px;
  }

  .paper-sheet {
    transform: none;
    padding: 20px;
  }

  .intro-copy h1 {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .intro-text {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .hero-actions a {
    width: 100%;
    min-height: 42px;
  }

  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .metric-row article {
    padding: 15px 13px;
  }

  .metric-row strong {
    font-size: 23px;
  }

  .metric-row span {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .section-title h2,
  .workspace-heading h2 {
    font-size: 26px;
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .split-title > p,
  .workspace-heading p:not(.eyebrow) {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .comparison-grid article {
    min-height: auto;
    padding: 18px;
  }

  .comparison-grid h3 {
    font-size: 21px;
    line-height: 1.14;
  }

  .comparison-grid ul {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-grid article {
    min-height: auto;
    padding: 18px;
  }

  .service-grid h3 {
    margin-top: 14px;
    font-size: 16px;
  }

  .service-grid p {
    font-size: 12.8px;
    line-height: 1.55;
  }

  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .panel-mini-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .panel-mini-header span {
    text-align: left;
  }

  .length-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .radio-card {
    min-height: 64px;
  }

  .card-header {
    gap: 12px;
  }

  .card-step {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .card-header h3,
  .sidebar-card h3 {
    font-size: 16px;
  }

  .card-header p,
  .sidebar-kicker {
    font-size: 12.5px;
    line-height: 1.48;
  }

  label {
    font-size: 12.5px;
  }

  input[type="text"],
input[type="number"],
  input[type="password"],
  select,
  textarea {
    min-height: 44px;
    font-size: 13.5px;
  }

  .upload-dropzone {
    min-height: 132px;
    padding: 18px;
  }

  .compile-btn {
    min-height: 48px;
    font-size: 14px;
  }

  .label-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-text {
    width: 100%;
  }

  .preview-header {
    flex-direction: column;
  }

  .preview-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .metric-row {
    grid-template-columns: 1fr;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .intro-copy h1 {
    font-size: 34px;
  }

  .trust-row,
  .audience-strip,
  .paper-tags {
    gap: 7px;
  }

  .length-options {
    grid-template-columns: 1fr;
  }

  .trust-row span {
    width: auto;
    text-align: center;
    font-size: 11.5px;
    padding: 8px 10px;
  }

  .audience-strip span {
    font-size: 10.5px;
    padding: 6px 9px;
  }

  .paper-sheet h2 {
    min-height: auto;
    font-size: 21px;
  }

  .paper-quality div,
  .paper-section {
    padding: 13px;
  }
}

/* Product polish pass */
.product-hero {
  min-height: min(560px, calc(100vh - 156px));
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid #c9d9ee;
  border-radius: 8px;
  background: #0f1d32;
  box-shadow: 0 24px 70px rgba(15, 29, 50, 0.18);
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.88), rgba(8, 18, 34, 0.54) 46%, rgba(8, 18, 34, 0.2)),
    url("/assets/report-studio-hero.png") center / cover no-repeat;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
  z-index: -2;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  pointer-events: none;
  z-index: -1;
}

.product-hero .intro-copy {
  width: min(660px, 100%);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: #ffffff;
  overflow: visible;
}

.product-hero .intro-copy::before,
.product-hero .intro-copy::after {
  display: none;
}

.product-hero .eyebrow {
  color: #bce9df;
  letter-spacing: 0;
}

.product-hero h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 700px;
  margin: 18px 0 0;
  color: #e7effb;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.62;
}

.product-hero .primary-link,
.product-hero .secondary-link {
  border-radius: 8px;
  min-height: 50px;
  padding: 0 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.product-hero .primary-link {
  color: #082242;
  background: #ffffff;
}

.product-hero .secondary-link {
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel {
  position: absolute;
  right: clamp(28px, 5vw, 70px);
  bottom: clamp(28px, 5vw, 64px);
  width: min(360px, 32vw);
  padding: 20px;
  color: #102033;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(6, 17, 34, 0.25);
  backdrop-filter: blur(14px);
  animation: panelFloat 5s ease-in-out infinite;
}

.hero-panel h2 {
  margin: 12px 0 16px;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: 0;
}

.mini-progress {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.mini-progress span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b63ce, #20b7a9);
}

.mini-progress span:nth-child(2) {
  width: 78%;
  opacity: 0.62;
}

.mini-progress span:nth-child(3) {
  width: 56%;
  opacity: 0.35;
}

.quick-start {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.quick-start a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #102033;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  background: #ffffff;
  border: 1px solid #d7e4f3;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(18, 38, 63, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.quick-start a:hover {
  transform: translateY(-3px);
  border-color: #91b8e8;
  box-shadow: 0 18px 36px rgba(18, 38, 63, 0.1);
}

.form-card,
.sidebar-card,
.comparison-section,
.service-grid article,
.metric-row article,
.workflow-strip article {
  border-radius: 8px;
}

.form-card {
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.form-card:focus-within {
  transform: translateY(-2px);
  border-color: #9bc3ef;
  box-shadow: 0 18px 42px rgba(2, 86, 217, 0.1);
}

.card-header {
  background: linear-gradient(90deg, #ffffff, #f3f8ff);
}

input,
select,
textarea,
.upload-dropzone {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #0b63ce;
  box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.12);
}

.compile-btn,
.btn-download,
.btn-text,
.primary-link,
.secondary-link {
  position: relative;
  overflow: hidden;
}

.compile-btn::after,
.primary-link::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.compile-btn:hover::after,
.primary-link:hover::after {
  animation: shine 0.85s ease;
}

.service-grid article,
.metric-row article,
.workflow-strip article {
  animation: riseIn 0.65s ease both;
}

.service-grid article:nth-of-type(2),
.metric-row article:nth-child(2),
.workflow-strip article:nth-child(2) {
  animation-delay: 0.06s;
}

.service-grid article:nth-of-type(3),
.metric-row article:nth-child(3),
.workflow-strip article:nth-child(3) {
  animation-delay: 0.12s;
}

.service-grid article:nth-of-type(4),
.metric-row article:nth-child(4) {
  animation-delay: 0.18s;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(-18px);
  }
}

@keyframes panelFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 1120px) {
  .product-hero {
    min-height: 610px;
    align-items: start;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, 100%);
    margin-top: 28px;
  }

  .quick-start {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px 12px 36px;
  }

  .product-hero {
    min-height: 560px;
    padding: 22px;
  }

  .product-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .product-hero .primary-link,
  .product-hero .secondary-link {
    width: 100%;
  }

  .quick-start,
  .metric-row,
  .workflow-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Distinct brand finish */
h1,
h2,
h3,
.brand strong,
.section-title h2,
.workspace-heading h2,
.card-header h3,
.preview-header h3,
.hero-panel h2 {
  font-family: var(--display-font);
  letter-spacing: 0;
}

* {
  letter-spacing: 0;
}

.page-shell {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.4));
}

.product-hero {
  background: #132520;
  border-color: #cabda8;
  box-shadow: 0 26px 70px rgba(47, 37, 22, 0.2);
}

.hero-backdrop {
  background:
    linear-gradient(92deg, rgba(12, 28, 25, 0.94), rgba(12, 28, 25, 0.72) 45%, rgba(74, 43, 24, 0.28)),
    url("/assets/report-studio-hero.png") center / cover no-repeat;
}

.product-hero::after {
  border-color: rgba(255, 238, 209, 0.22);
}

.product-hero .eyebrow {
  color: #ffd9b9;
}

.product-hero h1 {
  color: #fffaf1;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.hero-subtitle {
  color: #f2eadc;
}

.product-hero .primary-link {
  color: #10231f;
  background: #ffe7c8;
  border: 1px solid rgba(255, 231, 200, 0.85);
}

.product-hero .secondary-link {
  color: #fffaf1;
  background: rgba(255, 250, 241, 0.12);
  border-color: rgba(255, 250, 241, 0.38);
}

.trust-row span {
  color: #fff7ea;
  background: rgba(255, 250, 241, 0.13);
  border-color: rgba(255, 250, 241, 0.22);
}

.hero-panel {
  background: rgba(255, 251, 244, 0.94);
  border-color: rgba(255, 239, 218, 0.9);
}

.mini-progress span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.quick-start a {
  color: #192a25;
  background: #fffaf2;
  border-color: #dfd0ba;
}

.quick-start a:hover {
  border-color: #c18c58;
  box-shadow: 0 18px 36px rgba(80, 55, 31, 0.12);
}

.section-title h2 {
  color: #142822;
}
.workspace-heading h2 {
  color: #ffffff;
}

.eyebrow.dark,
.panel-label {
  color: var(--primary);
}

.comparison-grid article,
.workflow-strip article,
.metric-row article,
.service-grid article,
.form-card,
.sidebar-card {
  background: rgba(255, 253, 248, 0.96);
  border-color: #e3d7c5;
}

.comparison-grid article::after,
.service-grid article::after {
  background: #f7e6d7;
}

.service-icon,
.step-number,
.workflow-strip span {
  color: #fffaf2;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-color: rgba(15, 94, 85, 0.2);
}

.workspace-heading {
  background:
    linear-gradient(135deg, rgba(10, 64, 60, 0.96), rgba(15, 94, 85, 0.9) 54%, rgba(109, 68, 36, 0.86)),
    linear-gradient(120deg, rgba(255, 250, 241, 0.08) 0 1px, transparent 1px 18px);
}

.workspace-heading .eyebrow {
  color: #ffd9b9;
}

.workspace-heading p {
  color: #f4eadb;
}

.card-header {
  background: linear-gradient(90deg, #fffaf2, #eef8f6);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 94, 85, 0.13);
}

.compile-btn,
.btn-download.word {
  background: linear-gradient(135deg, #0a403c, #0f5e55 62%, #d56a3d);
  box-shadow: 0 16px 28px rgba(15, 94, 85, 0.23);
}

.btn-text,
.api-key-container button,
.length-radio input:checked + .radio-card {
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-color: #a9d4ca;
}

.upload-dropzone {
  background: linear-gradient(135deg, #fff7ec, #eef8f6);
}

.upload-dropzone:hover {
  border-color: var(--primary);
  background: #eef8f6;
}

.outline-blueprint-list li::before,
.build-phases-list li.current::before,
.outline-blueprint-list li.blueprint-chapter::before,
.outline-blueprint-list li.blueprint-chapter-placeholder::before {
  background: var(--primary);
}

.progress-bar-fill {
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold));
}

.site-footer {
  padding: 0 24px 34px;
}

.footer-inner {
  width: min(1352px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(10, 64, 60, 0.98), rgba(15, 94, 85, 0.92) 54%, rgba(109, 68, 36, 0.9)),
    linear-gradient(120deg, rgba(255, 250, 241, 0.08) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(255, 231, 200, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(41, 31, 20, 0.16);
}

.footer-kicker {
  margin: 0 0 8px;
  color: #ffd9b9;
  font-family: var(--display-font);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-inner h2 {
  margin: 0;
  color: #fffaf2;
  font-family: var(--display-font);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

.footer-inner p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #f4eadb;
}

.android-download {
  min-width: 260px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #10231f;
  text-decoration: none;
  background: #ffe7c8;
  border: 1px solid rgba(255, 231, 200, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(16, 35, 31, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.android-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(16, 35, 31, 0.24);
}

.android-download.disabled {
  opacity: 0.7;
  cursor: default;
}

.android-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fffaf2;
  background: var(--primary-dark);
  border-radius: 8px;
}

.android-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.android-download strong,
.android-download small {
  display: block;
}

.android-download small {
  margin-top: 2px;
  color: #5c5042;
  font-size: 12px;
}

/* Permanent company footer strip */
.footer-company {
  margin-top: 0;
  padding: 14px 24px;
  background: transparent;
  border-top: 1px solid #e2e8f0;
}

.footer-company-inner {
  width: min(1352px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 32px;
}

.footer-company-brand {
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
}

.footer-company-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-company-links a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-company-links a:hover {
  color: #0f5e55;
}

.footer-company-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-company-contact a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-company-contact a:hover {
  color: #0f5e55;
}

.footer-company-contact span {
  color: #cbd5e1;
}

.footer-copyright {
  width: 100%;
  margin: 8px 0 0;
  font-size: 12px;
  color: #94a3b8;
}

/* ── Android Info Modal ─────────────────────────────────────────── */
.android-modal-card {
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
}
.android-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 18px;
  background: linear-gradient(135deg, #0a403c, #0f5e55);
  color: #fffaf2;
}
.android-modal-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #ffe7c8;
}
.android-modal-title { margin: 0; font-size: 1rem; font-weight: 700; color: #fffaf2; line-height: 1.2; }
.android-modal-subtitle { margin: 2px 0 0; font-size: 12px; color: rgba(255,250,242,0.65); }
.android-modal-close {
  margin-left: auto;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fffaf2;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.android-modal-close:hover { background: rgba(255,255,255,0.25); }

/* App-store header layout */
.android-app-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  color: #ffe7c8;
  border: 1px solid rgba(255,255,255,0.2);
}
.android-app-info { flex: 1; min-width: 0; }
.android-modal-publisher { margin: 2px 0 6px; font-size: 11px; color: rgba(255,250,242,0.6); }
.android-app-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.android-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.android-badge--green { background: rgba(16,185,129,0.25); color: #6ee7b7; }
.android-badge--blue  { background: rgba(59,130,246,0.25); color: #93c5fd; }
.android-badge--gray  { background: rgba(255,255,255,0.1); color: rgba(255,250,242,0.7); }
.android-stat-value--green { color: #22c55e; }

/* Features list */
.android-features {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 12px 14px;
}
.android-features-title { margin: 0 0 8px; font-size: 12px; font-weight: 700; color: #166534; text-transform: uppercase; letter-spacing: 0.05em; }
.android-feature-list { display: flex; flex-direction: column; gap: 6px; }
.android-feature-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #1e293b; }

/* Security box */
.android-security-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.android-security-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.android-security-rows { display: flex; flex-direction: column; }
.android-security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  border-bottom: 1px solid #f1f5f9;
}
.android-security-row:last-child { border-bottom: none; }
.android-security-row--hash { flex-wrap: wrap; align-items: flex-start; }
.android-security-label { color: #64748b; font-weight: 600; flex-shrink: 0; }
.android-security-value--good {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #15803d;
  font-weight: 600;
}
.android-vt-link {
  margin-left: 6px;
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.android-vt-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.android-vt-upload-btn:hover { background: #f0fdf4; border-color: #bbf7d0; }

/* Install guide */
.android-install-guide {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
}
.android-install-guide summary {
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  color: #475569;
  list-style: none;
  user-select: none;
}
.android-install-guide summary::-webkit-details-marker { display: none; }
.android-install-guide summary::before { content: '▸ '; font-size: 11px; color: var(--primary); }
.android-install-guide[open] summary::before { content: '▾ '; }
.android-install-steps { margin: 0; padding: 0 14px 12px 30px; color: #334155; line-height: 1.7; }
.android-install-steps li { margin-bottom: 2px; }
.android-install-steps code { background: #f1f5f9; padding: 1px 5px; border-radius: 4px; font-size: 12px; }

/* Also on GitHub link */
.android-also-on-github { margin: 6px 0 0; text-align: center; font-size: 12px; color: #94a3b8; }
.android-also-on-github a { color: var(--primary); text-decoration: underline; }


.android-modal-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.android-stats-row {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 0;
}
.android-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.android-stat-value { font-size: 15px; font-weight: 700; color: #0f172a; }
.android-stat-label { font-size: 11px; color: #94a3b8; font-weight: 500; }
.android-stat-divider { width: 1px; height: 32px; background: #e2e8f0; flex-shrink: 0; }
.android-info-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.android-info-row { display: flex; align-items: baseline; gap: 8px; padding: 9px 14px; font-size: 13px; border-bottom: 1px solid #f1f5f9; }
.android-info-row:last-child { border-bottom: none; }
.android-info-row dt { flex-shrink: 0; width: 108px; color: #64748b; font-weight: 600; }
.android-info-row dd { margin: 0; color: #1e293b; word-break: break-word; }
.android-info-row dd a { color: var(--primary); text-decoration: underline; }
.android-info-row--hash dd { font-family: monospace; font-size: 11px; word-break: break-all; color: #475569; }
.android-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #0a403c, #0f5e55);
  color: #fffaf2;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
}
.android-download-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Privacy & Terms Modal ───────────────────────────────────────── */
.priv-modal-card {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 460px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}
.priv-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #0a403c, #0f5e55);
  color: #fffaf2;
}
.priv-modal-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #ffe7c8;
}
.priv-modal-title { margin: 0; font-size: 1rem; font-weight: 700; color: #fffaf2; }
.priv-modal-subtitle { margin: 2px 0 0; font-size: 12px; color: rgba(255,250,242,0.65); }
.priv-modal-close {
  margin-left: auto;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fffaf2;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.priv-modal-close:hover { background: rgba(255,255,255,0.25); }
.priv-modal-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.priv-section {
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.6;
}
.priv-section--warn {
  background: #fffbeb;
  border-color: #fde68a;
  color: #78350f;
}
.priv-section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}
.priv-section-title--warn { color: #92400e; }
.priv-section p { margin: 0; }
.priv-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 4px;
  font-size: 13px;
}
.priv-footer-links a { color: var(--primary); text-decoration: none; font-weight: 600; }
.priv-footer-links a:hover { text-decoration: underline; }
.priv-footer-links span { color: #cbd5e1; }

@media (max-width: 760px) {
  .topbar {
    padding: 12px 14px;
  }

  .topnav {
    gap: 8px;
    padding-bottom: 4px;
  }

  .topnav a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.66);
    border-color: #e1d7c7;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 19px;
  }

  .site-footer {
    padding: 0 12px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .android-download {
    width: 100%;
    min-width: 0;
  }
}

.hero-login-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(213, 106, 61, 0.5);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.hero-login-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.hero-auth-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}
.modal-content {
  background: #ffffff;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
}
.auth-modal-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}
.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0;
}
.close-btn:hover {
  color: #333;
}
.reports-modal-content {
  max-width: 600px;
}
.reports-modal-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reports-modal-title-row h2 {
  font-size: 1.1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}
.reports-window-badge {
  font-size: 0.75rem;
  background: #e0f2fe;
  color: #0369a1;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 500;
}

.auth-modal-body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.auth-modal-title {
  margin: 0 0 12px 0;
  font-size: 1.6rem;
  color: #142822;
  font-weight: 700;
}
.auth-modal-subtitle {
  margin: 0 0 28px 0;
  font-size: 1rem;
  color: #4a5d58;
  line-height: 1.5;
  max-width: 320px;
}
.auth-google-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.auth-privacy-note {
  margin: 0;
  font-size: 0.85rem;
  color: #6a7c77;
  line-height: 1.4;
  max-width: 300px;
}
.auth-error-msg {
  color: #d53d3d;
  background: rgba(213, 61, 61, 0.1);
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  width: 100%;
  font-size: 0.9rem;
}
.reports-modal-body {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
  background: #fdfbf7;
}
.reports-loading {
  text-align: center;
  color: #6a7c77;
  font-size: 0.95rem;
  padding: 24px 0;
}

/* User Avatar & Dropdown */
.user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.user-avatar-btn {
  background: transparent;
  border: 2px solid transparent;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: border-color 0.2s ease, transform 0.1s ease;
  overflow: hidden;
}

.user-avatar-btn:hover, .user-avatar-btn[aria-expanded="true"] {
  border-color: var(--primary);
  transform: scale(1.05);
}

.user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  min-width: 220px;
  z-index: 200;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s ease forwards;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.user-dropdown-email {
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.user-dropdown-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.user-dropdown-item:hover {
  background: rgba(20, 40, 34, 0.04);
}

.user-dropdown-item svg {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.user-dropdown-item:hover svg {
  color: var(--text-primary);
}

.user-dropdown-signout:hover {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}

.user-dropdown-signout:hover svg {
  color: #dc3545;
}
