:root {
  --bg: #0F172A;
  --bg-soft: #111827;
  --panel: rgba(15, 23, 42, 0.9);
  --panel-solid: #111827;
  --line: rgba(226, 232, 240, 0.14);
  --line-strong: rgba(6, 182, 212, 0.42);
  --text: #ffffff;
  --muted: #CBD5E1;
  --muted-2: #94A3B8;
  --cyan: #06B6D4;
  --cyan-strong: #0891B2;
  --navy: #0F172A;
  --green: #22C55E;
  --yellow: #facc15;
  --red: #fb7185;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --radius-card: 8px;
  --radius-button: 8px;
  --space-xs: 6px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-lg: 22px;
  --space-xl: 32px;
  --card-padding: 22px;
  --panel-padding: 18px;
  --button-height: 44px;
  --badge-height: 28px;
  --table-cell-padding: 14px 16px;
  --grid-gap: 16px;
  --font-label: 12px;
  --font-body: 15px;
  --font-card-title: 19px;
  --font-price: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 15%, rgba(59, 130, 246, 0.12), transparent 28rem),
    linear-gradient(180deg, #0F172A 0%, #111827 48%, #0B1120 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

.brand,
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: #03121d;
  background: linear-gradient(135deg, #E0F2FE, #06B6D4 45%, #67E8F9);
  box-shadow: 0 0 26px rgba(6, 182, 212, 0.28);
  font-size: 13px;
  letter-spacing: 0;
}

.site-nav,
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-auth-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.header-auth-status .small-btn {
  min-height: 30px;
  padding: 0 10px;
}

.header-auth-status .primary {
  border-color: transparent;
  color: #06121F;
  background: linear-gradient(135deg, #E0F2FE, #06B6D4);
}

.header-auth-status.is-guest #headerDashboardButton,
.header-auth-status.is-guest #headerLogoutButton,
.header-auth-status.is-user #headerLoginButton {
  display: none;
}

.nav-link,
.side-link,
.text-btn {
  border: 0;
  color: var(--muted);
  background: transparent;
}

.nav-link {
  padding: 10px 14px;
  border-radius: var(--radius-button);
}

.nav-link:hover,
.nav-link.primary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.mobile-menu,
.mobile-nav {
  display: none;
}

.view {
  display: none;
}

.hidden {
  display: none !important;
}

.view.active {
  display: block;
}

.auth-view.active {
  display: grid;
  min-height: calc(100vh - 74px);
  place-items: center;
  padding: 32px 16px 64px;
}

.auth-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  width: min(1120px, 100%);
}

.auth-panel,
.auth-card,
.upgrade-modal {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.auth-panel {
  padding: 34px;
}

.auth-panel h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.auth-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
  font-weight: 900;
}

.auth-brand small {
  display: block;
  color: var(--muted);
}

.auth-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.auth-benefits span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 800;
}

