:root {
    --bg: #efe6d8;
    --bg-warm: #f7f0e4;
    --paper: rgba(255, 250, 242, 0.88);
    --paper-solid: #f8f1e6;
    --panel-blue: #b8c8d9;
    --panel-sage: #bfd0bf;
    --panel-yellow: #ead8ab;
    --panel-pink: #dfc1c0;
    --panel-cream: #f2e7d6;
    --text: #3a332d;
    --muted: #675e54;
    --line: rgba(98, 85, 72, 0.28);
    --line-strong: rgba(82, 70, 58, 0.38);
    --accent: #d2a59d;
    --accent-strong: #8c8a9f;
    --success: #a9c2a8;
    --danger: #d8aaa8;
    --shadow: 0 10px 24px rgba(113, 93, 73, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(184, 200, 217, 0.55), transparent 28%),
        radial-gradient(circle at bottom right, rgba(223, 193, 192, 0.48), transparent 26%),
        linear-gradient(180deg, #f6efe5 0%, #efe4d5 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.auth-shell,
.site-grid,
.panel-grid,
.stats-grid {
    display: grid;
    gap: 24px;
}

.auth-shell {
    width: min(1120px, 100%);
    grid-template-columns: 1.05fr 0.95fr;
}

.brand-panel,
.card,
.sidebar,
.hero,
.stat-card,
.panel,
.site-brand-card,
.site-hero {
    background: var(--paper);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.brand-panel,
.card,
.sidebar,
.hero,
.stat-card,
.panel {
    position: relative;
    overflow: hidden;
}

.brand-panel::before,
.card::before,
.sidebar::before,
.hero::before,
.stat-card::before,
.panel::before,
.site-brand-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: calc(var(--radius) - 8px);
    border: 1px solid rgba(255, 255, 255, 0.36);
    pointer-events: none;
}

.brand-panel {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(160deg, rgba(184, 200, 217, 0.92), rgba(242, 231, 214, 0.95));
}

.brand-mark {
    width: 148px;
    height: 148px;
    border-radius: 34px;
    background: linear-gradient(145deg, #f4ecdf, #dbc5c0);
    padding: 12px;
    border: 1.5px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    object-fit: cover;
    background: #eadfce;
}

.sidebar-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 20px;
    object-fit: cover;
    border: 1.5px solid var(--line);
    background: #eadfce;
}

.eyebrow,
.page-kicker {
    margin: 0;
    color: #64584b;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
}

.brand-panel h1,
.card h2,
.hero h3,
.panel h3,
.topbar h2,
.site-copy h1 {
    margin: 0;
    line-height: 1.1;
}

.brand-panel h1,
.site-copy h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.muted {
    color: var(--muted);
    line-height: 1.7;
}

.card {
    padding: 32px;
    background: linear-gradient(170deg, rgba(248, 241, 230, 0.94), rgba(255, 248, 239, 0.9));
}

.card-header {
    margin-bottom: 20px;
}

.card-header p {
    color: var(--muted);
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.95rem;
}

.form-grid input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: rgba(255, 251, 246, 0.88);
    color: var(--text);
    outline: none;
    box-shadow: inset 0 2px 6px rgba(133, 116, 97, 0.08);
}

.form-grid input:focus {
    border-color: var(--accent-strong);
    box-shadow: 0 0 0 3px rgba(140, 138, 159, 0.14);
}

.btn-primary,
.btn-secondary {
    padding: 14px 18px;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-align: center;
}

.btn-primary {
    border: 1.5px solid var(--line-strong);
    background: linear-gradient(135deg, #d6bbc6, #ebd7a9);
    color: var(--text);
    box-shadow: 0 8px 18px rgba(165, 140, 103, 0.18);
}

.btn-secondary {
    background: rgba(255, 249, 240, 0.78);
    color: var(--text);
    border: 1.5px solid var(--line);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(121, 101, 79, 0.14);
}

.demo-box,
.alert {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1.5px solid var(--line);
}

.demo-box {
    background: rgba(255, 248, 239, 0.72);
    color: var(--muted);
}

.demo-box p {
    margin: 6px 0 0;
}

.alert {
    margin-bottom: 16px;
}

.alert-error {
    background: rgba(216, 170, 168, 0.35);
}

.alert-success {
    background: rgba(169, 194, 168, 0.35);
}

.layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 20px;
    padding: 20px;
}

.sidebar {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(184, 200, 217, 0.92), rgba(248, 241, 230, 0.96));
}

