:root {
    --bg: #0f172a;
    --bg-soft: rgba(15, 23, 42, 0.72);
    --panel: rgba(10, 15, 30, 0.74);
    --panel-strong: rgba(8, 13, 26, 0.92);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --accent: #22c55e;
    --accent-2: #38bdf8;
    --accent-3: #f59e0b;
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.38);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Sora', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), transparent 24%),
        radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.16), transparent 20%),
        linear-gradient(145deg, #020617 0%, #0f172a 48%, #111827 100%);
    min-height: 100vh;
}

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

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

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

.topbar,
.site-shell,
.site-footer {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand__mark {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #04111f;
    background: linear-gradient(135deg, #22c55e, #38bdf8);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
}

.brand strong,
.brand span {
    display: block;
}

.brand span,
.topbar__nav a,
.hero p,
.hero__highlights,
.feature-card p,
.section-intro p,
.phone-card__profile p,
.product-card p,
.testimonial-card p,
.site-footer {
    color: var(--muted);
}

.topbar__nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.4);
}

.topbar__nav a {
    font-size: 0.92rem;
}

.hero {
    position: relative;
    padding: 2rem 0 3rem;
}

.hero__content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.hero__copy,
.hero__phone {
    min-width: 0;
}

.hero__copy--panel {
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(56, 189, 248, 0.08)),
        rgba(255, 255, 255, 0.02);
    min-height: 100%;
}

.hero__phone--sticky {
    position: sticky;
    top: 5.8rem;
}

.eyebrow {
    display: inline-flex;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    color: #d1fae5;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.section-intro h2 {
    margin: 1rem 0;
    line-height: 1.02;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    max-width: 10ch;
}

.hero p,
.section-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 58ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0 1.5rem;
}

.hero__actions--secondary {
    margin: 0 0 1.1rem;
}

.hero__lead-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    margin: 2rem 0 0.9rem;
    max-width: 46rem;
}

.hero__slug-field {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 3.6rem;
    padding: 0 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.hero__slug-field span {
    color: #bfdbfe;
    font-weight: 700;
    white-space: nowrap;
}

.hero__slug-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
}

.hero__slug-field input::placeholder {
    color: rgba(226, 232, 240, 0.48);
}

.hero__subcta {
    margin: -0.35rem 0 1.7rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.hero__subcta a {
    color: #7dd3fc;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #04111f;
    background: linear-gradient(135deg, #22c55e, #38bdf8);
}

.button--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.hero__highlights {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.7rem;
}

.phone-card {
    margin-left: auto;
    width: min(100%, 420px);
    padding: 1rem;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.phone-card__banner {
    position: relative;
    overflow: hidden;
    height: 11rem;
    border-radius: 28px;
}

.phone-card__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.55));
}

.phone-card__profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    padding: 0 0.6rem;
}

