:root {
    --bg: #120d0c;
    --bg-soft: #1b1412;
    --panel: rgba(32, 24, 21, 0.88);
    --panel-strong: rgba(42, 31, 26, 0.96);
    --border: rgba(255, 255, 255, 0.08);
    --text: #f5ede8;
    --muted: #cab6aa;
    --danger: #ff8a5b;
    --accent: #ff5e3a;
    --accent-strong: #ff7b2f;
    --gold: #f8b758;
    --success: #67c58a;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 47, 0.14), transparent 24%),
        radial-gradient(circle at left, rgba(255, 94, 58, 0.12), transparent 28%),
        linear-gradient(180deg, #170f0d 0%, #120d0c 55%, #0d0908 100%);
}

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

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

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

.app-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 72px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(18, 13, 12, 0.82);
    border-bottom: 1px solid var(--border);
}

.topbar-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #2b130a;
    box-shadow: 0 16px 32px rgba(255, 94, 58, 0.28);
}

.brand-copy strong {
    display: block;
    font-size: 0.96rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-copy span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--muted);
    padding: 10px 14px;
    border-radius: 999px;
    transition: 180ms ease;
}

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

.button,
.button-ghost,
.button-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 14px;
    padding: 12px 16px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-align: center;
    transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.button:hover,
.button-ghost:hover,
.button-danger:hover {
    transform: translateY(-1px);
}

.button {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff7f2;
    box-shadow: 0 18px 34px rgba(255, 94, 58, 0.24);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border);
}

.button-danger {
    background: rgba(255, 138, 91, 0.16);
    color: #ffd5c4;
    border: 1px solid rgba(255, 138, 91, 0.18);
}

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

.hero-copy h1 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.hero-copy p {
    margin: 0;
    max-width: 720px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--muted);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffd7bf;
    background: rgba(255, 122, 47, 0.14);
    border: 1px solid rgba(255, 122, 47, 0.18);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-panel,
.card,
.stats-card,
.panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 183, 88, 0.3), transparent 70%);
}

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

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

.mini-stat strong {
    display: block;
    margin-top: 6px;
    font-size: 1.6rem;
}

.section {
    margin-top: 28px;
}

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

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

.grid,
.stats-grid,
.creator-grid,
.product-grid,
.reservation-grid {
    display: grid;
    gap: 18px;
}

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

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

.reservation-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

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

.stats-card,
.card,
.panel {
    padding: 22px;
}

.stats-card span,
.kicker,
.meta {
    color: var(--muted);
}

.stats-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.9rem;
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge.primary {
    background: rgba(255, 122, 47, 0.16);
    color: #ffd6c1;
}

.badge.gold {
    background: rgba(248, 183, 88, 0.14);
    color: #ffe0a5;
}

.badge.success {
    background: rgba(103, 197, 138, 0.16);
    color: #dbffe8;
}

.badge.neutral {
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
}

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

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.input,
.textarea,
.select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    outline: none;
}

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

.input:focus,
.textarea:focus,
.select:focus {
    border-color: rgba(255, 122, 47, 0.42);
    box-shadow: 0 0 0 4px rgba(255, 122, 47, 0.12);
}

.flash-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.flash {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.flash.success {
    background: rgba(103, 197, 138, 0.14);
    color: #d8ffe6;
}

.flash.error {
    background: rgba(255, 94, 58, 0.16);
    color: #ffd8cb;
}

.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.page-header h1 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.page-header p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.7;
}

.post-list,
.list {
    display: grid;
    gap: 18px;
}

.post-card {
    padding: 22px;
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.post-meta strong,
.creator-name {
    display: block;
    font-size: 1.05rem;
}

.post-meta span,
.creator-handle,
.small {
    color: var(--muted);
    font-size: 0.9rem;
}

.post-body {
    margin-top: 18px;
    display: grid;
    gap: 16px;
}

.post-media,
.media-placeholder,
.locked-box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(145deg, rgba(255, 122, 47, 0.18), rgba(255, 255, 255, 0.04));
}

.media-placeholder,
.locked-box {
    padding: 24px;
}

.locked-box {
    display: grid;
    gap: 14px;
}

.locked-box strong {
    font-size: 1.1rem;
}

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

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

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

.comment {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

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

.auth-grid {
    min-height: calc(100vh - 84px);
    display: grid;
    place-items: center;
    padding: 36px 0 72px;
}

.auth-card {
    width: min(540px, calc(100% - 24px));
    padding: 28px;
    border-radius: 28px;
    background: var(--panel-strong);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.auth-card h1 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.6rem;
    line-height: 0.94;
}

.auth-card p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.65;
}

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

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