.sidebar-title {
    font-size: 1.8rem;
}

.nav {
    margin: 32px 0;
    display: grid;
    gap: 12px;
}

.nav-link {
    padding: 13px 15px;
    border-radius: 16px;
    color: var(--muted);
    background: rgba(255, 251, 245, 0.34);
    border: 1px solid transparent;
}

.nav-link.is-active,
.nav-link:hover {
    background: rgba(255, 250, 242, 0.85);
    border-color: var(--line);
    color: var(--text);
}

.full-width {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.content {
    padding: 4px 0 20px;
}

.topbar,
.hero,
.panel,
.stat-card {
    padding: 24px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.user-chip {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    color: var(--muted);
    background: rgba(255, 250, 242, 0.72);
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    background: linear-gradient(135deg, rgba(191, 208, 191, 0.92), rgba(242, 231, 214, 0.96));
}

.stats-grid,
.panel-grid {
    margin-top: 20px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card:nth-child(1) {
    background: linear-gradient(160deg, rgba(184, 200, 217, 0.94), rgba(248, 241, 230, 0.95));
}

.stat-card:nth-child(2) {
    background: linear-gradient(160deg, rgba(191, 208, 191, 0.94), rgba(248, 241, 230, 0.95));
}

.stat-card:nth-child(3) {
    background: linear-gradient(160deg, rgba(234, 216, 171, 0.94), rgba(248, 241, 230, 0.95));
}

.stat-card:nth-child(4) {
    background: linear-gradient(160deg, rgba(223, 193, 192, 0.94), rgba(248, 241, 230, 0.95));
}

.stat-card p,
.stat-card span {
    margin: 0;
    color: var(--muted);
}

.stat-card strong {
    display: block;
    font-size: 2.4rem;
    margin: 10px 0;
}

.panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel:nth-child(odd) {
    background: linear-gradient(160deg, rgba(242, 231, 214, 0.96), rgba(184, 200, 217, 0.5));
}

.panel:nth-child(even) {
    background: linear-gradient(160deg, rgba(242, 231, 214, 0.96), rgba(191, 208, 191, 0.52));
}

.simple-list {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 24px auto;
    padding-bottom: 36px;
}

.site-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    padding: 14px 18px;
    background: rgba(255, 250, 242, 0.72);
    border: 1.5px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.site-logo-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.site-logo-lockup img {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    object-fit: cover;
    background: rgba(255, 250, 242, 0.84);
    border: 1.5px solid var(--line);
    padding: 6px;
}

.site-logo-lockup span {
    display: grid;
    gap: 4px;
}

.site-logo-lockup strong {
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.site-logo-lockup small {
    color: var(--muted);
    font-size: 0.82rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.55);
    color: var(--text);
    transform: translateY(-1px);
}

.site-nav-cta {
    border: 1.5px solid var(--line);
    background: rgba(255, 249, 240, 0.8);
}

.site-hero {
    padding: 28px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    background: linear-gradient(145deg, rgba(248, 241, 230, 0.97), rgba(184, 200, 217, 0.38));
    overflow: hidden;
}

.site-copy {
    padding: 18px;
    border-radius: calc(var(--radius) - 6px);
    background: rgba(255, 250, 242, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.site-copy h1 {
    margin-top: 10px;
}

.site-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.site-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.site-highlight-pill {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 249, 240, 0.72);
    border: 1.5px solid var(--line);
}

.site-highlight-pill strong,
.site-stat-tile strong {
    display: block;
    font-size: 1.2rem;
}

.site-highlight-pill span,
.site-stat-tile span {
    color: var(--muted);
    line-height: 1.55;
}

.site-visual {
    position: relative;
    min-height: 540px;
    border-radius: calc(var(--radius) - 6px);
    background:
        radial-gradient(circle at 26% 24%, rgba(184, 200, 217, 0.6), transparent 20%),
        radial-gradient(circle at 82% 78%, rgba(223, 193, 192, 0.62), transparent 24%),
        linear-gradient(160deg, rgba(191, 208, 191, 0.88), rgba(248, 241, 230, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.36);
    overflow: hidden;
}

.showcase-browser {
    top: 70px;
    left: 42px;
    width: 66%;
    padding: 14px;
    border-radius: 26px;
    background: rgba(255, 250, 242, 0.92);
    animation: floatCard 6.5s ease-in-out infinite;
}

.showcase-toolbar,
.window-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.showcase-toolbar span,
.window-bar span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(111, 107, 122, 0.25);
}

.showcase-browser-body {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
}

.showcase-sidebar {
    padding: 12px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(234, 216, 171, 0.4), rgba(255, 250, 242, 0.72));
}

.showcase-pill {
    height: 18px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: rgba(111, 107, 122, 0.18);
}

.showcase-pill.short {
    width: 72%;
}

.showcase-pill.tiny {
    width: 58%;
}

.showcase-content {
    display: grid;
    gap: 14px;
}

.showcase-banner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(191, 208, 191, 0.92), rgba(255, 250, 242, 0.96));
}

.showcase-banner strong,
.showcase-card strong {
    display: block;
    margin-bottom: 4px;
}

.showcase-banner span,
.showcase-card span {
    color: var(--muted);
    line-height: 1.5;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.showcase-card {
    padding: 14px;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 250, 242, 0.85);
}

.showcase-phone {
    right: 44px;
    top: 124px;
    width: 180px;
    padding: 12px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(58, 51, 45, 0.96), rgba(95, 87, 80, 0.92));
    animation-delay: -1.8s;
}