.phone-card__logo {
    width: 4rem;
    height: 4rem;
    border-radius: 22px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: 800;
    color: #04111f;
    background: linear-gradient(145deg, #f8fafc, #a7f3d0);
    border: 4px solid rgba(15, 23, 42, 0.9);
}

.phone-card__profile h2,
.phone-card__section h3,
.feature-card h3,
.product-card h4 {
    margin: 0;
}

.phone-card__profile p {
    margin: 0.45rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.phone-card__video-frame,
.phone-card__section,
.feature-card {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: 24px;
}

.phone-card__video-frame {
    margin-top: 1.4rem;
    padding: 0.85rem;
}

.video-badge,
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.video-badge {
    color: #fef08a;
    font-size: 0.88rem;
}

.video-embed {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16 / 9;
    background: #020617;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.phone-card__section {
    margin-top: 1rem;
    padding: 1rem;
}

.link-grid,
.feature-grid,
.product-list,
.testimonial-list {
    display: grid;
    gap: 0.85rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 3.4rem;
    border-radius: 18px;
    padding: 0.9rem 1rem;
    font-weight: 600;
    transition: transform 180ms ease, background 180ms ease;
}

.social-link:hover,
.product-card:hover,
.feature-card:hover {
    transform: translateY(-2px);
}

.social-link--primary {
    color: #04111f;
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.social-link--secondary {
    background: rgba(255, 255, 255, 0.05);
}

.section-heading span {
    font-size: 0.8rem;
    color: #bfdbfe;
}

.product-card,
.testimonial-card {
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.product-card p,
.testimonial-card p {
    margin: 0.45rem 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-card strong {
    color: #a7f3d0;
    white-space: nowrap;
}

.stars {
    display: inline-flex;
    gap: 0.2rem;
    color: #fbbf24;
}

.testimonial-card strong {
    display: inline-block;
    margin-top: 0.75rem;
}

.feature-section {
    padding: 1rem 0 5rem;
}

.feature-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
}

.section-intro {
    max-width: 44rem;
}

.section-intro h2 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
}

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

.feature-card {
    padding: 1.3rem;
}

.feature-card i {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: rgba(56, 189, 248, 0.12);
    color: #7dd3fc;
    font-size: 1.35rem;
}

.feature-card p {
    margin-bottom: 0;
    line-height: 1.7;
}

.pricing-shell {
    padding: 2rem 0 5rem;
}

.pricing-hero {
    max-width: 44rem;
    margin-bottom: 2rem;
}

.pricing-hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

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

.pricing-card {
    padding: 1.6rem;
    border-radius: 30px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.pricing-card--featured {
    background:
        linear-gradient(160deg, rgba(34, 197, 94, 0.16), rgba(56, 189, 248, 0.12)),
        rgba(15, 23, 42, 0.88);
    border-color: rgba(56, 189, 248, 0.24);
}

.pricing-card__label {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.2rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #bfdbfe;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-card h2 {
    margin: 1.1rem 0 0.5rem;
    font-size: 2rem;
}

.pricing-card__price {
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.pricing-card__price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
}

.pricing-list {
    margin: 0 0 1.5rem;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.75rem;
    color: #e2e8f0;
}

.site-footer {
    padding: 0 0 2.5rem;
    font-size: 0.95rem;
    text-align: center;
}

.site-footer--profile {
    width: min(calc(100% - 2rem), 760px);
    padding-top: 1rem;
}

.profile-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.profile-footer-links a {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.auth-shell,
.dashboard-shell,
.profile-shell {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

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

.auth-card {
    width: min(100%, 560px);
    margin: 3rem auto;
    padding: 2rem;
}

.auth-card--wide {
    width: min(100%, 820px);
}

.auth-card h1,
.dashboard-hero h1,
.cta-panel h3,
.public-profile h1 {
    margin: 0.9rem 0;
}

.auth-card p,
.dashboard-hero p,
.cta-panel p,
.public-copy,
.public-profile__tagline,
.public-profile__meta,
.auth-helper {
    color: var(--muted);
    line-height: 1.7;
}

.form-stack,
.form-grid {
    display: grid;
    gap: 1rem;
}

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

.field {
    display: grid;
    gap: 0.45rem;
}

.field--full,
.form-grid__submit {
    grid-column: 1 / -1;
}

.field span {
    font-size: 0.92rem;
    color: #e2e8f0;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0.95rem 1rem;
}

.color-field,
.media-field {
    display: grid;
    gap: 0.75rem;
}

.color-field {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    align-items: center;
}

.color-field input[type="color"] {
    height: 3.2rem;
    padding: 0.2rem;
    border-radius: 14px;
    cursor: pointer;
}

.media-field {
    padding: 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.media-preview {
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.media-preview--banner {
    max-height: 180px;
}

.media-preview--logo {
    width: 120px;
    height: 120px;
    border-radius: 28px;
}

.media-preview--product {
    max-height: 180px;
}

.field textarea {
    resize: vertical;
}

.field--checkbox {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    grid-column: 1 / -1;
}

.field--checkbox input {
    width: auto;
}

.button--block {
    width: 100%;
}

.auth-helper a {
    color: #7dd3fc;
}

.alert {
    margin: 1rem 0;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid transparent;
}

.alert--success {
    color: #d1fae5;
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.12);
}

.alert--error {
    color: #fecaca;
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.12);
}

.dashboard-hero,
.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem 1.6rem;
    margin-bottom: 1.5rem;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.notification-wrap {
    position: relative;
}

.notification-button {
    position: relative;
    gap: 0.65rem;
    color: var(--text);
}

.notification-button span,
.notification-button i {
    color: inherit;
}

.notification-badge {
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.notification-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    z-index: 30;
    width: min(92vw, 380px);
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
}

.notification-panel[hidden] {
    display: none;
}

.notification-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.notification-panel__header span {
    font-size: 0.82rem;
    color: var(--muted);
}

.notification-panel__list {
    display: grid;
    gap: 0.85rem;
    max-height: 60vh;
    overflow: auto;
}

.notification-card {
    padding: 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.notification-card p {
    margin: 0.45rem 0 0;
    color: var(--muted);
}

.notification-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.panel-card {
    padding: 1.4rem;
}

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

.inline-form-card {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.inline-form-card strong {
    display: block;
    margin-bottom: 0.85rem;
}

.panel-toolbar,
.product-editor__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.panel-toolbar {
    margin-bottom: 1rem;
}

.panel-toolbar__hint {
    margin: 0;
    color: var(--muted);
}

.product-editor {
    display: grid;
    gap: 1rem;
}

.icon-button {
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #fca5a5;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.icon-picker-field {
    display: grid;
    gap: 0.7rem;
}

.icon-picker-trigger {
    justify-content: flex-start;
    gap: 0.7rem;
}

.icon-picker-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(12px);
}

.icon-picker-modal[hidden] {
    display: none;
}

.icon-picker-modal__dialog {
    width: min(100%, 760px);
    max-height: 85vh;
    overflow: auto;
    padding: 1.25rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
}

.icon-picker-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-picker-modal__header p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.icon-picker-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.icon-picker-option {
    display: grid;
    gap: 0.5rem;
    justify-items: center;
    padding: 1rem 0.75rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
}

.icon-picker-option i {
    font-size: 1.4rem;
}

.icon-picker-option span {
    font-size: 0.8rem;
    text-align: center;
    color: var(--muted);
}

.profile-shell {
    color: var(--profile-text);
}

.public-profile {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 0.85rem;
    border-radius: 30px;
    background: var(--profile-background);
    box-shadow: var(--shadow);
}

.public-profile__banner {
    position: relative;
    overflow: hidden;
    height: 12.8rem;
    border-radius: var(--profile-banner-radius);
    background: rgba(255, 255, 255, 0.08);
}

.public-profile__banner img,
.public-profile__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-profile__banner-fill {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%);
}

.public-profile__header {
    display: grid;
    gap: 0.7rem;
    margin: 0.85rem 0.85rem 1rem;
    position: relative;
    z-index: 2;
}

.public-profile__headline {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.public-profile__logo {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 999px;
    overflow: hidden;
    border: 3px solid rgba(15, 23, 42, 0.75);
    background: rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.2);
}

.public-profile__header h1 {
    font-size: clamp(1.55rem, 3.4vw, 2rem);
    line-height: 1.08;
    margin: 0;
    min-width: 0;
}

.public-profile__details {
    min-width: 0;
}

.public-profile__tagline,
.public-profile__meta {
    margin: 0;
}

.public-profile__meta {
    margin-top: 0.35rem;
}

.public-profile__icon-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0.25rem 0 1rem;
}

.public-profile__icon-links a {
    font-size: 2rem;
    color: var(--profile-text);
    transition: transform 180ms ease, opacity 180ms ease;
}

.public-profile__icon-links a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.public-card {
    padding: 1rem;
    margin-top: 1rem;
    background: color-mix(in srgb, var(--profile-card) 88%, transparent);
}

.public-copy {
    margin: 0;
}

.social-link--public {
    background: var(--profile-button);
    color: var(--profile-button-text);
    border-radius: var(--profile-button-radius);
}

.social-link--with-media {
    display: grid;
    gap: 0.9rem;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.social-link__media {
    display: block;
    width: 100%;
    min-height: 180px;
    background: rgba(255, 255, 255, 0.08);
}

.social-link__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-link__content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 1rem 1rem;
}

.map-embed {
    overflow: hidden;
    border-radius: 22px;
    min-height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 6, 23, 0.4);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

.product-card--public {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.08);
}

.product-slider {
    overflow: hidden;
    border-radius: 22px;
}

.product-slider__track {
    display: flex;
    transition: transform 380ms ease;
    will-change: transform;
}

.product-slider__slide {
    min-width: 100%;
}

.product-card__media {
    overflow: hidden;
    min-height: 110px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
}

.product-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.product-card__button {
    min-height: 2.8rem;
    padding: 0.65rem 1rem;
}

.modern-profile {
    position: relative;
    width: min(100%, 980px);
    margin: 0 auto;
    overflow: hidden;
    padding: 1.2rem;
    border-radius: 38px;
    color: var(--profile-text);
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.9)),
        var(--profile-background);
    box-shadow: var(--shadow);
}

.modern-profile__texture {
    position: absolute;
    inset: 0;
    background-image: var(--profile-texture);
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    filter: blur(10px) saturate(1.05);
    transform: scale(1.04);
}

.modern-profile__hero,
.modern-profile__grid {
    position: relative;
    z-index: 1;
}

.modern-profile__cover {
    position: relative;
    min-height: 18rem;
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(15, 23, 42, 0.18)),
        rgba(255, 255, 255, 0.04);
}

.modern-profile__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-profile__cover-fade {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.95));
}