.transaction-item,
.order-item,
.reservation-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.transaction-item strong,
.order-item strong,
.reservation-item strong {
    display: block;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 36px;
    color: rgba(245, 237, 232, 0.54);
}

.landing-page {
    --bg: #f6efe7;
    --bg-soft: #fff8f2;
    --panel: rgba(255, 255, 255, 0.8);
    --panel-strong: rgba(255, 255, 255, 0.96);
    --border: rgba(102, 66, 47, 0.12);
    --text: #241612;
    --muted: #71564a;
    --danger: #d45c44;
    --accent: #ef6e48;
    --accent-strong: #ff9360;
    --gold: #ca9851;
    --success: #3b9b6e;
    --shadow: 0 30px 80px rgba(96, 58, 39, 0.12);
    background:
        radial-gradient(circle at top left, rgba(255, 218, 194, 0.96), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(255, 174, 124, 0.32), transparent 18%),
        linear-gradient(180deg, #fffaf5 0%, #f7eee6 48%, #f2e4da 100%);
}

.landing-page .topbar {
    background: rgba(250, 244, 238, 0.82);
    border-bottom-color: rgba(102, 66, 47, 0.1);
}

.landing-page .brand-mark {
    color: #fff7f1;
    box-shadow: 0 18px 34px rgba(239, 110, 72, 0.22);
}

.landing-page .brand-copy strong {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
}

.landing-page .brand-copy span,
.landing-page .nav-link,
.landing-page .small {
    color: #7c6053;
}

.landing-page .nav-link:hover,
.landing-page .nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
}

.landing-page .button-ghost {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(102, 66, 47, 0.12);
}

.landing-page .button {
    box-shadow: 0 18px 42px rgba(239, 110, 72, 0.24);
}

.landing-page .button:hover,
.landing-page .button-ghost:hover {
    transform: translateY(-2px);
}

.landing-page .badge.primary {
    background: rgba(239, 110, 72, 0.12);
    color: #b05d3a;
}

.landing-page .badge.gold {
    background: rgba(202, 152, 81, 0.14);
    color: #8a6035;
}

.landing-page .app-shell {
    padding-top: 18px;
}

.landing-page .hero-premium {
    position: relative;
    padding: 48px 0 28px;
    grid-template-columns: 1fr 0.92fr;
    gap: 30px;
    align-items: stretch;
}

.landing-page .hero-premium::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 16px;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 156, 112, 0.3), transparent 68%);
    pointer-events: none;
}

.landing-page .hero-copy,
.landing-page .hero-stage {
    position: relative;
    z-index: 1;
}

.landing-page .hero-copy h1 {
    font-size: clamp(3rem, 5.8vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    max-width: 780px;
}

.landing-page .hero-copy p {
    max-width: 660px;
    font-size: 1.06rem;
}

.hero-stat-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-stat {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(102, 66, 47, 0.08);
    backdrop-filter: blur(10px);
}

.hero-stat span {
    display: block;
    margin-bottom: 8px;
    color: #9a6a53;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-stat strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.45;
}

.landing-page .hero-actions {
    position: relative;
    z-index: 4;
}

.landing-page .eyebrow {
    color: #8e5c43;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(152, 103, 72, 0.14);
    box-shadow: 0 14px 28px rgba(101, 65, 46, 0.08);
}

.trust-row {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.trust-pill,
.signal-pill,
.premium-card,
.cta-banner,
.hero-stage-card {
    border: 1px solid rgba(102, 66, 47, 0.1);
    box-shadow: var(--shadow);
}

.trust-pill {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
}

.trust-pill strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.trust-pill span {
    color: var(--muted);
    line-height: 1.62;
}

.hero-stage {
    display: grid;
    gap: 18px;
    align-content: start;
}

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

.hero-stage-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px);
}

.hero-stage-card-main {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 236, 0.84));
}

.soft-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 241, 0.78));
}

.hero-stage-card.accent {
    background: linear-gradient(160deg, rgba(239, 110, 72, 0.94), rgba(255, 151, 96, 0.88));
    color: #fffaf5;
}

.hero-stage-card.accent .stage-label,
.hero-stage-card.accent li {
    color: rgba(255, 249, 244, 0.9);
}

.stage-label {
    display: block;
    margin-bottom: 12px;
    color: #946b59;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stage-value {
    display: block;
    font-size: 1.84rem;
    line-height: 1.08;
}

.stage-copy {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.stage-metric-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.stage-metric {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(102, 66, 47, 0.08);
}

.stage-metric span {
    display: block;
    margin-bottom: 8px;
    color: #8b6858;
    font-size: 0.82rem;
}

.stage-metric strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.38;
}

.stage-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--muted);
    line-height: 1.65;
}

