:root {
  --bg: #0d1020;
  --bg-soft: #171b33;
  --panel: rgba(18, 22, 39, 0.8);
  --panel-solid: #14182b;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7ff;
  --muted: #aab3d5;
  --accent: #4f8cff;
  --accent-2: #65f0c7;
  --warm: #ffd06b;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(4, 6, 15, 0.4);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 140, 255, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(101, 240, 199, 0.18), transparent 28%),
    linear-gradient(180deg, #0d1020 0%, #11162a 46%, #0c1020 100%);
  color: var(--text);
}

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

img, video {
  max-width: 100%;
  display: block;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: max(40px, env(safe-area-inset-bottom));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 28% 28%, #fff 0 12%, transparent 14%),
    linear-gradient(140deg, var(--accent-2), #2563eb 62%, #ff9966 100%);
  box-shadow: 0 16px 32px rgba(79, 140, 255, 0.22);
}

.brand-copy {
  font-family: "Fraunces", serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-links a {
  color: var(--muted);
  font-weight: 700;
}

.topbar-links a.is-active,
.topbar-links a:hover {
  color: var(--text);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #0d1323;
  background: linear-gradient(135deg, var(--accent-2), var(--warm));
  box-shadow: 0 18px 30px rgba(101, 240, 199, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-link {
  background: transparent;
  color: var(--muted);
  padding-inline: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 16px;
}

.hero-card,
.card,
.profile-card,
.app-shell,
.notice-banner {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: clamp(26px, 5vw, 54px);
}

.hero-card h1,
.page-title,
.profile-handle {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.95;
}

.hero-card h1 {
  font-size: clamp(3.2rem, 9vw, 6rem);
}

.hero-card p,
.section-copy,
.muted {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--warm);
}

.notice-banner {
  padding: 14px 18px;
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(255, 208, 107, 0.14), rgba(101, 240, 199, 0.12));
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 24px;
}

.card h2,
.card h3 {
  margin-top: 0;
}

.feature-list,
.stat-list {
  display: grid;
  gap: 14px;
}

.feature-item,
.stat-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item strong,
.stat-item strong {
  display: block;
  margin-bottom: 6px;
}

.section {
  padding: 18px 0;
}

.form-card {
  width: min(560px, 100%);
  margin: 42px auto 0;
  padding: 28px;
}

.form-stack {
  display: grid;
  gap: 16px;
}

.field-stack {
  display: grid;
  gap: 8px;
}

.field-stack label {
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

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

.message {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
}

.message-error {
  background: rgba(255, 115, 115, 0.12);
  color: #ffb5b5;
  border: 1px solid rgba(255, 115, 115, 0.18);
}

.message-success {
  background: rgba(101, 240, 199, 0.12);
  color: #befbe9;
  border: 1px solid rgba(101, 240, 199, 0.18);
}

.message-info {
  background: rgba(79, 140, 255, 0.12);
  color: #d3e0ff;
  border: 1px solid rgba(79, 140, 255, 0.18);
}

.referral-banner {
  display: grid;
  gap: 6px;
}

.referral-banner span {
  font-size: 0.92rem;
  opacity: 0.92;
}

.mini-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}

.mini-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(71, 57, 43, 0.1);
  color: #5f4b40;
  font-size: 0.9rem;
  font-weight: 700;
}

.field-help {
  color: var(--muted);
  font-size: 0.88rem;
}

.signup-note-card,
.next-step-card,
.status-hero {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(71, 57, 43, 0.09);
}

.signup-note-card {
  margin-top: 16px;
}

.signup-note-card strong,
.next-step-card h2 {
  margin: 0;
}

.signup-note-card span,
.next-step-card .section-copy,
.status-hero p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.page-copy {
  margin: 16px auto 0;
  width: min(560px, 100%);
  color: var(--muted);
}

.link-muted {
  color: var(--accent-2);
  font-weight: 800;
}

.app-shell {
  padding: 26px;
  margin-top: 28px;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pill-live {
  background: rgba(68, 183, 129, 0.16);
  color: #1f7a54;
}

.status-pill-draft {
  background: rgba(214, 106, 61, 0.12);
  color: #9a4c2b;
}

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

.stats-grid .stat-item {
  text-align: center;
}

.stats-grid .stat-item strong {
  font-size: 1.7rem;
  margin-bottom: 4px;
}

.key-value {
  display: grid;
  gap: 12px;
}

.key-value-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.key-value-row span {
  color: var(--muted);
}

.profile-page {
  min-height: 100vh;
  padding: 22px 16px 120px;
}

.profile-shell {
  width: min(560px, 100%);
  margin: 0 auto;
}

.profile-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.profile-top-actions {
  display: flex;
  gap: 10px;
}

.icon-button {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.profile-card {
  padding: 26px 22px;
  text-align: center;
}

.profile-avatar,
.profile-avatar-placeholder {
  width: 116px;
  height: 116px;
  border-radius: 999px;
  margin: 0 auto 14px;
  border: 4px solid rgba(255, 255, 255, 0.86);
  object-fit: cover;
  object-position: center;
}

.profile-avatar-placeholder {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 2.4rem;
  font-weight: 800;
}

.profile-display-name {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 700;
}

.profile-handle {
  font-size: clamp(2.7rem, 10vw, 4.4rem);
}

.profile-bio {
  margin: 14px auto 22px;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.section-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.section-label {
  margin: 0 0 8px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm);
  font-weight: 800;
}

.profile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.profile-link-main {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.badge {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.badge-icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.profile-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.profile-platform-cta {
  display: inline-flex;
  justify-content: center;
  width: min(100%, 360px);
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #10131f;
  font-weight: 800;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.ui-icon {
  width: 1.12rem;
  height: 1.12rem;
  flex-shrink: 0;
}

.ui-icon-topbar {
  width: 1.18rem;
  height: 1.18rem;
}

.ui-icon-link {
  width: 1rem;
  height: 1rem;
}

.ui-icon-chip {
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.ui-icon-arrow {
  width: 0.95rem;
  height: 0.95rem;
}

.site-footer {
  padding: 26px 0 8px;
  text-align: center;
  color: var(--muted);
}

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

.footer-divider {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 900px) {
  .hero,
  .app-grid,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 560px);
  }

  .topbar {
    padding: 14px 0;
  }

  .topbar-links {
    gap: 10px;
  }

  .topbar-links a:not(.btn) {
    display: none;
  }

  .topbar-links .btn {
    padding-inline: 16px;
  }

  input,
  textarea,
  select,
  .btn {
    font-size: 16px;
  }

  .form-card {
    width: 100%;
    margin-top: 28px;
    padding: 22px 16px;
  }

  .profile-page {
    padding-inline: 12px;
  }

  .profile-card {
    padding: 22px 16px;
  }

  .app-shell {
    padding: 22px 16px;
  }

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

  .button-row .btn,
  .button-row a.btn,
  .button-row button.btn {
    width: 100%;
  }

  .key-value-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mini-steps span {
    width: 100%;
    justify-content: center;
  }
}

body.home-page,
body.auth-page,
body.app-page,
body.support-page {
  --bg: #f7efe3;
  --bg-soft: #efe4d3;
  --panel: rgba(255, 250, 244, 0.88);
  --panel-solid: #fff7ed;
  --line: rgba(71, 57, 43, 0.12);
  --text: #231815;
  --muted: #6e5c50;
  --accent: #d66a3d;
  --accent-2: #f1b16a;
  --warm: #f4d79d;
  --shadow: 0 28px 70px rgba(88, 52, 28, 0.14);
  background:
    radial-gradient(circle at top left, rgba(214, 106, 61, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(241, 177, 106, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f0e4 0%, #f3e6d7 52%, #f6eee5 100%);
  color: var(--text);
}

body.home-page .topbar,
body.auth-page .topbar,
body.app-page .topbar,
body.feedback-page .topbar,
body.support-page .topbar {
  background: rgba(247, 239, 227, 0.72);
}

body.home-page .topbar-links a,
body.auth-page .topbar-links a,
body.app-page .topbar-links a,
body.feedback-page .topbar-links a,
body.support-page .topbar-links a {
  color: var(--muted);
}

body.home-page .topbar-links a.is-active,
body.home-page .topbar-links a:hover,
body.auth-page .topbar-links a.is-active,
body.auth-page .topbar-links a:hover,
body.app-page .topbar-links a.is-active,
body.app-page .topbar-links a:hover,
body.feedback-page .topbar-links a.is-active,
body.feedback-page .topbar-links a:hover,
body.support-page .topbar-links a.is-active,
body.support-page .topbar-links a:hover {
  color: var(--text);
}

body.home-page .btn-primary,
body.auth-page .btn-primary,
body.app-page .btn-primary,
body.feedback-page .btn-primary,
body.support-page .btn-primary {
  color: #fff9f4;
  background: linear-gradient(135deg, #c7582d, #eb9360 56%, #f1c780 100%);
  box-shadow: 0 16px 28px rgba(198, 88, 45, 0.18);
}

body.home-page .btn-secondary,
body.auth-page .btn-secondary,
body.app-page .btn-secondary,
body.feedback-page .btn-secondary,
body.support-page .btn-secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  border: 1px solid rgba(71, 57, 43, 0.12);
}

body.home-page .btn-link,
body.auth-page .btn-link,
body.app-page .btn-link,
body.feedback-page .btn-link,
body.support-page .btn-link {
  color: #8a4e31;
}

body.home-page .hero-card,
body.home-page .card,
body.auth-page .card,
body.app-page .card,
body.feedback-page .card,
body.support-page .card,
body.auth-page .form-card,
body.app-page .app-shell,
body.feedback-page .feedback-composer-card,
body.support-page .form-card {
  background: rgba(255, 250, 244, 0.84);
  border: 1px solid rgba(71, 57, 43, 0.1);
  box-shadow: 0 24px 60px rgba(88, 52, 28, 0.12);
}

body.home-page input,
body.home-page textarea,
body.home-page select,
body.auth-page input,
body.auth-page textarea,
body.auth-page select,
body.app-page input,
body.app-page textarea,
body.app-page select,
body.feedback-page input,
body.feedback-page textarea,
body.feedback-page select,
body.support-page input,
body.support-page textarea,
body.support-page select {
  border: 1px solid rgba(71, 57, 43, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

body.home-page input::placeholder,
body.home-page textarea::placeholder,
body.auth-page input::placeholder,
body.auth-page textarea::placeholder,
body.app-page input::placeholder,
body.app-page textarea::placeholder,
body.feedback-page input::placeholder,
body.feedback-page textarea::placeholder,
body.support-page input::placeholder,
body.support-page textarea::placeholder {
  color: rgba(71, 57, 43, 0.42);
}

body.home-page .message-info,
body.auth-page .message-info,
body.app-page .message-info,
body.feedback-page .message-info,
body.support-page .message-info {
  background: rgba(214, 106, 61, 0.08);
  color: #8a4e31;
  border: 1px solid rgba(214, 106, 61, 0.12);
}

body.auth-page .message-success,
body.feedback-page .message-success,
body.support-page .message-success {
  background: rgba(215, 139, 72, 0.1);
  color: #8a4e31;
  border: 1px solid rgba(215, 139, 72, 0.14);
}

body.auth-page .message-error,
body.feedback-page .message-error,
body.support-page .message-error {
  background: rgba(198, 88, 45, 0.1);
  color: #9e4a2b;
  border: 1px solid rgba(198, 88, 45, 0.14);
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-home {
  align-items: start;
}

.hero-card-home {
  position: relative;
  overflow: hidden;
}

.hero-card-home::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(198, 88, 45, 0.12), transparent 68%);
  pointer-events: none;
}

.founder-banner {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 241, 219, 0.88), rgba(252, 225, 195, 0.62));
  border: 1px solid rgba(198, 88, 45, 0.12);
}

.founder-banner-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.founder-chip,
.founder-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.founder-chip {
  background: #1f1715;
  color: #fff5ee;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-count {
  background: rgba(255, 255, 255, 0.72);
  color: #8a4e31;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(71, 57, 43, 0.09);
  color: #5f4b40;
  font-weight: 700;
  font-size: 0.88rem;
}

.announcement-card {
  margin-top: 24px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(71, 57, 43, 0.08);
}

.announcement-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #8a4e31;
}

.announcement-feed {
  display: grid;
  gap: 10px;
}

.announcement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(247, 239, 227, 0.85);
}

.announcement-item strong {
  font-size: 0.95rem;
}

.announcement-item span {
  color: var(--muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.hero-preview-panel {
  display: grid;
}

.hero-preview-surface {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.phone-frame {
  padding: 16px;
  border-radius: 38px;
  background: linear-gradient(160deg, #2c1f1c, #6c3a2b 48%, #f0b47b 100%);
  box-shadow: 0 28px 60px rgba(88, 52, 28, 0.18);
}

.phone-card {
  min-height: 420px;
  padding: 26px 22px;
  border-radius: 30px;
}

.phone-card-cream {
  background:
    radial-gradient(circle at top right, rgba(241, 177, 106, 0.24), transparent 28%),
    linear-gradient(180deg, #fff9f1 0%, #f8ecdc 100%);
}

.phone-avatar {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  margin: 0 auto 14px;
  background:
    radial-gradient(circle at 30% 32%, #fff 0 10%, transparent 12%),
    linear-gradient(140deg, #cc643a, #f1c780);
}

.phone-title,
.phone-copy {
  margin: 0;
  text-align: center;
}

.phone-title {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
}

.phone-copy {
  margin-top: 10px;
  color: #6b5b50;
  line-height: 1.65;
}

.phone-link {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 800;
  text-align: center;
}

.phone-link-primary {
  background: linear-gradient(135deg, #d45b34, #ef9f6a);
  color: #fff9f4;
}

.phone-link-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: #231815;
  border: 1px solid rgba(71, 57, 43, 0.1);
}

.phone-link-soft {
  background: rgba(243, 215, 157, 0.62);
  color: #7b5036;
}

.preview-note-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.8);
  border: 1px solid rgba(71, 57, 43, 0.1);
}

.preview-note-card h2 {
  margin: 0 0 10px;
}

.preview-note-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.social-proof-grid {
  align-items: start;
}

.section-header-inline h2 {
  margin: 0;
}

.signup-proof-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.signup-proof-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(71, 57, 43, 0.08);
}

.signup-proof-item strong {
  display: block;
  margin-bottom: 6px;
}

.signup-proof-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.signup-proof-item span {
  color: #8a4e31;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.empty-state {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(71, 57, 43, 0.16);
}

.empty-state h3 {
  margin: 0 0 8px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.card-soft {
  background: rgba(255, 250, 244, 0.84);
}

.card-warm {
  background: linear-gradient(180deg, rgba(255, 241, 219, 0.84) 0%, rgba(248, 231, 210, 0.84) 100%);
}

.feature-item-light {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(71, 57, 43, 0.08);
}

.card-step {
  min-height: 100%;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin: 0 0 16px;
  background: linear-gradient(135deg, rgba(198, 88, 45, 0.12), rgba(241, 177, 106, 0.2));
  color: #8a4e31;
  font-weight: 800;
}

.btn-ghost-home {
  color: #8a4e31;
  background: transparent;
  border: 1px solid rgba(198, 88, 45, 0.16);
}

body.auth-page .form-card,
body.support-page .form-card {
  margin-top: 52px;
}

body.auth-page .page-title,
body.support-page .page-title,
body.app-page .page-title {
  line-height: 1;
}

body.auth-page .page-copy,
body.support-page .page-copy,
body.app-page .page-copy {
  color: var(--muted);
}

body.feedback-page .page-copy {
  color: var(--muted);
}

.feedback-hero {
  align-items: start;
}

.feedback-hero-card {
  width: min(880px, 100%);
}

.feedback-stats {
  margin-top: 18px;
}

.feedback-board-card,
.feedback-composer-card,
.feedback-guest-card {
  margin-top: 24px;
}

.feedback-board {
  display: grid;
  gap: 18px;
}

.feedback-post {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(71, 57, 43, 0.1);
  box-shadow: 0 16px 30px rgba(88, 52, 28, 0.08);
}

.feedback-post-topline,
.feedback-actions,
.feedback-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.feedback-post h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
}

.feedback-body {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.7;
}

.feedback-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.feedback-author {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.feedback-author a,
.feedback-author span {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.feedback-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill-feedback-review {
  background: rgba(255, 240, 214, 0.72);
  color: #8a4e31;
}

.pill-feedback-planned {
  background: rgba(255, 233, 214, 0.84);
  color: #9e5b21;
}

.pill-feedback-progress {
  background: rgba(233, 239, 255, 0.88);
  color: #2f5db7;
}

.pill-feedback-shipped {
  background: rgba(223, 246, 232, 0.88);
  color: #2a7b4e;
}

.feedback-like-button.is-liked {
  border-color: rgba(198, 88, 45, 0.32);
  background: rgba(255, 240, 231, 0.9);
}

.feedback-comments {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
}

.feedback-comment {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(71, 57, 43, 0.08);
}

.feedback-comment strong {
  display: block;
  margin-bottom: 2px;
}

.feedback-comment span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.feedback-comment p,
.feedback-empty-comments {
  margin: 0;
  color: var(--muted);
}

.feedback-comment-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.feedback-signin-inline {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.feedback-signin-inline a {
  color: #8a4e31;
  font-weight: 700;
  text-decoration: none;
}

body.profile-page {
  --bg: #0d1020;
  --bg-soft: #171b33;
  --panel: rgba(18, 22, 39, 0.8);
  --panel-solid: #14182b;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7ff;
  --muted: #aab3d5;
  --accent: #4f8cff;
  --accent-2: #65f0c7;
  --warm: #ffd06b;
  --shadow: 0 28px 80px rgba(4, 6, 15, 0.4);
}

@media (max-width: 900px) {
  .announcement-item,
  .signup-proof-item {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-card h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    font-size: 0.8rem;
  }

  .founder-banner-topline {
    align-items: flex-start;
  }

  .page-copy {
    width: 100%;
  }

  .status-hero,
  .next-step-card,
  .signup-note-card {
    padding: 14px 15px;
  }

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

  .feedback-post {
    padding: 16px;
    border-radius: 20px;
  }

  .feedback-post-topline,
  .feedback-actions {
    align-items: flex-start;
  }
}