.modern-profile__identity {
    position: relative;
    display: grid;
    justify-items: center;
    margin-top: -4.5rem;
    text-align: center;
}

.modern-profile__avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 5px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.35);
}

.modern-profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-profile__avatar span {
    font-size: 2rem;
    font-weight: 800;
}

.modern-profile__identity h1 {
    margin: 1rem 0 0;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1;
}

.modern-profile__tagline,
.modern-profile__meta {
    margin: 0.45rem 0 0;
    color: rgba(248, 250, 252, 0.82);
}

.modern-profile__icon-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.modern-profile__icon-links a {
    font-size: 1.7rem;
    color: var(--profile-text);
    transition: transform 180ms ease, opacity 180ms ease;
}

.modern-profile__icon-links a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.modern-profile__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modern-card {
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(16px);
}

.modern-card--wide {
    grid-column: 1 / -1;
}

.map-embed--modern {
    min-height: 320px;
}

.map-embed--modern iframe {
    min-height: 320px;
}

.contact-stack {
    display: grid;
    gap: 0.8rem;
}

.review-admin-list {
    display: grid;
    gap: 1rem;
}

.review-admin-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.review-admin-card__content p {
    margin: 0.5rem 0;
    color: var(--muted);
}

.review-admin-card__status {
    font-size: 0.85rem;
    color: #93c5fd;
}