.auth-card {
  padding: var(--card-padding);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.auth-tab {
  min-height: var(--button-height);
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.auth-tab.active {
  color: #06121F;
  border-color: transparent;
  background: linear-gradient(135deg, #E0F2FE, #06B6D4);
}

.auth-form {
  display: none;
  gap: 14px;
}

.auth-form.active {
  display: grid;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.password-strength {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.password-strength span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 33%, rgba(255, 255, 255, 0.1) 33% 100%);
}

.password-strength.medium span {
  background: linear-gradient(90deg, #F59E0B 0 66%, rgba(255, 255, 255, 0.1) 66% 100%);
}

.password-strength.strong span {
  background: linear-gradient(90deg, var(--green) 0 100%);
}

.captcha-box,
.security-note {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.5;
}

.captcha-box {
  display: grid;
  gap: 4px;
}

.captcha-box strong {
  color: var(--text);
}

.verification-panel {
  text-align: center;
}

.verification-panel h2 {
  margin: 0;
}

.verification-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.verification-panel strong {
  color: var(--text);
}

.verification-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 999px;
  color: #06121F;
  background: linear-gradient(135deg, #E0F2FE, #06B6D4);
  font-weight: 900;
}

.auth-callback-view {
  min-height: 100vh;
  padding: 132px var(--space-lg) 80px;
  background:
    radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
}

.auth-result-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.auth-result-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-size: 30px;
  font-weight: 900;
}

.auth-result-icon.success {
  color: #052e16;
  background: linear-gradient(135deg, #dcfce7, #22c55e);
}

.auth-result-icon.error {
  color: #450a0a;
  background: linear-gradient(135deg, #fee2e2, #f87171);
}

.auth-result-card h1 {
  margin-bottom: 12px;
}

.auth-result-card p {
  color: var(--muted);
}

.auth-result-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.form-grid.compact {
  gap: 12px;
}

.check-row {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.check-row input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 58px 0 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
}

.hero-claim {
  margin-bottom: 16px;
  color: #dff9ff;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
}

.hero-text,
.section-heading p,
.audience-band p,
.feature-card p,
.price-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  font-size: 18px;
}

.hero-actions,
.topbar-actions,
.generator-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:disabled,
.small-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.btn:hover,
.feature-card:hover,
.price-card:hover,
.lead-card:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #06121F;
  background: linear-gradient(135deg, #E0F2FE, #06B6D4 45%, #67E8F9);
  box-shadow: 0 18px 40px rgba(6, 182, 212, 0.22);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(6, 182, 212, 0.12);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.badge,
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--badge-height);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dce9f7;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-product {
  position: relative;
}

.product-window {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(11, 17, 32, 0.98));
  box-shadow: var(--shadow);
  animation: floatIn 700ms ease both;
}

.window-top {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted-2);
}

.mini-dashboard {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 12px;
  margin-bottom: 14px;
}

.mini-dashboard div,
.mail-preview,
.pipeline-preview span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.mini-dashboard div {
  padding: 18px;
}

.mini-dashboard p,
.mail-preview p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.mini-dashboard strong {
  display: block;
  font-size: 26px;
}

.pipeline-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.pipeline-preview span {
  padding: 14px 8px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.mail-preview {
  padding: 18px;
}

.logo-system {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(6, 182, 212, 0.08);
}

.logo-placeholder {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  color: #02111d;
  background: linear-gradient(135deg, #F8FAFC, #67E8F9);
  font-weight: 900;
}

.logo-system p,
.portfolio-grid p,
.client-file p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.feature-grid,
.pricing-grid,
.metrics-grid,
.dashboard-grid,
.tool-grid,
.analysis-grid,
.portfolio-grid {
  display: grid;
  gap: var(--grid-gap);
  align-items: stretch;
}

.feature-grid,
.pricing-grid,
.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metrics-grid-wide {
  grid-template-columns: repeat(5, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card,
.price-card,
.panel,
.metric-card,
.pipeline-column,
.portfolio-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.84));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.panel:hover,
.metric-card:hover,
.pipeline-column:hover {
  border-color: rgba(148, 163, 184, 0.24);
}

.portfolio-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portfolio-grid article {
  padding: var(--panel-padding);
}

.portfolio-grid span {
  display: inline-block;
  margin: 6px 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card,
.price-card,
.metric-card {
  padding: var(--card-padding);
  transition: transform 160ms ease;
}

.feature-card,
.metric-card,
.portfolio-grid article,
.process-grid article,
.comparison-grid article,
.faq-grid article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.feature-card h3,
.price-card h3,
.portfolio-grid strong {
  min-height: 48px;
}

.icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--cyan);
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-height: 46px;
  margin: 0 0 var(--space-md);
  color: var(--text);
  font-size: var(--font-price);
  font-weight: 900;
  line-height: 1.1;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding-top: calc(var(--card-padding) + 20px);
}

.price-card h3 {
  display: flex;
  align-items: flex-start;
  margin: 0 0 var(--space-md);
  font-size: var(--font-card-title);
  line-height: 1.25;
}

.price-card > p:not(.price) {
  min-height: 104px;
  margin: 0;
}

.price-card.highlighted {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.14), rgba(15, 23, 42, 0.94));
}

.recommended {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--badge-height);
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  color: #06121F;
  background: #67E8F9;
  font-size: var(--font-label);
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.process-grid,
.comparison-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.comparison-grid,
.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.process-grid article,
.comparison-grid article,
.faq-grid article,
.pricing-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.process-grid article,
.comparison-grid article,
.faq-grid article {
  padding: 22px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #06121F;
  background: var(--cyan);
  font-weight: 900;
}

.pricing-table {
  margin-top: 16px;
  overflow-x: auto;
  overflow-y: hidden;
}

.pricing-table div {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  min-width: 680px;
  min-height: 54px;
  padding: var(--table-cell-padding);
  border-bottom: 1px solid var(--line);
}

.pricing-table div:first-child {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.pricing-table span,
.pricing-table strong {
  display: flex;
  align-items: center;
  min-height: 24px;
}

.pricing-table div:last-child {
  border-bottom: 0;
}

.price-card ul {
  padding-left: 18px;
}

.audience-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer {
  display: flex;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 52px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 80px;
}

.legal-page .brand {
  margin-bottom: 24px;
}

.legal-page .panel {
  padding: 28px;
}

.legal-page h1 {
  margin-bottom: 20px;
}

.legal-page h2 {
  margin: 28px 0 10px;
  font-size: clamp(20px, 3vw, 28px);
}

.legal-page p {
  color: var(--muted);
  line-height: 1.65;
}

.legal-page a {
  color: var(--primary);
  font-weight: 800;
}

.legal-form {
  margin-top: 24px;
}

.legal-footer {
  margin-top: 0;
}

.app-shell.active {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  width: min(1440px, 100%);
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 0 16px 24px;
}

.sidebar {
  position: sticky;
  top: 84px;
  align-self: start;
  height: calc(100vh - 104px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.88);
}

.sidebar-brand {
  margin-bottom: 24px;
}

.sidebar-brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted-2);
}

