:root {
  --bg: #f4efe6;
  --bg-deep: #121212;
  --card: rgba(255, 251, 245, 0.78);
  --card-strong: #fffaf1;
  --text: #1d1a17;
  --muted: #6e6257;
  --line: rgba(29, 26, 23, 0.12);
  --accent: #e76f51;
  --accent-strong: #c94f32;
  --accent-soft: rgba(231, 111, 81, 0.15);
  --shadow: 0 20px 60px rgba(40, 24, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 203, 173, 0.7), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 232, 177, 0.85), transparent 34%),
    linear-gradient(180deg, #fff9f1 0%, #f4efe6 52%, #efe6da 100%);
}

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

img {
  max-width: 100%;
}

code {
  font-family: Consolas, Monaco, monospace;
  background: rgba(29, 26, 23, 0.08);
  padding: 2px 6px;
  border-radius: 999px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

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

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(29, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(231, 111, 81, 0.55);
  box-shadow: 0 0 0 4px rgba(231, 111, 81, 0.12);
}

.site-shell {
  padding-bottom: 56px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 32px));
}

.narrow-wide {
  width: min(900px, calc(100% - 32px));
}

.marketing-nav,
.simple-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 20px;
}

.brand-mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.card {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.subtle-card {
  margin: 0 0 22px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  padding: 32px;
}

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

h1,
h2,
h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(40px, 7vw, 74px);
}

h2 {
  font-size: clamp(26px, 4vw, 36px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.lead,
.section-copy,
.table-meta,
.example-card span,
.example-card small,
.feature-item,
.phone-copy,
.bio,
.contact {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 640px;
  font-size: 18px;
}

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

.center-actions {
  justify-content: center;
}

.btn,
.text-link {
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 26px rgba(231, 111, 81, 0.28);
  cursor: pointer;
}

.btn-secondary {
  background: rgba(29, 26, 23, 0.08);
  color: var(--text);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  box-shadow: none;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 800;
}

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

.hero-badges span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(29, 26, 23, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.pill-live {
  background: rgba(60, 166, 99, 0.15);
  color: #14643b;
}

.hero-preview {
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 320px);
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, #161616 0%, #2a1d1a 100%);
  box-shadow: 0 18px 38px rgba(31, 19, 13, 0.22);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.phone-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 20px 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.24), transparent 35%),
    linear-gradient(180deg, rgba(12, 16, 30, 0.96) 0%, rgba(20, 8, 24, 0.96) 100%);
  color: #fff;
}

.phone-avatar {
  width: 86px;
  height: 86px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

.phone-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
}

.phone-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.phone-link {
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  text-align: center;
  font-weight: 800;
}

.phone-link-alt {
  background: rgba(255, 255, 255, 0.12);
}

.phone-link-soft {
  background: rgba(255, 255, 255, 0.06);
}

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

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

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

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

.card-number {
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.compact-header {
  margin-bottom: 12px;
}

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

.template-card {
  min-height: 180px;
  padding: 20px;
  border-radius: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.template-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.theme-midnight-demo {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #0b1020 0%, #1b1633 100%);
}

.theme-linen-demo {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 34%),
    linear-gradient(180deg, #f0e6d9 0%, #d9c6b0 100%);
  color: #2f241d;
}

.theme-sunset-demo {
  background:
    radial-gradient(circle at top, rgba(255, 224, 168, 0.66), transparent 30%),
    linear-gradient(180deg, #ff7b54 0%, #ffb26b 100%);
}

.example-card,
.empty-state {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.example-card strong {
  font-size: 20px;
}

.example-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 20px;
}

.offer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 0 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.12) 0%, rgba(244, 162, 97, 0.18) 100%);
  border: 1px solid rgba(231, 111, 81, 0.18);
}