.showcase-phone-notch {
    width: 72px;
    height: 10px;
    border-radius: 999px;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, 0.34);
}

.showcase-phone-screen {
    min-height: 292px;
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(248, 241, 230, 0.94), rgba(184, 200, 217, 0.62));
}

.showcase-mini-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.showcase-mini-brand img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 250, 242, 0.76);
    padding: 5px;
}

.showcase-mini-brand strong {
    display: block;
    font-size: 0.92rem;
}

.showcase-mini-brand span {
    color: var(--muted);
    font-size: 0.82rem;
}

.showcase-mini-card {
    height: 64px;
    border-radius: 18px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.showcase-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.showcase-mini-stats span {
    height: 38px;
    border-radius: 14px;
    background: rgba(255, 250, 242, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
    opacity: 0.66;
    animation: floatOrb 7s ease-in-out infinite;
}

.orb-one {
    width: 180px;
    height: 180px;
    top: 26px;
    right: 34px;
    background: rgba(234, 216, 171, 0.54);
}

.orb-two {
    width: 140px;
    height: 140px;
    left: 30px;
    bottom: 36px;
    background: rgba(184, 200, 217, 0.52);
    animation-delay: -2.6s;
}

.site-brand-card {
    padding: 32px;
    display: grid;
    place-items: center;
    background: linear-gradient(155deg, rgba(191, 208, 191, 0.96), rgba(248, 241, 230, 0.96));
}

.floating-card {
    position: absolute;
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow);
    animation: floatCard 6.5s ease-in-out infinite;
}

.card-main {
    top: 88px;
    left: 50%;
    width: 56%;
    transform: translateX(-50%);
    animation: floatCenterCard 6.5s ease-in-out infinite;
}

.card-service {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.88);
}

.card-service strong {
    display: block;
    margin-bottom: 4px;
}

.card-service span {
    color: var(--muted);
    font-size: 0.92rem;
}

.card-service-a {
    top: 34px;
    left: 24px;
    width: 46%;
    background: linear-gradient(155deg, rgba(184, 200, 217, 0.96), rgba(255, 250, 242, 0.92));
}