.side-link {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  padding: 12px;
  border-radius: var(--radius);
  text-align: left;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.side-link.active,
.side-link:hover {
  color: var(--text);
  background: rgba(6, 182, 212, 0.14);
}

.side-link:hover {
  transform: translateX(2px);
}

.side-link.subtle {
  margin-top: 20px;
  color: var(--muted-2);
}

.app-main {
  min-width: 0;
  padding-left: 18px;
}

.app-topbar {
  position: sticky;
  top: 73px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(14px);
}

.app-topbar h2 {
  margin-bottom: 0;
  font-size: 32px;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  color: var(--text);
  background: rgba(15, 23, 42, 0.86);
  outline: none;
}

select,
input {
  min-height: var(--button-height);
  padding: 0 12px;
}

textarea {
  padding: 12px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.16);
}

.app-section {
  display: none;
}

.app-section.active {
  display: block;
}

.onboarding-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-lg);
  padding: 28px;
}

.onboarding-hero h2 {
  margin: 4px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.onboarding-hero p {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.7;
}

.onboarding-actions,
.tutorial-controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.onboarding-actions {
  justify-content: flex-end;
}

.onboarding-grid,
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-bottom: var(--space-lg);
}

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

.tutorial-step {
  display: grid;
  gap: var(--space-sm);
  min-height: 170px;
  align-content: start;
}

.tutorial-step h3,
.help-card h4 {
  margin: 0;
}