.showcase-shell {
    display: grid;
    gap: 18px;
    animation: showcaseFloat 8s ease-in-out infinite;
}

.showcase-top,
.showcase-profile,
.showcase-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.showcase-status {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(102, 66, 47, 0.08);
    color: #9b5e43;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-profile {
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(102, 66, 47, 0.08);
}

.showcase-avatar {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(239, 110, 72, 0.96), rgba(202, 152, 81, 0.92));
    color: #fff7f1;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.showcase-profile-copy {
    flex: 1;
    min-width: 180px;
}

.showcase-profile-copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.08rem;
}

.showcase-profile-copy span {
    color: #816355;
    line-height: 1.56;
}

.showcase-post {
    display: grid;
    gap: 14px;
}

.showcase-post p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.showcase-media {
    position: relative;
    min-height: 260px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(102, 66, 47, 0.08);
    background:
        linear-gradient(180deg, rgba(53, 25, 16, 0.12), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 30% 25%, rgba(255, 182, 138, 0.9), transparent 26%),
        radial-gradient(circle at 70% 62%, rgba(241, 116, 77, 0.92), transparent 24%),
        linear-gradient(135deg, #2b1712 0%, #6b3929 40%, #ef825b 100%);
}

.showcase-glow {
    position: absolute;
    inset: auto 24px 24px 24px;
    height: 88px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 250, 245, 0.24));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.showcase-chip-row {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.showcase-chip {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 248, 242, 0.84);
    color: #784d3a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.showcase-metrics {
    gap: 12px;
    align-items: stretch;
}

.showcase-metric {
    flex: 1;
    min-width: 120px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(102, 66, 47, 0.08);
}

.showcase-metric span {
    display: block;
    margin-bottom: 8px;
    color: #8b6858;
    font-size: 0.82rem;
}

.showcase-metric strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.4;
}

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

.signal-pill {
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
}

.signal-pill strong {
    display: block;
    margin-bottom: 10px;
    color: #b36641;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
}

.signal-pill span {
    line-height: 1.65;
}

.landing-section-header {
    align-items: flex-end;
    gap: 28px;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(102, 66, 47, 0.1);
    color: #9a6244;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.premium-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(14px);
}

.feature-card {
    display: grid;
    gap: 18px;
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(239, 110, 72, 0.16), rgba(202, 152, 81, 0.18));
    color: #b55e39;
    font-weight: 800;
}

.feature-copy h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.feature-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.66;
}

.feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-points span {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(102, 66, 47, 0.08);
    color: #7a5d51;
    font-size: 0.86rem;
}

.landing-split {
    align-items: stretch;
}

.split-panel {
    display: grid;
    gap: 18px;
}

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

.journey-step {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 246, 239, 0.62));
    border: 1px solid rgba(102, 66, 47, 0.08);
}

.journey-step strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

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

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 243, 232, 0.92));
}

.cta-copy h2 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.cta-copy p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.72;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.landing-page.auth-page .auth-grid {
    min-height: calc(100vh - 92px);
    padding-top: 18px;
}

.landing-page .auth-card {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(102, 66, 47, 0.12);
}

.landing-page .input,
.landing-page .textarea,
.landing-page .select {
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(102, 66, 47, 0.12);
    color: var(--text);
}

.landing-page .input:focus,
.landing-page .textarea:focus,
.landing-page .select:focus {
    border-color: rgba(239, 110, 72, 0.34);
    box-shadow: 0 0 0 4px rgba(239, 110, 72, 0.1);
}

.landing-page .auth-card .small a {
    color: #ab5b3a;
}

.landing-page .footer {
    color: rgba(54, 31, 23, 0.64);
    padding-bottom: 48px;
}

@keyframes showcaseFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 980px) {
    .hero,
    .stats-grid,
    .creator-grid,
    .product-grid,
    .reservation-grid,
    .grid.two {
        grid-template-columns: 1fr;
    }

    .topbar-inner,
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .hero-premium,
    .landing-grid,
    .hero-stat-row,
    .signal-row,
    .trust-row,
    .hero-stage-grid,
    .stage-metric-grid {
        grid-template-columns: 1fr;
    }

    .showcase-top,
    .showcase-profile,
    .showcase-metrics {
        align-items: flex-start;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 680px) {
    .app-shell,
    .topbar-inner,
    .footer {
        width: min(100% - 24px, 100%);
    }

    .hero {
        padding-top: 40px;
    }

    .hero-copy h1,
    .page-header h1 {
        line-height: 1;
    }

    .post-top,
    .split {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .hero-copy h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .showcase-media {
        min-height: 220px;
    }

    .hero-stage-card,
    .premium-card,
    .trust-pill,
    .signal-pill,
    .cta-banner {
        padding: 20px;
    }
}