.card-service-b {
    right: 24px;
    bottom: 132px;
    width: 42%;
    background: linear-gradient(155deg, rgba(223, 193, 192, 0.96), rgba(255, 250, 242, 0.92));
    animation-delay: -2s;
}

.card-service-c {
    left: 38px;
    bottom: 42px;
    width: 52%;
    background: linear-gradient(155deg, rgba(234, 216, 171, 0.96), rgba(255, 250, 242, 0.92));
    animation-delay: -3.2s;
}

.site-brand-card img {
    width: min(280px, 100%);
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 32px;
    background: rgba(255, 250, 242, 0.72);
    padding: 16px;
    border: 1.5px solid var(--line);
}

.site-grid {
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 10px 0 0;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.12;
}

.site-stats-strip {
    margin-top: 24px;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    background: rgba(255, 250, 242, 0.7);
    border: 1.5px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.site-stat-tile {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(248, 241, 230, 0.96), rgba(184, 200, 217, 0.42));
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.site-services-section,
.site-process-section {
    margin-top: 34px;
}

.site-services-grid,
.site-process-grid {
    display: grid;
    gap: 20px;
}

.site-services-grid,
.site-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-service-card,
.site-process-card {
    padding: 24px;
    border-radius: 24px;
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow);
    background: rgba(255, 250, 242, 0.82);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.site-service-card:nth-child(1) {
    background: linear-gradient(160deg, rgba(184, 200, 217, 0.9), rgba(255, 249, 240, 0.9));
}

.site-service-card:nth-child(2) {
    background: linear-gradient(160deg, rgba(191, 208, 191, 0.9), rgba(255, 249, 240, 0.9));
}

.site-service-card:nth-child(3) {
    background: linear-gradient(160deg, rgba(234, 216, 171, 0.9), rgba(255, 249, 240, 0.9));
}

.site-service-card:nth-child(4) {
    background: linear-gradient(160deg, rgba(223, 193, 192, 0.9), rgba(255, 249, 240, 0.9));
}

.site-process-card {
    background: linear-gradient(160deg, rgba(248, 241, 230, 0.94), rgba(255, 250, 242, 0.82));
}

.site-service-card:hover,
.site-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(113, 93, 73, 0.16);
}

.site-service-card h3,
.site-process-card h3 {
    margin: 18px 0 8px;
}

.site-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 250, 242, 0.72);
    border: 1.5px solid var(--line);
    color: #6f6b7a;
}

.site-icon.large {
    width: 72px;
    height: 72px;
    border-radius: 22px;
}

.site-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-icon.large svg {
    width: 38px;
    height: 38px;
}

.site-cta-banner {
    margin-top: 28px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-radius: 28px;
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, rgba(223, 193, 192, 0.88), rgba(184, 200, 217, 0.82), rgba(242, 231, 214, 0.94));
}

.site-cta-banner h2 {
    margin: 10px 0 0;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    line-height: 1.14;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatCenterCard {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes floatOrb {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -12px, 0);
    }
}

.site-grid .panel:first-child {
    background: linear-gradient(160deg, rgba(184, 200, 217, 0.94), rgba(242, 231, 214, 0.96));
}

.site-grid .panel:last-child {
    background: linear-gradient(160deg, rgba(191, 208, 191, 0.94), rgba(242, 231, 214, 0.96));
}

.site-showcase-section {
    margin-top: 34px;
}

.site-showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 20px;
}

.site-showcase-card {
    padding: 24px;
    border-radius: 28px;
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow);
    background: rgba(255, 250, 242, 0.84);
}

.site-showcase-card.wide {
    background: linear-gradient(155deg, rgba(184, 200, 217, 0.7), rgba(255, 250, 242, 0.92));
}

.site-showcase-card:not(.wide) {
    background: linear-gradient(155deg, rgba(248, 241, 230, 0.94), rgba(255, 250, 242, 0.92));
}

.site-showcase-copy h3 {
    margin: 10px 0 0;
    line-height: 1.18;
}

.site-showcase-window {
    margin-top: 20px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.82);
    border: 1.5px solid var(--line);
}