.tutorial-step p,
.help-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.step-pill {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #CFFAFE;
  background: rgba(6, 182, 212, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.help-card,
.empty-state {
  display: grid;
  gap: var(--space-sm);
  padding: var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.empty-state {
  align-content: center;
  min-height: 96px;
  color: var(--muted);
}

.empty-state strong {
  color: var(--text);
}

.empty-state p {
  margin: 0;
  line-height: 1.55;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-grid,
.tool-grid,
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: stretch;
  margin-top: var(--space-md);
}

.panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: var(--panel-padding);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  align-items: center;
  min-height: 38px;
  margin-bottom: var(--space-md);
}

.panel-head h3 {
  min-width: 0;
  margin-bottom: 0;
  line-height: 1.25;
}

.text-btn {
  padding: 0;
  color: var(--cyan);
  font-weight: 800;
}

.stack-list,
.lead-list {
  display: grid;
  gap: var(--space-sm);
}

.mini-item,
.lead-card,
.pipeline-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.mini-item,
.pipeline-card {
  padding: var(--space-md);
}

.mini-item p,
.lead-card p,
.pipeline-card p,
.helper-text {
  color: var(--muted);
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

label {
  display: grid;
  gap: 7px;
  color: #d7e2f0;
  font-size: 13px;
  font-weight: 800;
}

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

.form-error {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--red);
  font-weight: 800;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-status.active {
  color: #67e8f9;
}

.form-status.warning {
  color: #fde68a;
}

.filters {
  display: grid;
  grid-template-columns: 1fr 170px 170px;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.import-box {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.import-box p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.import-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lead-card {
  padding: var(--space-md);
  transition: transform 160ms ease;
}

.saved-views {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.lead-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.lead-table-row {
  display: grid;
  grid-template-columns: repeat(var(--lead-columns, 9), minmax(130px, 1fr)) minmax(220px, 1.2fr);
  gap: 10px;
  align-items: center;
  min-width: 980px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.lead-table-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-table-row > span,
.lead-table-row > div {
  min-width: 0;
  overflow-wrap: anywhere;
}

.leadfinder-grid {
  display: grid;
  gap: var(--grid-gap);
}

.leadfinder-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.insight-card {
  display: grid;
  gap: 10px;
  padding: var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.insight-card > span {
  color: var(--muted);
  font-size: var(--font-label);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.insight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.insight-line,
.bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.insight-line em,
.bar-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.bar-row {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
}

.bar-row i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #67e8f9);
}

.leadfinder-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.leadfinder-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.3fr) minmax(180px, 1fr) minmax(130px, .8fr) minmax(150px, 1fr) minmax(110px, .7fr) minmax(115px, .8fr) minmax(90px, .6fr) minmax(120px, .8fr) minmax(90px, .6fr) minmax(250px, 1.4fr);
  gap: 10px;
  align-items: center;
  min-width: 1420px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.leadfinder-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.leadfinder-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.leadfinder-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.leadfinder-card {
  display: grid;
  gap: 14px;
  padding: var(--panel-padding);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.045);
}

.leadfinder-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.leadfinder-card-head strong {
  display: block;
  font-size: 18px;
}

.leadfinder-card-head small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.leadfinder-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.score-badge {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 92px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 950;
  line-height: 1.15;
}

.score-badge em {
  color: inherit;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.score-badge.hot {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.15);
}

.score-badge.warm {
  color: #a5f3fc;
  background: rgba(6, 182, 212, 0.14);
}

.score-badge.maybe {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.13);
}

.score-badge.cold {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.12);
}

.leadfinder-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.leadfinder-data-grid span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
}

.leadfinder-data-grid strong,
.leadfinder-data-grid a {
  min-width: 0;
  color: var(--text);
  overflow-wrap: anywhere;
  font-size: 13px;
}

.leadfinder-toolbar label {
  min-width: 150px;
}

.leadfinder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.leadfinder-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
}

.lead-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lead-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.small-btn {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  line-height: 1.2;
}

.small-btn.danger {
  border-color: rgba(251, 113, 133, 0.42);
  color: #fecdd3;
}

.status-hot,
.priority-hoch {
  border-color: rgba(34, 197, 94, 0.4);
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
}

.priority-mittel {
  border-color: rgba(250, 204, 21, 0.4);
  color: #fef3c7;
  background: rgba(250, 204, 21, 0.12);
}

.priority-niedrig,
.status-lost {
  border-color: rgba(251, 113, 133, 0.4);
  color: #fecdd3;
  background: rgba(251, 113, 133, 0.1);
}

.analysis-grid {
  grid-template-columns: repeat(2, 1fr);
}

.analysis-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.analysis-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.analysis-card strong {
  display: block;
  margin-top: 8px;
}

.analysis-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.output-box {
  width: 100%;
  min-height: 360px;
  margin-top: 14px;
  color: #e8f6ff;
  line-height: 1.65;
}

.subject-output {
  margin-top: 14px;
  font-weight: 800;
}

.small-output {
  min-height: 130px;
}

.settings-divider {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.settings-divider h3 {
  margin-bottom: 6px;
}

.settings-divider p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pipeline-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(190px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.pipeline-column {
  min-height: 360px;
  padding: 12px;
}

.pipeline-column h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.pipeline-card {
  margin-bottom: 10px;
}

.pipeline-card strong {
  display: block;
  margin-bottom: 6px;
}

.settings-panel {
  max-width: 860px;
}

.client-file {
  display: grid;
  gap: 16px;
}

.client-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.client-summary div,
.timeline div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.client-summary span,
.timeline span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.client-summary strong {
  display: block;
  margin-top: 7px;
}

.timeline {
  display: grid;
  gap: 10px;
}

.report-bars {
  display: grid;
  gap: 14px;
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.workspace-list {
  display: grid;
  gap: 10px;
}

.workspace-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.workspace-item span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workspace-item strong small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.step-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.step-list span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #06202a;
  font-weight: 900;
  background: var(--accent);
}

.step-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.notice-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  margin-top: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(6, 182, 212, 0.08);
}

.notice-card strong {
  color: var(--text);
}

.notice-card.warning {
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.1);
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.faq-accordion summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--text);
  font-weight: 800;
}

.faq-accordion p {
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.6;
}

.support-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.support-contact-grid div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.support-contact-grid span {
  color: var(--muted);
  font-size: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-success {
  color: #67e8f9;
  font-size: 14px;
  font-weight: 700;
}

.stage-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.35);
}