.review-admin-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 0.35rem;
}

.rating-input input {
    display: none;
}

.rating-input span {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #64748b;
    cursor: pointer;
    transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.rating-input label:hover span,
.rating-input label:hover ~ label span,
.rating-input input:checked + span {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .hero__content,
    .feature-layout,
    .feature-grid,
    .dashboard-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero__phone {
        order: -1;
    }

    .phone-card {
        margin: 0 auto;
    }

    .hero__phone--sticky {
        position: relative;
        top: 0;
    }
}

@media (max-width: 720px) {
    .topbar {
        padding-top: 0.85rem;
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar__nav {
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .hero p,
    .section-intro p {
        font-size: 0.98rem;
    }

    .hero__lead-form {
        grid-template-columns: 1fr;
    }

    .phone-card {
        width: 100%;
        padding: 0.85rem;
        border-radius: 28px;
    }

    .hero__copy--panel {
        padding: 1.35rem;
        border-radius: 28px;
    }

    .phone-card__banner {
        height: 9.5rem;
        border-radius: 22px;
    }

    .phone-card__profile {
        gap: 0.8rem;
        padding: 0 0.3rem;
    }

    .phone-card__logo {
        width: 5.5rem;
        height: 5.5rem;
    }

    .phone-card__section,
    .phone-card__video-frame,
    .feature-card {
        border-radius: 20px;
    }

    .product-card {
        flex-direction: column;
    }

    .product-card--public {
        grid-template-columns: 1fr;
    }

    .panel-toolbar,
    .product-editor__header,
    .review-admin-card,
    .notification-panel__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .notification-panel {
        left: 0;
        right: auto;
    }

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

    .form-grid,
    .dashboard-hero,
    .cta-panel,
    .public-profile__header {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-card,
    .panel-card,
    .public-card,
    .cta-panel {
        border-radius: 22px;
    }

    .public-profile {
        border-radius: 24px;
        padding: 0.75rem;
    }

    .color-field {
        grid-template-columns: 1fr;
    }

    .profile-footer-links {
        justify-content: stretch;
    }

    .profile-footer-links a {
        width: 100%;
    }

    .public-profile__banner {
        height: 12.2rem;
    }

    .public-profile__header {
        gap: 0.75rem;
        margin: 0.7rem 0.8rem 1rem;
    }

    .public-profile__headline {
        align-items: center;
        gap: 0.8rem;
    }

    .public-profile__logo {
        width: 4rem;
        height: 4rem;
    }

    .public-profile__header h1 {
        font-size: clamp(1.35rem, 6vw, 1.7rem);
        line-height: 1.12;
    }

    .public-profile__tagline,
    .public-profile__meta {
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .public-profile__tagline {
        margin-top: 0;
    }

    .public-profile__meta {
        margin-top: 0.35rem;
    }

    .modern-profile {
        border-radius: 28px;
        padding: 0.85rem;
    }

    .modern-profile__cover {
        min-height: 13rem;
        border-radius: 24px;
    }

    .modern-profile__identity {
        margin-top: -3.3rem;
    }

    .modern-profile__avatar {
        width: 6.2rem;
        height: 6.2rem;
    }

    .modern-profile__grid {
        grid-template-columns: 1fr;
    }
}