.window-canvas {
    padding: 18px;
    border-radius: 18px;
}

.window-row {
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.74);
    margin-bottom: 12px;
}

.window-row.large {
    width: 86%;
}

.window-row.medium {
    width: 64%;
}

.window-chart {
    margin-top: 20px;
    height: 180px;
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(255, 250, 242, 0.45) 1px, transparent 1px) 0 0 / 36px 36px,
        linear-gradient(rgba(255, 250, 242, 0.45) 1px, transparent 1px) 0 0 / 36px 36px,
        linear-gradient(160deg, rgba(255, 250, 242, 0.86), rgba(223, 193, 192, 0.46));
}

.site-mini-panels {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.mini-panel {
    height: 92px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.site-mini-phone {
    width: 170px;
    margin: 22px auto 0;
    padding: 10px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(58, 51, 45, 0.96), rgba(95, 87, 80, 0.92));
}

.mini-phone-notch {
    width: 62px;
    height: 10px;
    border-radius: 999px;
    margin: 0 auto 12px;
    background: rgba(255, 255, 255, 0.34);
}

.mini-phone-screen {
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(248, 241, 230, 0.94), rgba(191, 208, 191, 0.62));
}

.mini-phone-block {
    height: 56px;
    border-radius: 16px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.tone-blue {
    background: linear-gradient(160deg, rgba(184, 200, 217, 0.94), rgba(255, 250, 242, 0.86));
}

.tone-sage {
    background: linear-gradient(160deg, rgba(191, 208, 191, 0.94), rgba(255, 250, 242, 0.86));
}

.tone-yellow {
    background: linear-gradient(160deg, rgba(234, 216, 171, 0.94), rgba(255, 250, 242, 0.86));
}

.tone-pink {
    background: linear-gradient(160deg, rgba(223, 193, 192, 0.94), rgba(255, 250, 242, 0.86));
}

.tone-cream {
    background: linear-gradient(160deg, rgba(242, 231, 214, 0.94), rgba(255, 250, 242, 0.9));
}

@media (max-width: 960px) {
    .auth-shell,
    .layout,
    .stats-grid,
    .panel-grid,
    .site-hero,
    .site-grid,
    .site-stats-strip,
    .site-services-grid,
    .site-process-grid,
    .site-highlight-row,
    .showcase-grid,
    .site-showcase-grid {
        grid-template-columns: 1fr;
    }

    .layout {
        padding: 14px;
    }

    .content {
        padding: 0 0 20px;
    }

    .hero {
        align-items: start;
        flex-direction: column;
    }

    .site-shell {
        width: min(100%, calc(100% - 24px));
        margin: 12px auto;
    }

    .site-topbar,
    .site-cta-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .site-visual {
        min-height: 880px;
    }

    .showcase-browser {
        width: calc(100% - 48px);
        left: 24px;
        top: 120px;
    }

    .showcase-browser-body {
        grid-template-columns: 1fr;
    }

    .showcase-sidebar {
        display: none;
    }

    .card-service-a,
    .card-service-b {
        width: calc(100% - 48px);
        left: 24px;
        right: auto;
    }

    .card-service-a {
        top: 24px;
    }

    .card-service-b {
        bottom: 24px;
    }

    .showcase-phone {
        right: 24px;
        top: 470px;
        width: 160px;
    }

    .site-mini-phone {
        width: 100%;
    }
}

.site-home {
    background:
        linear-gradient(180deg, #9ee4d2 0%, #84d8ca 18%, #6ccfc4 42%, #c8f1e7 100%);
    color: #153d38;
}

.site-home .site-announcement {
    padding: 12px 18px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(90deg, #58cdb2, #7fdcc6);
}

.site-home .site-announcement a {
    color: #0f3c36;
}

.site-home .site-shell {
    width: 100%;
    margin: 0;
    padding: 0 0 56px;
}

.site-home .site-topbar {
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 6;
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
    padding: 28px 12px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.site-home .site-logo-lockup img {
    background: transparent;
    border: 0;
    padding: 0;
}

.site-home .site-logo-lockup strong,
.site-home .site-logo-lockup small,
.site-home .site-nav a,
.site-home .eyebrow,
.site-home .muted,
.site-home .site-highlight-pill span,
.site-home .site-stat-tile span,
.site-home .showcase-banner span,
.site-home .showcase-card span {
    color: rgba(15, 60, 54, 0.84);
}

.site-home .site-logo-lockup strong {
    font-size: 1.15rem;
}

.site-home .site-logo-lockup small {
    font-size: 0.9rem;
}

.site-home .site-nav a:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #0f3c36;
}

.site-home .site-nav-cta,
.site-home .btn-secondary {
    background: #f4fffb;
    color: #157a68;
    border-color: transparent;
}

.site-home .btn-primary {
    background: linear-gradient(135deg, #0fa88c, #47c9ad);
    color: #f6fffd;
    border-color: rgba(15, 133, 112, 0.36);
    box-shadow: 0 18px 34px rgba(18, 124, 107, 0.18);
}

.site-home .site-hero {
    position: relative;
    min-height: 980px;
    display: block;
    padding: 160px 0 80px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background:
        radial-gradient(circle at 16% 28%, rgba(255, 255, 255, 0.5), transparent 0%, rgba(255,255,255,0.18) 0%, transparent 32%),
        linear-gradient(90deg, #69d3bf 0%, #52cbb4 52%, #aef0e0 100%);
}

.site-home .site-hero::before {
    content: "";
    position: absolute;
    top: -30px;
    right: 14%;
    width: 28%;
    height: 64%;
    background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.05));
    clip-path: polygon(18% 0, 100% 0, 58% 100%, 0 100%);
    opacity: 0.55;
}

.site-home .site-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32%;
    height: 100%;
    background: radial-gradient(circle at 18% 24%, rgba(255,255,255,0.65), rgba(255,255,255,0) 58%);
    opacity: 0.45;
}

.site-home .site-copy {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    background: transparent;
    border: 0;
}

.site-home .site-copy h1 {
    margin-top: 22px;
    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: 0.98;
    color: #103f39;
    letter-spacing: -0.04em;
}

.site-copy-subtitle {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(16, 63, 57, 0.82);
}

.site-home .site-actions {
    justify-content: center;
    margin-top: 28px;
}

.site-home .site-highlight-row {
    max-width: 880px;
    margin: 28px auto 0;
}

.site-home .site-highlight-pill {
    background: rgba(245, 255, 251, 0.34);
    border-color: rgba(18, 116, 100, 0.12);
    backdrop-filter: blur(10px);
}

.site-home .site-highlight-pill strong {
    color: #0f3f39;
}

.site-home .site-visual {
    position: relative;
    width: min(1400px, 100%);
    min-height: 520px;
    margin: 42px auto 0;
    background: transparent;
    border: 0;
    overflow: visible;
}

.site-home .orb {
    display: none;
}

.site-home .showcase-browser {
    left: 50%;
    top: 0;
    width: min(720px, calc(100% - 360px));
    transform: translateX(-50%);
    border: 0;
    border-radius: 34px;
    background: rgba(242, 255, 251, 0.38);
    backdrop-filter: blur(12px);
    box-shadow: 0 28px 80px rgba(20, 102, 86, 0.18);
}

.site-home .showcase-toolbar span,
.site-home .window-bar span {
    background: rgba(15, 60, 54, 0.22);
}

.site-home .showcase-sidebar,
.site-home .showcase-banner,
.site-home .showcase-card,
.site-home .showcase-phone-screen,
.site-home .window-canvas,
.site-home .site-showcase-card,
.site-home .site-showcase-window,
.site-home .site-stat-tile,
.site-home .site-service-card,
.site-home .site-process-card,
.site-home .panel,
.site-home .site-cta-banner {
    background: rgba(255, 255, 255, 0.96);
    color: #133a76;
}

.site-home .showcase-banner strong,
.site-home .showcase-card strong,
.site-home .site-service-card h3,
.site-home .site-process-card h3,
.site-home .site-showcase-copy h3,
.site-home .site-cta-banner h2,
.site-home .section-heading h2,
.site-home .panel h3 {
    color: #154942;
}

.site-home .site-icon {
    color: #13967f;
    background: rgba(19, 150, 127, 0.08);
    border-color: rgba(19, 150, 127, 0.1);
}

.site-home .showcase-phone {
    top: 96px;
    right: 20%;
    width: 230px;
    border: 10px solid #f7f8fb;
    background: #2f3137;
    box-shadow: 0 24px 60px rgba(20, 102, 86, 0.24);
}

.site-home .showcase-phone-notch {
    background: #595c66;
}

.site-home .card-service {
    background: rgba(250, 255, 253, 0.96);
    color: #154942;
    box-shadow: 0 20px 44px rgba(20, 102, 86, 0.16);
    border: 0;
}

.site-home .card-service span {
    color: #567c74;
}

.site-home .card-service-a {
    top: 160px;
    left: 1.2%;
    width: 320px;
}

.site-home .card-service-b {
    right: 2%;
    bottom: 34px;
    width: 290px;
    left: auto;
}

.site-home .site-stats-strip,
.site-home .site-services-section,
.site-home .site-showcase-section,
.site-home .site-process-section,
.site-home .site-grid,
.site-home .site-cta-banner {
    width: min(1240px, calc(100% - 56px));
    margin-left: auto;
    margin-right: auto;
}

.site-home .site-stats-strip {
    margin-top: 38px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.site-home .site-stat-tile,
.site-home .site-service-card,
.site-home .site-process-card,
.site-home .panel,
.site-home .site-showcase-card {
    border: 0;
    box-shadow: 0 20px 44px rgba(20, 102, 86, 0.12);
}

.site-home .section-heading {
    max-width: 720px;
    margin-left: 0;
}

.site-home .section-heading .eyebrow {
    color: rgba(15, 60, 54, 0.72);
}

.site-home .section-heading h2 {
    color: #103f39;
}

.site-home .site-showcase-section,
.site-home .site-services-section,
.site-home .site-process-section,
.site-home .site-grid {
    margin-top: 74px;
}

.site-home .site-showcase-card.wide,
.site-home .site-grid .panel:first-child,
.site-home .site-grid .panel:last-child,
.site-home .site-service-card:nth-child(1),
.site-home .site-service-card:nth-child(2),
.site-home .site-service-card:nth-child(3),
.site-home .site-service-card:nth-child(4) {
    background: rgba(255, 255, 255, 0.96);
}

.site-home .simple-list,
.site-home .muted,
.site-home .site-showcase-copy p,
.site-home .site-showcase-copy h3 + *,
.site-home .panel .simple-list,
.site-home .site-stat-tile span {
    color: #5b7d75;
}

.site-home .site-cta-banner {
    margin-top: 82px;
    background: linear-gradient(135deg, #e9fff8, #f8fffd);
}

@media (max-width: 1200px) {
    .site-home .site-topbar {
        width: min(100%, calc(100% - 32px));
    }

    .site-home .site-copy {
        max-width: 860px;
    }

    .site-home .site-visual {
        width: min(100%, calc(100% - 32px));
        min-height: 760px;
    }

    .site-home .showcase-browser {
        width: min(680px, calc(100% - 280px));
    }

    .site-home .showcase-phone {
        right: 8%;
    }

    .site-home .card-service-a {
        left: 0;
    }

    .site-home .card-service-b {
        right: 0;
    }

    .site-home .site-stats-strip,
    .site-home .site-services-section,
    .site-home .site-showcase-section,
    .site-home .site-process-section,
    .site-home .site-grid,
    .site-home .site-cta-banner {
        width: min(100%, calc(100% - 32px));
    }
}

@media (max-width: 960px) {
    .site-home .site-topbar {
        position: relative;
        top: 0;
        width: min(100%, calc(100% - 24px));
        padding: 18px 14px 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .site-home .site-hero {
        min-height: auto;
        padding: 32px 0 56px;
    }

    .site-home .site-copy h1 {
        font-size: clamp(2.6rem, 13vw, 4.3rem);
    }

    .site-home .site-copy {
        padding: 0 14px;
    }

    .site-home .site-copy-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }

    .site-home .site-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .site-home .site-nav a {
        text-align: center;
        background: rgba(255, 255, 255, 0.14);
    }

    .site-home .site-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-home .btn-primary,
    .site-home .btn-secondary {
        width: 100%;
    }

    .site-home .site-visual {
        min-height: 1060px;
        margin-top: 28px;
    }

    .site-home .showcase-browser {
        width: calc(100% - 24px);
        left: 12px;
        top: 110px;
        transform: none;
    }

    .site-home .showcase-phone {
        right: 12px;
        top: 470px;
        width: 180px;
    }

    .site-home .card-service-a,
    .site-home .card-service-b {
        width: calc(100% - 24px);
        left: 12px;
        right: auto;
    }

    .site-home .card-service-a {
        top: 12px;
    }

    .site-home .card-service-b {
        bottom: 12px;
    }

    .site-home .site-stats-strip,
    .site-home .site-services-section,
    .site-home .site-showcase-section,
    .site-home .site-process-section,
    .site-home .site-grid,
    .site-home .site-cta-banner {
        width: min(100%, calc(100% - 24px));
    }

    .site-home .site-cta-banner {
        padding: 22px 18px;
    }
}

@media (max-width: 640px) {
    .site-home .site-announcement {
        padding: 10px 14px;
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .site-home .site-topbar {
        width: min(100%, calc(100% - 16px));
        padding: 14px 10px 0;
        gap: 14px;
    }

    .site-home .site-logo-lockup {
        justify-content: center;
        text-align: center;
    }

    .site-home .site-logo-lockup span {
        gap: 2px;
    }

    .site-home .site-nav {
        grid-template-columns: 1fr;
    }

    .site-home .site-copy {
        padding: 0 10px;
    }

    .site-home .site-copy h1 {
        font-size: clamp(2.1rem, 12vw, 3rem);
        line-height: 1.04;
    }

    .site-home .site-copy-subtitle {
        font-size: 0.95rem;
    }

    .site-home .site-highlight-row {
        gap: 10px;
    }

    .site-home .site-highlight-pill {
        padding: 12px 14px;
        text-align: left;
    }

    .site-home .site-visual {
        width: calc(100% - 16px);
        min-height: 1180px;
    }

    .site-home .showcase-browser {
        width: calc(100% - 16px);
        left: 8px;
        top: 164px;
        padding: 10px;
        border-radius: 24px;
    }

    .site-home .showcase-browser-body {
        grid-template-columns: 1fr;
    }

    .site-home .showcase-sidebar {
        display: none;
    }

    .site-home .showcase-grid {
        grid-template-columns: 1fr;
    }

    .site-home .showcase-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-home .showcase-phone {
        position: absolute;
        right: 8px;
        top: 560px;
        width: 156px;
        padding: 8px;
    }

    .site-home .showcase-phone-screen {
        min-height: 240px;
        padding: 10px;
    }

    .site-home .card-service-a,
    .site-home .card-service-b {
        width: calc(100% - 16px);
        left: 8px;
        padding: 12px 14px;
    }

    .site-home .card-service-a {
        top: 60px;
    }

    .site-home .card-service-b {
        bottom: 8px;
    }

    .site-home .site-stats-strip,
    .site-home .site-services-section,
    .site-home .site-showcase-section,
    .site-home .site-process-section,
    .site-home .site-grid,
    .site-home .site-cta-banner {
        width: calc(100% - 16px);
    }

    .site-home .site-stat-tile,
    .site-home .site-service-card,
    .site-home .site-process-card,
    .site-home .site-showcase-card,
    .site-home .panel {
        padding: 18px;
    }

    .site-home .section-heading h2 {
        font-size: clamp(1.6rem, 9vw, 2.3rem);
        line-height: 1.12;
    }

    .site-home .site-cta-banner {
        gap: 14px;
        padding: 18px 14px;
        border-radius: 22px;
    }
}