.offer-banner span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.feature-toggle {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.announcement-card {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.announcement-label {
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement-feed,
.signup-proof-list {
  display: grid;
  gap: 12px;
}

.announcement-item,
.signup-proof-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.announcement-item strong,
.signup-proof-item strong {
  display: block;
  margin-bottom: 4px;
}

.announcement-item span,
.signup-proof-item span,
.signup-proof-item p {
  color: var(--muted);
}

.social-proof-grid {
  margin-top: 22px;
}

.feature-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

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

.link-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.15fr);
  gap: 12px;
}

.link-builder {
  display: grid;
  gap: 12px;
}

.link-row-rich {
  grid-template-columns: minmax(130px, 0.45fr) minmax(160px, 0.7fr) minmax(0, 1.2fr);
}

.link-row.is-hidden-empty {
  display: none;
}

.link-builder-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notice,
.success,
.error {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid transparent;
  line-height: 1.55;
}

.notice {
  background: rgba(245, 197, 24, 0.12);
  border-color: rgba(245, 197, 24, 0.25);
  color: #735204;
}

.success {
  background: rgba(69, 179, 126, 0.14);
  border-color: rgba(69, 179, 126, 0.22);
  color: #16603d;
}

.error {
  background: rgba(220, 79, 67, 0.12);
  border-color: rgba(220, 79, 67, 0.2);
  color: #8f231a;
}

.center {
  text-align: center;
}

.stats-grid .card {
  margin-bottom: 0;
}

.stat-card {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.stat-card strong {
  font-size: 40px;
  font-family: "Fraunces", Georgia, serif;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(29, 26, 23, 0.08);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.table-link {
  color: var(--accent-strong);
  font-weight: 800;
}

.preview-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.asset-preview-card {
  margin: 14px 0 10px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(29, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.asset-preview-media {
  display: block;
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}

.asset-preview-wide {
  aspect-ratio: 16 / 9;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.checkbox-row input {
  width: auto;
}

.profile-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 32px 16px;
  isolation: isolate;
}

.profile-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.26;
  transform: scale(1.04);
}

.profile-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.55;
}

.orb-a {
  top: -100px;
  left: -70px;
}

.orb-b {
  right: -70px;
  bottom: -100px;
}

.profile-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px 8px 28px;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  backdrop-filter: none;
}

.profile-shell {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
}

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

.profile-top-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.profile-action-button,
.profile-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: inherit;
}

.profile-home-link {
  margin-right: auto;
}

.profile-action-button {
  cursor: pointer;
}

.profile-action-button-ghost {
  background: rgba(255, 255, 255, 0.08);
}

.profile-action-button-static,
.profile-home-link-static {
  pointer-events: none;
}

.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
}

.profile-media-shell {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.profile-tag {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.avatar {
  display: block;
  width: 98px;
  height: 98px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(22, 20, 16, 0.16);
}

.avatar-video {
  background: rgba(0, 0, 0, 0.24);
}

.profile-display-name {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0.72;
}

.profile-handle {
  margin: 0;
  font-size: clamp(2rem, 6vw, 2.85rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.bio {
  margin-top: 12px;
}

.profile-bio-inline {
  width: min(100%, 320px);
  margin: 14px auto 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.profile-section-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.profile-section-label-public {
  padding-left: 4px;
  text-align: left;
}

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

.social-strip-lower {
  margin-top: 30px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.social-icon-static {
  pointer-events: none;
}

.social-icon-mark {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-platform-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1d1a17;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(14, 13, 20, 0.18);
}

.profile-platform-cta-static {
  pointer-events: none;
}

.section-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.link-section-card {
  padding: 0;
  border-radius: 0;
  text-align: left;
  background: transparent;
  border: none;
}

.link-section-card-flat {
  background: transparent;
  border: none;
}

.profile-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
}

.profile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 16px 28px rgba(14, 13, 20, 0.14);
}

.profile-link-leading {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.profile-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
}

.profile-link-copy {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-link-trailing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  opacity: 0.82;
}

.profile-link small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.68;
}

.lead-card,
.lead-preview-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.lead-form-title,
.lead-preview-title {
  margin-bottom: 12px;
  font-weight: 800;
}

.lead-preview-input,
.lead-preview-button {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 600;
}

.lead-preview-textarea {
  min-height: 76px;
}

.lead-preview-button {
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.lead-list {
  display: grid;
  gap: 14px;
}

.lead-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.lead-item span,
.lead-item small {
  display: block;
  color: var(--muted);
}

.lead-item p {
  margin: 10px 0;
}

.profile-theme-midnight {
  background: linear-gradient(180deg, #080c17 0%, #120f25 100%);
  color: #fff;
}

.profile-theme-midnight .profile-card {
  background: transparent;
  border: none;
}

.profile-theme-midnight .profile-tag,
.profile-theme-midnight .bio,
.profile-theme-midnight .contact {
  color: rgba(255, 255, 255, 0.72);
}

.profile-theme-midnight .profile-link {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 88%, white 12%) 0%, var(--accent) 100%);
  color: #fff;
}

.profile-theme-midnight .social-icon,
.profile-theme-midnight .profile-home-link,
.profile-theme-midnight .profile-action-button,
.profile-theme-midnight .link-section-card,
.profile-theme-midnight .profile-bio-card,
.profile-theme-midnight .lead-card,
.profile-theme-midnight .lead-preview-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.profile-theme-midnight .orb-a {
  background: rgba(110, 231, 255, 0.24);
}

.profile-theme-midnight .orb-b {
  background: rgba(231, 111, 81, 0.28);
}

.profile-theme-linen {
  background: linear-gradient(180deg, #f7efe3 0%, #eadbc8 100%);
  color: #211a16;
}

.profile-theme-linen .profile-card {
  background: transparent;
  border: none;
}

.profile-theme-linen .profile-tag,
.profile-theme-linen .bio,
.profile-theme-linen .contact {
  color: rgba(33, 26, 22, 0.68);
}

.profile-theme-linen .profile-link {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 88%, white 12%) 0%, var(--accent) 100%);
  color: #1f1814;
  border: none;
}

.profile-theme-linen .social-icon,
.profile-theme-linen .profile-home-link,
.profile-theme-linen .profile-action-button,
.profile-theme-linen .link-section-card,
.profile-theme-linen .profile-bio-card,
.profile-theme-linen .lead-card,
.profile-theme-linen .lead-preview-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(33, 26, 22, 0.1);
}

.profile-theme-linen .orb-a {
  background: rgba(244, 162, 97, 0.28);
}

.profile-theme-linen .orb-b {
  background: rgba(231, 111, 81, 0.16);
}

.profile-theme-sunset {
  background: linear-gradient(180deg, #ff8b61 0%, #ffc971 100%);
  color: #301a16;
}

.profile-theme-sunset .profile-card {
  background: transparent;
  border: none;
}

.profile-theme-sunset .profile-tag,
.profile-theme-sunset .bio,
.profile-theme-sunset .contact {
  color: rgba(48, 26, 22, 0.72);
}

.profile-theme-sunset .profile-link {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 88%, white 12%) 0%, var(--accent) 100%);
  color: #311b17;
  border: none;
}