.compact-form {
  margin: 14px 0 18px;
}

.assistant-prompts,
.chat-input-row,
.export-grid,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.chat-window {
  display: grid;
  align-content: start;
  min-height: 360px;
  max-height: 460px;
  overflow: auto;
  gap: 12px;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.62);
}

.chat-message {
  width: min(86%, 720px);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  white-space: pre-wrap;
}

.chat-message.user {
  justify-self: end;
  border-color: rgba(6, 182, 212, 0.45);
  background: rgba(6, 182, 212, 0.12);
}

.chat-message p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.chat-input-row input {
  flex: 1 1 280px;
}

.forecast-chart {
  display: grid;
  gap: 16px;
}

.forecast-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.forecast-row i,
.goal-card i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), #38BDF8);
}

.goal-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.goal-card div,
.pagination {
  justify-content: space-between;
}

.goal-card span,
.pagination span {
  color: var(--muted);
  font-weight: 800;
}

.pagination {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

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

.small-btn.is-active {
  border-color: var(--line-strong);
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.12);
}

.report-bar {
  display: grid;
  gap: 8px;
}

.report-bar div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.report-bar strong {
  color: var(--text);
}

.report-bar i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), #38BDF8);
}

@media print {
  body * {
    visibility: hidden;
  }

  #offerOutput,
  #offerOutput * {
    visibility: visible;
  }

  #offerOutput {
    position: absolute;
    inset: 24px;
    width: calc(100% - 48px);
    min-height: auto;
    color: #111827;
    background: #ffffff;
    border: 0;
  }
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: 360px;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  background: #111827;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: 180ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal-backdrop.active,
.modal-backdrop.open {
  display: grid;
}