.profile-theme-sunset .social-icon,
.profile-theme-sunset .profile-home-link,
.profile-theme-sunset .profile-action-button,
.profile-theme-sunset .link-section-card,
.profile-theme-sunset .profile-bio-card,
.profile-theme-sunset .lead-card,
.profile-theme-sunset .lead-preview-card {
  background: rgba(255, 251, 245, 0.72);
  border-color: rgba(59, 21, 11, 0.1);
}

.profile-theme-sunset .orb-a {
  background: rgba(255, 238, 176, 0.4);
}

.profile-theme-sunset .orb-b {
  background: rgba(231, 111, 81, 0.24);
}

.field-hint,
.auth-switch,
.studio-url {
  color: var(--muted);
  line-height: 1.55;
}

.field-hint {
  margin-top: -6px;
  font-size: 14px;
}

.auth-switch {
  margin-top: 18px;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.05fr);
  gap: 22px;
}

.auth-grid-compact {
  grid-template-columns: minmax(320px, 520px);
  justify-content: center;
}

.auth-copy-card,
.auth-form-card {
  min-height: 100%;
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.billing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.studio-panel,
.studio-preview-panel,
.billing-main,
.billing-side {
  margin-bottom: 0;
}

.referral-card {
  margin-bottom: 18px;
}

.studio-meta {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
}

.studio-url {
  max-width: 260px;
  text-align: right;
  font-size: 14px;
  word-break: break-word;
}

.studio-actions {
  align-items: stretch;
}

.studio-preview-shell {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.pricing-amount strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px;
}

.billing-status-list {
  display: grid;
  gap: 14px;
}

.status-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(29, 26, 23, 0.08);
}

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

.status-row strong {
  text-align: right;
}

.billing-url {
  max-width: 220px;
  word-break: break-word;
}

.profile-page-embedded {
  min-height: auto;
  padding: 18px;
}

.profile-page-embedded .profile-shell {
  width: 100%;
}

.profile-page-embedded .profile-card {
  width: 100%;
  max-width: none;
  box-shadow: none;
}

.profile-link-static {
  cursor: default;
}

.avatar-placeholder {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
}

.avatar-placeholder span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero-card,
  .studio-layout,
  .billing-layout,
  .auth-grid,
  .grid.two,
  .template-grid,
  .grid.three,
  .grid.four,
  .form-grid.two,
  .form-grid.three {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 24px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .section-header,
  .offer-banner,
  .marketing-nav,
  .simple-nav,
  .studio-meta {
    align-items: start;
    flex-direction: column;
  }

  .studio-url {
    max-width: none;
    text-align: left;
  }

  .pricing-card,
  .status-row {
    align-items: start;
    flex-direction: column;
  }

  .profile-top-actions {
    justify-content: start;
  }

  .profile-topbar {
    align-items: center;
    flex-direction: row;
  }

  .status-row strong {
    text-align: left;
  }
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(circle at top, rgba(255, 224, 168, 0.56), transparent 32%),
      linear-gradient(180deg, #fff9f1 0%, #f4efe6 100%);
  }

  .container,
  .narrow,
  .narrow-wide {
    width: min(100% - 20px, 1120px);
  }

  .card {
    padding: 22px 18px;
    border-radius: 24px;
  }

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

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

  .nav-actions,
  .actions {
    width: 100%;
  }

  .btn,
  .text-link {
    width: 100%;
  }

  .profile-card {
    padding: 28px 18px 20px;
  }

  .profile-home-link,
  .profile-action-button {
    width: 44px;
  }
}