.upgrade-modal {
  width: min(860px, 100%);
  padding: 22px;
}

.upgrade-modal p {
  color: var(--muted);
  line-height: 1.6;
}

.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.upgrade-grid .price-card {
  min-height: 178px;
  padding-top: var(--card-padding);
  color: var(--text);
  text-align: left;
}

.upgrade-grid .price-card h3 {
  min-height: auto;
}

.upgrade-grid .price-card .price {
  min-height: auto;
  margin-bottom: var(--space-sm);
}

.upgrade-grid .price-card span {
  color: var(--muted);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-auth-status {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    border-radius: 14px;
  }

  .header-auth-status #headerAuthText {
    width: 100%;
    text-align: right;
  }

  .hero,
  .auth-shell,
  .audience-band,
  .dashboard-grid,
  .tool-grid,
  .split-layout,
  .process-grid,
  .comparison-grid,
  .faq-grid,
  .leadfinder-data-grid {
    grid-template-columns: 1fr;
  }

  .onboarding-hero,
  .onboarding-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .metrics-grid,
  .portfolio-grid,
  .pricing-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .app-shell.active {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: auto;
    margin-bottom: 16px;
  }

  .sidebar-brand {
    grid-column: 1 / -1;
  }

  .app-main {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .onboarding-hero {
    padding: 20px;
  }

  .onboarding-actions {
    justify-content: flex-start;
  }

  .onboarding-actions .btn,
  .tutorial-controls .btn,
  .tutorial-controls .text-btn {
    width: 100%;
  }

  .site-nav {
    display: none;
  }

  .header-auth-status {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }

  .header-auth-status #headerAuthText {
    width: auto;
    max-width: 100%;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .mobile-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-button);
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-nav.open {
    display: grid;
    width: min(100% - 32px, 1180px);
    margin: -6px auto 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--panel-solid);
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .feature-grid,
  .pricing-grid,
  .pricing-grid-four,
  .metrics-grid,
  .form-grid,
  .analysis-grid,
  .leadfinder-grid,
  .leadfinder-insights,
  .portfolio-grid,
  .client-summary,
  .support-contact-grid,
  .workspace-grid,
  .filters,
  .mini-dashboard {
    grid-template-columns: 1fr;
  }

  .pricing-table div {
    grid-template-columns: 1.1fr repeat(3, minmax(120px, 1fr));
  }

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

  .price-card > p:not(.price) {
    min-height: auto;
  }

  .feature-card h3,
  .price-card h3,
  .portfolio-grid strong {
    min-height: auto;
  }

  .pipeline-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer,
  .app-topbar,
  .lead-top {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .auth-tabs,
  .upgrade-grid {
    grid-template-columns: 1fr;
  }

  .topbar-actions,
  .topbar-actions select,
  .topbar-actions .btn {
    width: 100%;
  }

  .site-header,
  .section,
  .footer,
  .app-shell.active {
    width: min(100% - 24px, 1180px);
  }

  .app-shell.active {
    padding-inline: 0;
  }

  .panel-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .modal-backdrop {
    align-items: end;
    padding: 12px;
  }

  .upgrade-modal {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }
}

@media (max-width: 430px) {
  :root {
    --card-padding: 18px;
    --panel-padding: 16px;
    --grid-gap: 12px;
  }

  .hero {
    width: min(100% - 24px, 1180px);
  }

  .auth-view.active {
    padding-inline: 12px;
  }

  .auth-panel {
    padding: 22px;
  }

  .auth-panel h1 {
    font-size: 34px;
  }

  .price {
    font-size: 30px;
  }

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

  .side-link {
    margin-bottom: 6px;
  }
}
