:root {
    --ink: #171321;
    --ink-2: #2a2238;
    --muted: #6d6478;
    --muted-2: #8c829d;
    --paper: #fffdfb;
    --paper-soft: #fbf8ff;
    --surface: #ffffff;
    --surface-2: #f7f2ff;
    --line: #e8e0f2;
    --line-strong: #d8cbea;
    --plum-950: #23142f;
    --plum-900: #321e4b;
    --plum-800: #432769;
    --plum-700: #5a38a1;
    --violet: #7257e8;
    --violet-soft: #ede8ff;
    --lavender: #f4efff;
    --success: #307457;
    --danger: #b74747;
--radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/* Preserve native hidden attribute behavior even when component classes define display values. */
[hidden] { display: none !important; }

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% -10%, rgba(114, 87, 232, 0.12), transparent 32rem),
        radial-gradient(circle at 92% 6%, rgba(67, 39, 105, 0.08), transparent 30rem),
        linear-gradient(180deg, #fffdfb 0%, #fbf8ff 45%, #fffdfb 100%);
    font-family: "Aptos", "Segoe UI Variable", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    color: #fff;
    background: var(--plum-800);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--plum-900);
    color: #fff;
    transition: top 180ms ease;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.narrow {
    max-width: 770px;
}

.centered {
    text-align: center;
}

.section {
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-lg {
    padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
}

.section-xl {
    padding: clamp(5.5rem, 9vw, 9rem) 0 clamp(4rem, 7vw, 7rem);
}

.section-tight {
    padding: 1.5rem 0 clamp(3rem, 5vw, 4.5rem);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(232, 224, 242, 0.72);
    background: rgba(255, 253, 251, 0.82);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 760;
    letter-spacing: -0.035em;
}

.brand-mark {
    width: 49px;
    height: 49px;
    max-width: 49px;
    max-height: 49px;
    object-fit: contain;
    flex: 0 0 36px;
    display: block;
}

.brand-text {
    color: var(--ink);
    font-size: 1.08rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link,
.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 650;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--ink);
    background: rgba(244, 239, 255, 0.72);
}

.nav-cta {
    margin-left: 0.45rem;
    color: var(--ink);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.64);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    border-color: var(--line-strong);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--plum-900);
    transition: transform 160ms ease, opacity 160ms ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.9rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 740;
    letter-spacing: -0.015em;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
    color: #fff;
    background: var(--plum-950);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--plum-900);
}

.btn-quiet {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
    border-color: var(--line);
}

.btn-quiet:hover,
.btn-quiet:focus-visible {
    border-color: var(--line-strong);
}

.btn-full {
    width: 100%;
}

.text-link {
    color: var(--plum-700);
    font-weight: 760;
}

.text-link:hover,
.text-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

h1 {
    max-width: 900px;
    margin-bottom: 1.25rem;
    font-size: clamp(3.25rem, 8vw, 6.7rem);
    font-weight: 790;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.15rem, 4.4vw, 4.2rem);
    font-weight: 780;
}

h3 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 760;
}

h4 {
    margin-bottom: 0.65rem;
    font-size: 1rem;
    font-weight: 760;
    letter-spacing: -0.03em;
}

p {
    color: var(--muted);
}

.hero {
    position: relative;
    overflow: visible;
    isolation: isolate;
}

    .hero::after {
        content: "";
        position: absolute;
        right: -20rem;
        bottom: -20rem;
        z-index: -1;
        width: 42rem;
        height: 42rem;
        border-radius: 999px;
        background: rgba(114, 87, 232, 0.075);
        filter: blur(10px);
        pointer-events: none;
    }

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
}

.hero-copy {
    max-width: 680px;
}

.hero-subtitle {
    max-width: 620px;
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: clamp(1.06rem, 1.8vw, 1.28rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 600px;
    margin: 0;
}

.hero-metrics div {
    padding: 1rem;
    border: 1px solid rgba(232, 224, 242, 0.8);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.62);
}

.hero-metrics dt {
    margin-bottom: 0.25rem;
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 780;
    letter-spacing: -0.04em;
}

.hero-metrics dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.hero-product {
    position: relative;
    min-height: 620px;
}

.device {
    position: absolute;
    border: 1px solid rgba(49, 36, 70, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 255, 0.78));
}

.device-screen {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: inherit;
    background:
        radial-gradient(circle at 20% 0%, rgba(114, 87, 232, 0.12), transparent 17rem),
        linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
}

.phone-device {
    z-index: 4;
    left: 0;
    bottom: 1.1rem;
    width: min(42vw, 310px);
    min-width: 270px;
    height: 560px;
    padding: 11px;
    border-radius: 40px;
    transform: rotate(-5deg);
}

.phone-device::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    z-index: 5;
    width: 82px;
    height: 24px;
    border-radius: 999px;
    background: #15121d;
    transform: translateX(-50%);
}

.phone-screen {
    padding: 3.2rem 1.1rem 1rem;
    border-radius: 30px;
}

.browser-device {
    z-index: 2;
    top: 1.2rem;
    right: 0;
    width: min(48vw, 570px);
    height: 410px;
    padding: 12px;
    border-radius: 32px;
    transform: rotate(1.5deg);
}

.browser-screen {
    padding: 1.35rem;
    border-radius: 24px;
}

.mock-header,
.browser-top,
.listen-toolbar,
.mock-title-row,
.language-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mock-header {
    margin-bottom: 1rem;
    color: var(--plum-700);
    font-size: 0.94rem;
}

.mock-menu {
    width: 16px;
    height: 11px;
    border-top: 2px solid var(--plum-700);
    border-bottom: 2px solid var(--plum-700);
}

.mock-title-row {
    margin-bottom: 1rem;
    color: var(--ink);
    font-size: 0.9rem;
}

.mock-title-row div {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--violet);
}

.qr-card,
.translation-card,
.recording-card,
.mock-stat-grid > div,
.language-row,
.setup-panel,
.language-panel,
.join-panel,
.guest-panel,
.listen-panel,
.contact-panel,
.detail-card,
.price-card,
.benefit-card,
.carousel-card,
.inclusion-card,
.cta-card {
    border: 1px solid rgba(232, 224, 242, 0.86);
    background: rgba(255, 255, 255, 0.78);
}

.qr-card {
    display: grid;
    gap: 0.72rem;
    justify-items: center;
    margin-bottom: 0.75rem;
    padding: 1rem;
    border-radius: 22px;
}

.qr-card span,
.qr-card small {
    color: var(--muted);
    font-size: 0.74rem;
}

.qr-card small {
    width: 100%;
    padding: 0.55rem 0.65rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--plum-700);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    width: 116px;
    height: 116px;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
}

.qr-grid i {
    border-radius: 3px;
    background: #1a1424;
}

.qr-grid i:nth-child(2n + 4),
.qr-grid i:nth-child(5n + 1),
.qr-grid i:nth-child(7n + 3) {
    background: rgba(114, 87, 232, 0.18);
}

.mock-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.mock-stat-grid > div {
    min-height: 76px;
    padding: 0.8rem;
    border-radius: 18px;
}

.mock-stat-grid span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--muted-2);
    font-size: 0.68rem;
}

.mock-stat-grid strong {
    color: var(--ink);
}

.recording-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(80, 52, 138, 0.88), rgba(114, 87, 232, 0.72));
    color: #fff;
}

.recording-card small {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.7rem;
}

.recording-card strong {
    color: #fff;
    font-size: 0.96rem;
}

.wave,
.audio-line {
    display: flex;
    align-items: center;
    gap: 3px;
}

.wave::before,
.wave::after {
    content: "";
}

.wave {
    height: 34px;
    background:
        linear-gradient(90deg, transparent 0 6%, rgba(255, 255, 255, 0.48) 6% 9%, transparent 9% 14%, rgba(255, 255, 255, 0.64) 14% 17%, transparent 17% 22%, rgba(255, 255, 255, 0.42) 22% 25%, transparent 25% 30%, rgba(255, 255, 255, 0.68) 30% 33%, transparent 33% 38%, rgba(255, 255, 255, 0.48) 38% 41%, transparent 41% 46%, rgba(255, 255, 255, 0.56) 46% 49%, transparent 49% 54%, rgba(255, 255, 255, 0.72) 54% 57%, transparent 57% 62%, rgba(255, 255, 255, 0.42) 62% 65%, transparent 65%);
    border-radius: 999px;
    opacity: 0.9;
}

.record-button {
    width: 42px;
    height: 42px;
    border: 8px solid rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    background: #fff;
}

.record-button::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin: 7px auto;
    border-radius: 4px;
    background: #d95151;
}

.browser-top {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(232, 224, 242, 0.75);
    color: var(--plum-700);
    font-size: 0.86rem;
}

.browser-top span {
    color: var(--muted);
    font-size: 0.78rem;
}

.translation-card {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 1.25rem;
    align-items: center;
    margin-top: 2.2rem;
    padding: 1.35rem;
    border-radius: 26px;
}

.preview-image {
    min-height: 165px;
    border-radius: 20px;
    background:
        linear-gradient(150deg, rgba(66, 39, 105, 0.18), rgba(114, 87, 232, 0.08)),
        linear-gradient(180deg, #d9d0ef, #fff);
    position: relative;
    overflow: hidden;
}

.preview-image::before,
.preview-image::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(67, 39, 105, 0.22);
}

.preview-image::before {
    right: 22px;
    bottom: 18px;
    width: 76px;
    height: 76px;
}

.preview-image::after {
    left: 18px;
    bottom: 22px;
    width: 120px;
    height: 48px;
}

.preview-image span {
    position: absolute;
    left: 50%;
    top: 25px;
    width: 54px;
    height: 120px;
    border-radius: 999px 999px 8px 8px;
    background: rgba(255, 255, 255, 0.74);
    transform: translateX(-50%);
}

.translation-card h2 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.55rem, 2.1vw, 2rem);
    letter-spacing: -0.04em;
}

.translation-card p {
    margin-bottom: 1.1rem;
    color: var(--ink-2);
    font-size: 1.05rem;
}

.audio-line {
    height: 38px;
}

.audio-line span {
    width: 5px;
    height: 14px;
    border-radius: 999px;
    background: rgba(114, 87, 232, 0.58);
}

.audio-line span:nth-child(2n) {
    height: 28px;
}

.audio-line span:nth-child(3n) {
    height: 20px;
}

.audio-line span:nth-child(5n) {
    height: 34px;
}

.language-row {
    margin: 1rem auto 0;
    max-width: 330px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
}

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

.floating-card {
    position: absolute;
    z-index: 5;
    display: grid;
    gap: 0.15rem;
    min-width: 150px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(232, 224, 242, 0.82);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
}

.floating-card strong {
    color: var(--ink);
    font-size: 0.86rem;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.78rem;
}

.floating-card-left {
    left: 2.5rem;
    top: 2rem;
}

.floating-card-right {
    right: 1rem;
    bottom: 4rem;
}

.section-heading {
    max-width: 790px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading.centered {
    margin-inline: auto;
}

.section-heading p {
    max-width: 690px;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.section-heading.centered p {
    margin-inline: auto;
}

.feature-stack {
    display: grid;
    gap: clamp(3rem, 7vw, 6rem);
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.75fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.feature-row.reverse {
    grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.03fr);
}

.feature-row.reverse .feature-visual {
    order: 2;
}

.feature-row.reverse .feature-copy {
    order: 1;
}

.feature-visual {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(232, 224, 242, 0.7);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 20% 20%, rgba(114, 87, 232, 0.13), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 255, 0.62));
    overflow: hidden;
}

.feature-visual::before {
    content: "";
    position: absolute;
    inset: auto -15% -32% -15%;
    height: 55%;
    border-radius: 50%;
    background: rgba(114, 87, 232, 0.08);
}

.setup-panel,
.join-panel,
.listen-panel {
    position: absolute;
    z-index: 2;
    padding: 1.45rem;
    border-radius: 28px;
}

.setup-panel {
    left: clamp(1.1rem, 5vw, 3.2rem);
    top: 2.5rem;
    width: min(72%, 310px);
}

.setup-logo {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1.3rem;
    border-radius: 18px;
    background: var(--plum-950);
    color: #fff;
    font-weight: 790;
}

.input-line,
.join-link,
.language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    margin-top: 0.65rem;
    padding: 0 0.9rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.mock-button {
    display: grid;
    place-items: center;
    min-height: 48px;
    margin-top: 1rem;
    border-radius: 999px;
    background: var(--plum-950);
    color: #fff;
    font-weight: 740;
}

.language-panel,
.guest-panel {
    position: absolute;
    z-index: 3;
    right: clamp(1rem, 4vw, 2.4rem);
    bottom: 2.2rem;
    width: min(66%, 300px);
    padding: 1.25rem;
    border-radius: 26px;
}

.language-option.selected {
    border-color: rgba(114, 87, 232, 0.38);
    color: var(--plum-800);
    background: rgba(237, 232, 255, 0.66);
    font-weight: 680;
}

.step-number {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--plum-700);
    font-size: 0.82rem;
    font-weight: 780;
    letter-spacing: 0.16em;
}

.feature-copy p {
    margin-bottom: 1.4rem;
    color: var(--muted);
    font-size: 1.04rem;
}

.check-list,
.feature-list {
    display: grid;
    gap: 0.72rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.feature-list li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--ink-2);
}

.check-list li::before,
.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: var(--violet);
}

.join-panel {
    left: clamp(1rem, 4vw, 2.6rem);
    top: 2.4rem;
    width: min(58%, 285px);
}

.large-qr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 130px;
    height: 130px;
    margin: 1rem auto;
    padding: 0.85rem;
    border-radius: 22px;
    background: #fff;
}

.large-qr span {
    border-radius: 9px;
    background:
        linear-gradient(90deg, #1a1424 0 38%, transparent 38% 62%, #1a1424 62% 100%),
        linear-gradient(180deg, #1a1424 0 38%, transparent 38% 62%, #1a1424 62% 100%);
}

.guest-panel {
    top: 5rem;
    bottom: auto;
}

.feature-visual.wide {
    min-height: 380px;
}

.listen-panel {
    inset: 2rem;
    display: grid;
    align-content: start;
    border-radius: 30px;
}

.listen-toolbar {
    margin-bottom: 1.2rem;
}

.listen-toolbar span {
    color: var(--plum-700);
    font-size: 0.85rem;
    font-weight: 720;
}

.listen-card {
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 255, 0.84));
}

.listen-card h4 {
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.audio-line.long {
    margin-top: 1.15rem;
}

.listen-tabs {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin: 1.2rem auto 0;
    padding: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
}

.listen-tabs span,
.listen-tabs strong {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
}

.listen-tabs strong {
    color: var(--plum-700);
    background: var(--violet-soft);
}

.surface-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(247, 242, 255, 0.46));
}

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

.benefit-card {
    padding: 1.35rem;
    border-radius: 24px;
}

.icon-bubble {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
    border-radius: 16px;
    color: var(--plum-700);
    background: var(--violet-soft);
}

.icon-bubble svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-size: 1.24rem;
    letter-spacing: -0.04em;
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.carousel-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 4rem);
}

.carousel-intro {
    position: sticky;
    top: 110px;
}

.carousel-intro p {
    font-size: 1.04rem;
}

.carousel {
    display: grid;
    gap: 1rem;
}

.carousel-track {
    position: relative;
    min-height: 320px;
}

.carousel-card {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    padding: clamp(1.6rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateY(12px) scale(0.985);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.carousel-card.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.carousel-card h3 {
    max-width: 650px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.carousel-card p {
    max-width: 620px;
    margin-bottom: 0;
    font-size: 1.06rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
}

.carousel-btn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
    border-color: var(--line-strong);
    transform: translateY(-1px);
}

.carousel-dots {
    display: flex;
    gap: 0.42rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--line-strong);
    cursor: pointer;
    transition: width 160ms ease, background 160ms ease;
}

.carousel-dot.is-active {
    width: 24px;
    background: var(--plum-800);
}

.page-hero {
    position: relative;
}

.page-hero h1 {
    margin-inline: auto;
    font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-hero p {
    margin: 0 auto;
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.pricing-section {
    padding-top: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.4rem;
    border-radius: 28px;
}

.price-card.is-popular {
    border-color: rgba(67, 39, 105, 0.34);
}

.price-card.is-popular::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 1.8rem;
    left: 1.8rem;
    height: 3px;
    border-radius: 999px;
    background: var(--plum-800);
}

.price-card-header {
    min-height: 128px;
}

.price-card h2 {
    margin-bottom: 0.45rem;
    font-size: 1.55rem;
}

.price-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0.9rem 0 1.25rem;
}

.price span {
    color: var(--ink);
    font-size: 2.7rem;
    font-weight: 790;
    letter-spacing: -0.06em;
}

.price small {
    color: var(--muted);
}

.custom-price span {
    font-size: 2.1rem;
}

.feature-list {
    margin-bottom: 1.4rem;
}

.price-card .btn {
    margin-top: auto;
}

.inclusion-card {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border-radius: var(--radius-lg);
}

.inclusion-card h2 {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.inclusion-card p {
    margin-bottom: 0;
}

.inclusion-grid {
    display: grid;
    gap: 0.8rem;
}

.inclusion-grid div {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
}

.inclusion-grid strong,
.inclusion-grid span {
    display: block;
}

.inclusion-grid strong {
    margin-bottom: 0.18rem;
    color: var(--ink);
}

.inclusion-grid span {
    color: var(--muted);
    font-size: 0.94rem;
}

.contact-section {
    padding-top: 0;
}

.contact-hero-copy {
    max-width: 980px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: clamp(1rem, 4vw, 2rem);
    align-items: start;
}

.contact-panel {
    padding: clamp(1.4rem, 4vw, 2.2rem);
    border-radius: var(--radius-lg);
}

.contact-panel h2,
.detail-card h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.muted {
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

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

.field > span:first-child {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink);
    outline: none;
    transition: border-color 160ms ease, background 160ms ease;
}

.field input {
    min-height: 52px;
    padding: 0 1rem;
}

.field textarea {
    resize: vertical;
    min-height: 150px;
    padding: 0.9rem 1rem;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(114, 87, 232, 0.55);
    background: #fff;
}

.field-error,
.validation-summary {
    color: var(--danger);
    font-size: 0.86rem;
}

.validation-summary ul {
    margin: 0;
    padding-left: 1.1rem;
}

.form-success {
    display: grid;
    gap: 0.2rem;
    margin: 1.2rem 0 0;
    padding: 1rem;
    border: 1px solid rgba(48, 116, 87, 0.24);
    border-radius: 18px;
    background: rgba(48, 116, 87, 0.08);
    color: var(--success);
}

.form-success strong {
    color: var(--success);
}

.form-success span {
    color: #376b55;
}

.contact-details {
    display: grid;
    gap: 1rem;
}

.detail-card {
    padding: 1.3rem;
    border-radius: 24px;
}

.detail-card p {
    margin-bottom: 0;
}

.accent-detail {
    background: var(--plum-950);
}

.accent-detail h2,
.accent-detail p {
    color: #fff;
}

.accent-detail p {
    color: rgba(255, 255, 255, 0.74);
}

.accent-detail .text-link {
    display: inline-block;
    margin-top: 1rem;
    color: #fff;
}

.cta-section {
    padding-top: clamp(3rem, 5vw, 5rem);
}

.cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 90% 20%, rgba(114, 87, 232, 0.16), transparent 20rem),
        var(--plum-950);
}

.cta-card h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.cta-card p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
}

.cta-card .btn-primary {
    background: #fff;
    color: var(--plum-950);
}

.cta-card .btn-primary:hover,
.cta-card .btn-primary:focus-visible {
    background: rgba(255, 255, 255, 0.92);
}

.cta-card .btn-quiet {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.site-footer {
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
    border-top: 1px solid rgba(232, 224, 242, 0.72);
    background: rgba(255, 253, 251, 0.68);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) 0.45fr 0.45fr minmax(220px, 0.7fr);
    gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-primary p {
    max-width: 390px;
    margin: 1rem 0 0;
}

.footer-column,
.footer-meta {
    display: grid;
    gap: 0.5rem;
    align-content: start;
}

.footer-column h2 {
    margin: 0 0 0.35rem;
    color: var(--ink);
    font-size: 0.92rem;
    letter-spacing: 0;
}

.footer-column a,
.footer-column span,
.footer-meta span {
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--ink);
}

.footer-meta {
    justify-items: end;
    text-align: right;
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 840px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-subtitle,
    .hero-actions,
    .hero-metrics {
        margin-inline: auto;
    }

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

    .hero-product {
        min-height: 600px;
        max-width: 760px;
        width: 100%;
        margin-inline: auto;
    }

    .phone-device {
        left: 2rem;
        width: 300px;
    }

    .browser-device {
        right: 1rem;
        width: 540px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-meta {
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .site-header.is-open .nav-toggle span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .site-header.is-open .nav-toggle span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        display: grid;
        gap: 0.25rem;
        padding: 0.75rem;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 253, 251, 0.96);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .site-header.is-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link,
    .nav-cta {
        justify-content: center;
        min-height: 46px;
        margin-left: 0;
    }

    .feature-row,
    .feature-row.reverse,
    .contact-grid,
    .inclusion-card,
    .cta-card,
    .carousel-shell {
        grid-template-columns: 1fr;
    }

    .feature-row.reverse .feature-visual,
    .feature-row.reverse .feature-copy {
        order: initial;
    }

    .carousel-intro {
        position: static;
    }

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

@media (max-width: 720px) {
    .section,
    .section-lg,
    .section-xl {
        padding-left: 0;
        padding-right: 0;
    }

    h1 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }

    .hero-product {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .device,
    .floating-card {
        position: static;
        transform: none;
    }

    .phone-device,
    .browser-device {
        width: 100%;
        min-width: 0;
        height: auto;
        margin-inline: auto;
    }

    .phone-screen,
    .browser-screen {
        min-height: 520px;
    }

    .browser-screen {
        min-height: auto;
    }

    .translation-card {
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }

    .preview-image {
        min-height: 130px;
    }

    .floating-card {
        min-width: 0;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .feature-visual {
        min-height: 600px;
    }

    .feature-visual.wide {
        min-height: 430px;
    }

    .setup-panel,
    .language-panel,
    .join-panel,
    .guest-panel,
    .listen-panel {
        position: absolute;
    }

    .setup-panel,
    .join-panel {
        left: 1rem;
        right: 1rem;
        width: auto;
    }

    .language-panel,
    .guest-panel {
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
        width: auto;
    }

    .guest-panel {
        top: auto;
    }

    .listen-panel {
        inset: 1rem;
    }

    .benefits-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .price-card-header {
        min-height: auto;
    }

    .carousel-track {
        min-height: 380px;
    }

    .carousel-controls {
        justify-content: center;
    }

    .cta-card .btn,
    .hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .container {
        width: min(100% - 1.25rem, var(--container));
    }

    .nav {
        min-height: 68px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .phone-screen {
        padding-inline: 0.8rem;
    }

    .recording-card {
        grid-template-columns: 1fr auto;
    }

    .recording-card .wave {
        display: none;
    }

    .carousel-track {
        min-height: 430px;
    }

    .cta-actions {
        display: grid;
    }
}

/* Refined coded product visuals inspired by the Opentour Voice guide app screens. */
.app-showcase {
    position: relative;
    min-height: 680px;
    isolation: isolate;
    perspective: 1400px;
}

.showcase-glow {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(6px);
    opacity: 0.9;
}

.glow-a {
    width: 26rem;
    height: 26rem;
    left: 0;
    top: 3rem;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 68%);
}

.glow-b {
    width: 31rem;
    height: 31rem;
    right: -5rem;
    bottom: -3rem;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.2), transparent 70%);
}

.mobile-shell,
.tablet-shell,
.maui-phone,
.maui-floating-panel,
.guest-tablet-panel,
.showcase-card,
.share-popover,
.translation-bubble {
    border: 1px solid rgba(216, 204, 255, 0.72);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 255, 0.82));
    backdrop-filter: blur(16px);
}

.mobile-shell {
    position: absolute;
    z-index: 5;
    width: 330px;
    border-radius: 44px;
    padding: 10px;
    background: linear-gradient(145deg, #24113f, #4a2a74 50%, #171321);
}

.guide-live-shell {
    left: 0.4rem;
    bottom: 1.2rem;
    height: 640px;
    transform: rotate(-4deg) translateZ(20px);
}

.device-bezel,
.tablet-screen,
.maui-phone,
.guest-tablet-panel {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 0%, rgba(124, 58, 237, 0.11), transparent 18rem),
        linear-gradient(180deg, #fff 0%, #f8f5ff 100%);
}

.device-bezel {
    padding: 1rem 1rem 9.6rem;
}

.mobile-notch {
    position: absolute;
    left: 50%;
    top: 16px;
    z-index: 4;
    width: 86px;
    height: 25px;
    border-radius: 999px;
    background: #0f0a1f;
    transform: translateX(-50%);
}

.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 24px;
    margin: 0 0.2rem 0.75rem;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 760;
}

.phone-status.compact {
    margin-bottom: 1.3rem;
}

.status-icons {
    display: flex;
    align-items: end;
    gap: 3px;
}

.status-icons i {
    display: block;
    width: 4px;
    border-radius: 999px;
    background: var(--ink);
}

.status-icons i:nth-child(1) { height: 7px; }
.status-icons i:nth-child(2) { height: 10px; }
.status-icons i:nth-child(3) { width: 14px; height: 8px; border-radius: 3px; }

.app-header-line,
.tablet-topbar,
.screen-title-block,
.recording-dock-head,
.dock-actions,
.language-strip,
.player-controls,
.guest-bottom-tabs,
.remember-row,
.compact-header,
.channel-card-mini div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.app-header-line {
    margin-bottom: 1.15rem;
    color: var(--plum-700);
}

.app-header-line strong,
.tablet-topbar strong {
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.menu-glyph {
    display: inline-grid;
    width: 16px;
    height: 12px;
    background: linear-gradient(var(--plum-700) 0 0) 0 0 / 100% 2px no-repeat,
                linear-gradient(var(--plum-700) 0 0) 0 50% / 72% 2px no-repeat,
                linear-gradient(var(--plum-700) 0 0) 0 100% / 92% 2px no-repeat;
}

.header-people {
    position: relative;
    padding-left: 1.1rem;
    color: var(--plum-800);
    font-size: 0.86rem;
    font-weight: 760;
}

.header-people::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.72rem;
    height: 0.72rem;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    transform: translateY(-50%);
}

.guide-screen-body {
    display: grid;
    gap: 0.75rem;
}

.screen-title-block h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.35rem;
    letter-spacing: -0.045em;
}

.screen-title-block span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--plum-700);
    font-size: 0.82rem;
    font-weight: 720;
}

.screen-title-block span i,
.recording-dock-head span i,
.record-strip i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7c3aed;
}

.maui-card {
    border: 1px solid rgba(216, 204, 255, 0.74);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
}

.qr-panel {
    display: grid;
    justify-items: center;
    gap: 0.7rem;
    padding: 0.95rem;
}

.qr-matrix {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 3px;
    width: 118px;
    height: 118px;
    padding: 0.72rem;
    border-radius: 20px;
    background: #fff;
}

.qr-matrix.small {
    grid-template-columns: repeat(6, 1fr);
    width: 116px;
    height: 116px;
}

.qr-matrix b {
    display: block;
    min-width: 0;
    border-radius: 3px;
    background: #14101d;
}

.qr-matrix b:nth-child(2n + 3),
.qr-matrix b:nth-child(3n + 7),
.qr-matrix b:nth-child(5n + 2),
.qr-matrix b:nth-child(11n) {
    background: rgba(124, 58, 237, 0.16);
}

.qr-matrix b:nth-child(1),
.qr-matrix b:nth-child(2),
.qr-matrix b:nth-child(9),
.qr-matrix b:nth-child(10),
.qr-matrix b:nth-child(55),
.qr-matrix b:nth-child(56),
.qr-matrix b:nth-child(63),
.qr-matrix b:nth-child(64) {
    background: #14101d;
}

.join-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 39px;
    padding: 0.35rem 0.42rem 0.35rem 0.75rem;
    border: 1px solid rgba(216, 204, 255, 0.86);
    border-radius: 999px;
    background: rgba(241, 237, 255, 0.52);
}

.join-field span {
    overflow: hidden;
    color: var(--plum-700);
    font-size: 0.72rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.join-field strong {
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--plum-800);
    font-size: 0.66rem;
}

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

.maui-metric-grid article {
    padding: 0.78rem;
}

.maui-metric-grid span,
.language-strip span,
.channel-card-mini span {
    display: block;
    color: var(--muted);
    font-size: 0.68rem;
}

.maui-metric-grid strong,
.language-strip strong,
.channel-card-mini b {
    color: var(--ink);
    font-size: 0.94rem;
}

.language-strip {
    min-height: 66px;
    padding: 0.85rem;
}

.flag-stack {
    display: inline-flex;
    align-items: center;
}

.flag-stack i {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-left: 0;
    transform: translateX(-0.25rem);
    border: 2px solid #fff;
    border-radius: 50%;
    background: #fff;
    font-style: normal;
    font-size: 0.82rem;
}

.recording-dock {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 1rem;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.24), transparent 12rem),
        linear-gradient(135deg, rgba(91, 33, 182, 0.94), rgba(167, 139, 250, 0.88));
}

.recording-dock-head span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 760;
}

.recording-dock-head span i,
.record-strip i {
    background: #fff;
}

.recording-dock-head strong {
    color: #fff;
    font-size: 0.95rem;
}

.recording-wave,
.audio-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.recording-wave {
    height: 46px;
    margin: 0.4rem 0 0.75rem;
}

.recording-wave span,
.audio-bars span {
    display: block;
    width: 4px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.58;
}

.recording-wave span {
    color: #fff;
    height: 18px;
}

.recording-wave span:nth-child(2n),
.audio-bars span:nth-child(2n) { height: 30px; }
.recording-wave span:nth-child(3n),
.audio-bars span:nth-child(3n) { height: 22px; }
.recording-wave span:nth-child(5n),
.audio-bars span:nth-child(5n) { height: 38px; }

.dock-actions button {
    flex: 1;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.dock-actions .record-action {
    background: #fff;
    color: var(--plum-800);
}

.tablet-shell {
    position: absolute;
    z-index: 3;
    top: 0.9rem;
    right: 0;
    width: min(590px, 52vw);
    height: 430px;
    border-radius: 36px;
    padding: 12px;
    background: linear-gradient(145deg, #1c1728, #343043 55%, #171321);
    transform: rotate(1.5deg) translateZ(0);
}

.tablet-screen {
    padding: 1.35rem;
    border-radius: 26px;
}

.tablet-topbar {
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(216, 204, 255, 0.62);
    color: var(--plum-700);
}

.tablet-topbar span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 690;
}

.guest-welcome {
    max-width: 440px;
    margin: 1.35rem auto 1.1rem;
    text-align: center;
}

.guest-welcome span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 690;
}

.guest-welcome h2 {
    margin: 0.28rem 0 0.5rem;
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}

.guest-welcome p {
    margin: 0;
    color: var(--ink-2);
    font-size: 1rem;
}

.player-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(216, 204, 255, 0.74);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
}

.place-card {
    position: relative;
    min-height: 142px;
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(150deg, rgba(124, 58, 237, 0.12), rgba(255, 255, 255, 0.4)),
        linear-gradient(180deg, #ddd6fe 0%, #fff 100%);
}

.place-card i {
    position: absolute;
    display: block;
    bottom: 20px;
    border-radius: 999px 999px 8px 8px;
    background: rgba(91, 33, 182, 0.22);
}

.place-card i:nth-child(1) {
    left: 22px;
    width: 36px;
    height: 74px;
}

.place-card i:nth-child(2) {
    left: 62px;
    width: 48px;
    height: 104px;
    background: rgba(255, 255, 255, 0.72);
}

.place-card i:nth-child(3) {
    right: 18px;
    width: 34px;
    height: 62px;
}

.audio-player-ui {
    display: grid;
    gap: 0.85rem;
}

.audio-bars {
    color: var(--violet);
    min-height: 52px;
}

.audio-bars span {
    height: 18px;
}

.player-controls {
    justify-content: center;
}

.player-controls span,
.player-controls strong {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(244, 239, 255, 0.9);
    color: var(--plum-800);
    font-size: 0.78rem;
    font-weight: 800;
}

.player-controls strong {
    width: 48px;
    height: 48px;
    background: var(--plum-800);
    color: #fff;
}

.guest-bottom-tabs {
    width: max-content;
    margin: 1rem auto 0;
    padding: 0.3rem;
    border: 1px solid rgba(216, 204, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.guest-bottom-tabs span,
.guest-bottom-tabs strong {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 740;
}

.guest-bottom-tabs strong {
    color: var(--plum-700);
    background: rgba(237, 232, 255, 0.9);
}

.showcase-card {
    position: absolute;
    z-index: 6;
    display: grid;
    gap: 0.18rem;
    min-width: 170px;
    padding: 0.95rem 1rem;
    border-radius: 20px;
}

.showcase-card strong,
.share-popover strong {
    color: var(--ink);
    font-size: 0.88rem;
}

.showcase-card span,
.share-popover span {
    color: var(--muted);
    font-size: 0.77rem;
}

.share-card {
    left: 2.2rem;
    top: 2.2rem;
}

.language-card-mini {
    right: 0.7rem;
    bottom: 5.2rem;
}

.maui-scene {
    min-height: 510px;
    border-color: rgba(216, 204, 255, 0.68);
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.13), transparent 19rem),
        radial-gradient(circle at 90% 75%, rgba(196, 181, 253, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 245, 255, 0.68));
}

.maui-scene::after {
    content: "";
    position: absolute;
    right: -14%;
    bottom: -22%;
    width: 78%;
    height: 42%;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.09);
}

.maui-phone {
    position: absolute;
    z-index: 3;
    width: 285px;
    min-height: 430px;
    padding: 1.1rem;
    border-radius: 36px;
}

.upright-phone {
    left: clamp(1rem, 5vw, 3rem);
    top: 2rem;
    transform: rotate(-4deg);
}

.brand-lockup {
    display: grid;
    justify-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.brand-lockup span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 19px;
    background: var(--plum-800);
    color: #fff;
    font-weight: 850;
}

.brand-lockup strong {
    color: var(--plum-700);
    font-size: 1.18rem;
}

.maui-phone h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    text-align: center;
}

.maui-phone p {
    margin-bottom: 1rem;
    font-size: 0.82rem;
    text-align: center;
}

.maui-phone label {
    display: block;
    margin: 0.7rem 0 0.3rem;
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 740;
}

.form-line {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 0.85rem;
    border: 1px solid rgba(216, 204, 255, 0.8);
    border-radius: 16px;
    background: rgba(241, 237, 255, 0.5);
    color: var(--muted);
    font-size: 0.84rem;
}

.form-line span {
    width: 15px;
    height: 15px;
    border: 1.5px solid rgba(91, 33, 182, 0.48);
    border-radius: 4px;
}

.remember-row {
    justify-content: flex-start;
    margin: 0.9rem 0 1rem;
}

.remember-row i {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--plum-700);
    border-radius: 5px;
    background: rgba(237, 232, 255, 0.9);
}

.remember-row span {
    color: var(--muted);
    font-size: 0.78rem;
}

.solid-action {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--plum-800), var(--violet));
    color: #fff;
    font-weight: 790;
}

.maui-floating-panel {
    position: absolute;
    z-index: 4;
    padding: 1.35rem;
    border-radius: 28px;
}

.source-language-panel {
    right: clamp(1rem, 4vw, 2.5rem);
    bottom: 2.2rem;
    width: min(52%, 310px);
}

.floating-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(237, 232, 255, 0.92);
    color: var(--plum-700);
    font-weight: 900;
}

.maui-floating-panel h4 {
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.maui-floating-panel p {
    margin-bottom: 1rem;
    font-size: 0.84rem;
}

.language-choice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    margin-top: 0.58rem;
    padding: 0 0.85rem;
    border: 1px solid rgba(216, 204, 255, 0.72);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--ink-2);
    font-size: 0.9rem;
    font-weight: 650;
}

.language-choice.active {
    border-color: rgba(124, 58, 237, 0.45);
    background: rgba(237, 232, 255, 0.78);
    color: var(--plum-800);
}

.live-phone-mini {
    left: clamp(1rem, 4vw, 2.4rem);
    top: 2rem;
    width: 300px;
    min-height: 468px;
    transform: rotate(-4deg);
}

.compact-header {
    margin-bottom: 0.8rem;
}

.screen-title-block.mini h3 {
    font-size: 1.1rem;
}

.compact-qr {
    margin-top: 0.7rem;
    padding: 0.8rem;
}

.channel-card-mini {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.7rem;
    padding: 0.8rem;
}

.channel-card-mini strong {
    color: var(--ink);
    font-size: 0.82rem;
}

.channel-card-mini div {
    min-height: 27px;
    border-bottom: 1px solid rgba(216, 204, 255, 0.5);
}

.channel-card-mini div:last-child {
    border-bottom: 0;
}

.record-strip {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.8rem;
    padding: 0.75rem 0.85rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.92), rgba(167, 139, 250, 0.82));
    color: #fff;
}

.record-strip span,
.record-strip strong {
    color: #fff;
    font-size: 0.78rem;
}

.guest-join-panel {
    right: clamp(1rem, 4vw, 2.4rem);
    top: 4.6rem;
    width: min(48%, 300px);
}

.share-popover {
    position: absolute;
    z-index: 5;
    left: 3.5rem;
    bottom: 2.2rem;
    display: grid;
    gap: 0.25rem;
    width: 220px;
    padding: 1rem;
    border-radius: 22px;
}

.share-popover div {
    display: flex;
    gap: 0.45rem;
    margin-top: 0.55rem;
}

.share-popover i {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgba(237, 232, 255, 0.9);
}

.share-popover i:nth-child(2) { background: rgba(74, 222, 128, 0.2); }
.share-popover i:nth-child(3) { background: rgba(124, 58, 237, 0.16); }

.listen-scene {
    min-height: 440px;
}

.guest-tablet-panel {
    position: absolute;
    inset: 2rem;
    z-index: 3;
    padding: 1.35rem;
    border-radius: 32px;
}

.tablet-topbar.refined {
    padding-bottom: 0.9rem;
}

.translated-content-card {
    display: grid;
    grid-template-columns: minmax(130px, 190px) 1fr;
    gap: 1.25rem;
    align-items: center;
    margin-top: 1.3rem;
    padding: 1.25rem;
    border: 1px solid rgba(216, 204, 255, 0.72);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
}

.place-card.large {
    min-height: 190px;
}

.translated-content-card h4 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.35rem, 2.7vw, 2.1rem);
}

.translated-content-card p {
    color: var(--ink-2);
    font-size: 1.03rem;
}

.wide-bars {
    justify-content: flex-start;
}

.refined-tabs {
    margin-top: 1.25rem;
}

.translation-bubble {
    position: absolute;
    z-index: 4;
    max-width: 220px;
    padding: 0.85rem 1rem;
    border-radius: 20px;
    color: var(--plum-800);
    font-size: 0.82rem;
    font-weight: 700;
}

.bubble-fr {
    left: 1.2rem;
    top: 2.1rem;
}

.bubble-de {
    right: 1.3rem;
    top: 3rem;
}

.bubble-it {
    right: 2.7rem;
    bottom: 2.2rem;
}

@media (max-width: 1080px) {
    .app-showcase {
        min-height: 660px;
    }

    .guide-live-shell {
        left: 2rem;
    }

    .tablet-shell {
        right: 1rem;
        width: 560px;
    }
}

@media (max-width: 860px) {
    .app-showcase {
        min-height: 980px;
    }

    .guide-live-shell {
        left: 50%;
        top: 0;
        bottom: auto;
        transform: translateX(-50%) rotate(-2deg);
    }

    .tablet-shell {
        top: 35rem;
        right: 50%;
        width: min(100%, 590px);
        transform: translateX(50%) rotate(1deg);
    }

    .share-card,
    .language-card-mini {
        display: none;
    }

    .maui-scene {
        min-height: 600px;
    }

    .source-language-panel,
    .guest-join-panel {
        width: min(52%, 300px);
    }

    .translated-content-card {
        grid-template-columns: 1fr;
    }

    .place-card.large {
        min-height: 135px;
    }
}

@media (max-width: 720px) {
    .app-showcase {
        display: grid;
        gap: 1rem;
        min-height: auto;
    }

    .mobile-shell,
    .tablet-shell,
    .showcase-card {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none;
    }

    .guide-live-shell {
        left: auto;
        top: auto;
        height: 640px;
    }

    .tablet-shell {
        right: auto;
        height: auto;
    }

    .tablet-screen {
        min-height: 0;
    }

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

    .place-card {
        min-height: 130px;
    }

    .showcase-card {
        display: grid;
        min-width: 0;
    }

    .maui-scene {
        min-height: 720px;
    }

    .maui-phone,
    .maui-floating-panel,
    .share-popover,
    .guest-tablet-panel,
    .translation-bubble {
        position: absolute;
    }

    .upright-phone,
    .live-phone-mini {
        left: 1rem;
        right: 1rem;
        width: auto;
        transform: none;
    }

    .source-language-panel,
    .guest-join-panel {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        top: auto;
        width: auto;
    }

    .share-popover {
        display: none;
    }

    .listen-scene {
        min-height: 620px;
    }

    .guest-tablet-panel {
        inset: 1rem;
    }

    .translation-bubble {
        max-width: 170px;
        font-size: 0.72rem;
    }

    .bubble-fr { left: 1.4rem; top: 1.4rem; }
    .bubble-de { right: 1.4rem; top: 1.4rem; }
    .bubble-it { left: 1.4rem; right: auto; bottom: 1.4rem; }
}

@media (max-width: 440px) {
    .mobile-shell {
        padding: 8px;
        border-radius: 38px;
    }

    .device-bezel {
        padding-inline: 0.75rem;
    }

    .recording-dock {
        right: 8px;
        bottom: 8px;
        left: 8px;
    }

    .dock-actions {
        display: grid;
    }

    .maui-scene {
        min-height: 760px;
    }

    .maui-phone {
        padding: 0.95rem;
    }

    .guest-tablet-panel {
        padding: 1rem;
    }

    .translated-content-card {
        padding: 1rem;
    }
}

/* Opentour Voice SaaS pricing/product refinements */
.brand-lockup .brand-mark,
.brand-lockup span img,
.footer-brand .brand-mark {
    display: block;
    object-fit: contain;
    background: transparent;
}

.saas-price-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
}

.saas-price .price span,
.saas-price span {
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    line-height: 1;
}

.price-note,
.small-plan-note {
    margin-top: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.small-plan-note {
    margin: 0 0 1.1rem;
}

.compact-feature-list {
    display: grid;
    gap: 0.62rem;
    padding-left: 0;
    list-style: none;
}

.compact-feature-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--ink-2);
    font-size: 0.94rem;
}

.compact-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--plum-800);
}

.pricing-note-section,
.product-shot-section,
.faq-section {
    padding-top: 0;
    background: transparent;
}

.comparison-card {
    align-items: start;
}

.comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 780;
    letter-spacing: 0.01em;
}

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

.product-shot-grid img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.faq-container {
    max-width: 1040px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
}

.faq-list summary {
    cursor: pointer;
    padding: 1rem 1.15rem;
    color: var(--ink);
    font-weight: 760;
}

.faq-list p {
    margin: 0;
    padding: 0 1.15rem 1.1rem;
    color: var(--muted);
}

@media (max-width: 980px) {
    .pricing-grid.saas-pricing-grid,
    .product-shot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pricing-grid.saas-pricing-grid,
    .product-shot-grid,
    .comparison-card {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        min-width: 500px;
    }
}

/* Focused SaaS revision: clean Opentour Voice pricing, checkout, and Dashboard visuals. */
:root {
    --ink: #1F2937;
    --ink-2: #1F2937;
    --muted: #6B7280;
    --muted-2: #6B7280;
    --paper: #FFFFFF;
    --paper-soft: #FFFFFF;
    --surface: #FFFFFF;
    --surface-2: #F5F3FF;
    --line: #F3F4F6;
    --line-strong: #E5E7EB;
    --plum-950: #1F2937;
    --plum-900: #1F2937;
    --plum-800: #6D28D9;
    --plum-700: #7C3AED;
    --violet: #7C3AED;
    --violet-soft: #F5F3FF;
    --lavender: #F5F3FF;
--radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
}
body { background: #fff; color: var(--ink); }
.site-header { border-bottom-color: var(--line); background: rgba(255,255,255,.92); }
.brand { font-weight: 600; }
.nav-link, .nav-cta { border-radius: 10px; font-weight: 500; color: var(--muted); }
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { color: var(--ink); background: var(--surface-2); }
.nav-cta { color: var(--violet); border-color: var(--violet); background: #fff; }
.btn { min-height: 48px; border-radius: 10px; font-weight: 500; letter-spacing: 0; }
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: #6D28D9; }
.btn-quiet { background: #fff; border-color: var(--violet); color: var(--violet); }
.price-card, .saas-price-card, .benefit-card, .inclusion-card, .carousel-shell, .dashboard-preview-card, .dashboard-capability-list article { background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.price-card.is-popular::before { content: none; }
.price-card.is-popular { border-color: var(--line); }
.price-card h2, .section-heading h2, .page-hero h1, .hero-copy h1 { color: var(--ink); font-weight: 600; }
.price, .saas-price span { color: var(--ink); font-weight: 600; }
.price-note, .small-plan-note, .feature-list, .section-heading p, .page-hero p { color: var(--muted); }
.feature-list li::before, .check-list li::before { color: var(--violet); }
.icon-bubble { color: var(--violet); background: var(--surface-2); }
.icon-bubble svg, .benefit-card svg { stroke-width: 1.5; }
.comparison-table th { color: var(--muted); font-weight: 500; }
.comparison-table td, .comparison-table th { border-color: var(--line); }
.product-shot-grid img { border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.dashboard-section { background: #fff; }
.dashboard-workflow-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr) minmax(280px, .82fr); gap: 1.25rem; align-items: stretch; }
.dashboard-preview-card { padding: clamp(1rem, 2vw, 1.35rem); display: grid; align-items: center; }
.dashboard-preview-stack { gap: 1rem; }
.dashboard-preview-stack img { border: 1px solid var(--line); border-radius: 14px; }
.dashboard-capability-list { display: grid; gap: .85rem; padding: 1rem; }
.dashboard-capability-list article { padding: 1rem; }
.dashboard-capability-list h3 { margin: 0 0 .3rem; font-size: 1rem; font-weight: 600; color: var(--ink); }
.dashboard-capability-list p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55; }
@media (max-width: 1040px) {
    .dashboard-workflow-grid { grid-template-columns: 1fr; }
}

/* Production SaaS revision: pricing, comparison, and dashboard sections. */
.nav-link,
.nav-cta,
.btn,
.carousel-btn,
.solid-action,
.dock-actions button {
    font-weight: 500;
}

.price-card-header {
    min-height: 7.2rem;
}

.price-start-label {
    margin: 1.1rem 0 0.35rem;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
}

.monthly-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.6rem;
}

.monthly-price small {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.compact-feature-list li {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    gap: 0.55rem;
    padding-left: 0;
    color: var(--ink);
}

.compact-feature-list li::before {
    content: "";
    position: static;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    border-radius: 50%;
    background: var(--violet-soft);
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9.2L7.45 11.65L13 6' stroke='%237C3AED' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.1rem 1.1rem;
}

.comparison-panel {
    display: grid;
    gap: 1.35rem;
    padding: clamp(1.1rem, 2vw, 1.6rem);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.comparison-intro {
    max-width: 760px;
}

.comparison-intro h2 {
    margin: 0 0 0.4rem;
    color: var(--ink);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.035em;
}

.comparison-intro p {
    margin: 0;
    color: var(--muted);
}

.structured-comparison {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.detailed-comparison-table {
    min-width: 1120px;
}

.detailed-comparison-table th,
.detailed-comparison-table td {
    padding: 0.95rem 0.85rem;
    white-space: normal;
}

.detailed-comparison-table thead th {
    background: #FAFAFA;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.detailed-comparison-table tbody th {
    color: var(--ink);
    font-weight: 600;
}

.dashboard-steps-grid {
    display: grid;
    gap: 1.25rem;
}

.dashboard-step-card {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.7fr);
    gap: 1.25rem;
    align-items: center;
    padding: clamp(1rem, 2vw, 1.25rem);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.dashboard-step-card.reverse {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.06fr);
}

.dashboard-step-card.reverse .dashboard-step-visual {
    order: 2;
}

.dashboard-step-visual img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.dashboard-step-copy h3 {
    margin: 0 0 0.45rem;
    color: var(--ink);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.035em;
}

.dashboard-step-copy p {
    margin: 0;
    color: var(--muted);
    max-width: 36rem;
}

@media (max-width: 900px) {
    .price-card-header { min-height: 0; }
    .dashboard-step-card,
    .dashboard-step-card.reverse {
        grid-template-columns: 1fr;
    }
    .dashboard-step-card.reverse .dashboard-step-visual {
        order: 0;
    }
}


/* Marketing image update: transparent app renders replace coded mockups. */
.image-hero-showcase {
    min-height: clamp(560px, 58vw, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-hero-phone {
    transform: translateX(4%) scale(1.2);
}

.image-step-visual {
    min-height: clamp(360px, 48vw, 540px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
}

.image-step-visual::before,
.image-step-visual::after {
    content: none;
    display: none;
}

.step-phone-image {
    width: 96%;
    height: auto;
    object-fit: contain;
}

.feature-row {
    align-items: center;
    gap: clamp(1.25rem, 4vw, 3.25rem);
}

.feature-copy {
    margin-inline-start: 0;
}

.feature-row.reverse .feature-copy {
    margin-inline-start: 0;
    margin-inline-end: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}

/* Professional pricing refresh. */
.pricing-section {
    padding-top: clamp(1rem, 2vw, 2rem);
}

.pricing-section-header {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
    gap: clamp(1rem, 4vw, 2.5rem);
    align-items: end;
    margin-bottom: clamp(1.5rem, 3vw, 2.3rem);
}

.pricing-section-header h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.pricing-section-header p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(216, 203, 234, 0.75);
    border-radius: 999px;
    color: var(--plum-700);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.saas-pricing-grid {
    gap: 1.1rem;
}

.modern-price-card {
    overflow: hidden;
    border: 1px solid rgba(216, 203, 234, 0.82);
    background:
        radial-gradient(circle at 18% 0%, rgba(114, 87, 232, 0.09), transparent 16rem),
        rgba(255, 255, 255, 0.78);
}

.modern-price-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
}

.modern-price-card .price-card-header {
    min-height: 122px;
}

.price-block {
    margin: 0.2rem 0 1.2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(232, 224, 242, 0.86);
    border-bottom: 1px solid rgba(232, 224, 242, 0.86);
}

.price-start-label {
    color: var(--muted-2);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plan-limit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 1.15rem;
}

.plan-limit-grid div {
    padding: 0.78rem 0.8rem;
    border: 1px solid rgba(232, 224, 242, 0.82);
    border-radius: 16px;
    background: rgba(255,255,255,0.58);
}

.plan-limit-grid strong,
.plan-limit-grid span {
    display: block;
}

.plan-limit-grid strong {
    color: var(--ink);
    font-size: 1.15rem;
    line-height: 1;
}

.plan-limit-grid span {
    margin-top: 0.18rem;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.25;
}

.modern-comparison-panel {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 0;
    border-radius: var(--radius-lg);
    background: transparent;
}

.pricing-usage-summary {
    margin-top: 0.65rem;
    margin-bottom: 0;
}

.modern-comparison-panel .comparison-intro {
    max-width: 860px;
    margin-bottom: 1.4rem;
}

.modern-comparison-panel .comparison-intro h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(2rem, 4vw, 3.15rem);
}

.modern-comparison-table {
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.modern-comparison-table th,
.modern-comparison-table td {
    padding: 1.05rem 1rem;
    vertical-align: top;
    border-bottom: 1px solid rgba(232, 224, 242, 0.9);
}

.modern-comparison-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: var(--plum-900);
    background: #f7f2ff;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.modern-comparison-table tbody th {
    color: var(--ink);
    background: rgba(251, 248, 255, 0.72);
}

.modern-comparison-table tbody th strong,
.modern-comparison-table tbody th span {
    display: block;
}

.modern-comparison-table tbody th span {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 650;
}

.comparison-stack {
    display: grid;
    gap: 0.35rem;
}

.comparison-stack span {
    color: var(--muted);
    line-height: 1.35;
}

.product-shot-section {
    display: none !important;
}

@media (max-width: 980px) {
    .image-hero-showcase { min-height: 520px; }
    .homepage-hero-phone { width: min(100%, 620px); transform: none; }
    .pricing-section-header { grid-template-columns: 1fr; }
    .feature-copy,
    .feature-row.reverse .feature-copy { margin-inline: 0; }
}

@media (max-width: 720px) {
    .image-step-visual { min-height: clamp(320px, 96vw, 440px); }
    .step-phone-image { width: 96%; }
    .homepage-hero-phone { width: min(112%, 560px); }
    .pricing-grid { grid-template-columns: 1fr; }
}


/* Team homepage showcase */
.business-dashboard-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(114, 87, 232, 0.08), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
}

.business-dashboard-heading {
    max-width: 880px;
    margin-inline: auto;
    margin-top: clamp(0.9rem, 2vw, 1.6rem);
    margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    padding: 0.42rem 0.82rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--plum-700);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.business-dashboard-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
}

.business-dashboard-card-accent {
    transform: translateY(1rem);
}

.business-dashboard-card-media {
    padding: 1rem 1rem 0;
}

.business-dashboard-card-media img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.business-dashboard-card-body {
    display: grid;
    gap: 0.9rem;
    padding: 1.15rem 1.2rem 1.3rem;
}

.business-dashboard-card-body h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 650;
    letter-spacing: -0.03em;
}

.business-dashboard-card-body p {
    margin: 0;
    color: var(--muted);
}

.business-dashboard-points {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.business-dashboard-points li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 500;
}

.business-dashboard-points li::before {
    content: "";
    flex: 0 0 1.1rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: var(--violet-soft);
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.75 9.2L7.2 11.65L13.25 5.6' stroke='%237257E8' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1rem 1rem;
}

@media (max-width: 1100px) {
    .business-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .business-dashboard-card-accent {
        transform: none;
    }
}

/* Final pricing + hero refinement */
.hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.image-hero-showcase {
    min-height: 0;
    width: 100%;
    overflow: visible;
}

.homepage-hero-phone {
    display: block;
    max-width: 100%;
    transform: none;
}

.saas-pricing-grid {
    align-items: stretch;
}

.modern-price-card {
    min-height: 690px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.modern-price-card .price-card-header {
    min-height: 126px;
}

.modern-price-card .price-block {
    min-height: 156px;
}

.plan-limit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.62rem;
    margin: 0 0 1.05rem;
}

.plan-limit-grid div {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, auto) 1fr;
    align-items: baseline;
    column-gap: 0.58rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.plan-limit-grid div::before {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.08rem;
    border-radius: 999px;
    background-color: var(--violet-soft);
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.75 9.2L7.2 11.65L13.25 5.6' stroke='%237257E8' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1rem 1rem;
}

.plan-limit-grid strong,
.plan-limit-grid span {
    display: inline;
}

.plan-limit-grid strong {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.45;
}

.plan-limit-grid span {
    margin-top: 0;
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.45;
}

.compact-feature-list {
    min-height: 142px;
}

.small-plan-note {
    min-height: 72px;
}

.modern-price-card .btn {
    margin-top: auto;
}

@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .image-hero-showcase {
        width: 100%;
        min-height: 0;
    }

    .homepage-hero-phone {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 720px) {
    .image-hero-showcase {
        width: 100%;
        min-height: 0;
    }

    .homepage-hero-phone {
        width: 100%;
        max-width: none;
    }

    .modern-price-card {
        min-height: 0;
    }

    .modern-price-card .price-card-header,
    .modern-price-card .price-block,
    .compact-feature-list,
    .small-plan-note {
        min-height: 0;
    }
}


/* Hero sizing refinement */
.hero.section-xl {
    padding: clamp(2.5rem, 4vw, 4.5rem) 0 clamp(5.5rem, 8vw, 8.5rem);
    overflow-x: clip;
}

    .homepage-hero-section.hero.section-xl > .container {
        width: min(100% - 2rem, 1440px);
    }

    .homepage-hero-section.hero.section-xl .hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: clamp(2rem, 4vw, 4.75rem);
        align-items: center;
        overflow: visible;
    }

    .hero.section-xl .hero-copy,
    .homepage-hero-section.hero.section-xl .hero-product {
        width: 100%;
        min-width: 0;
    }

    .homepage-hero-section.hero.section-xl .image-hero-showcase {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: clamp(520px, 42vw, 720px);
        width: 100%;
        max-width: none;
        overflow: visible;
    }

    .hero.section-xl .homepage-hero-phone {
        display: block;
        width: clamp(1000px, 66vw, 1200px);
        max-width: none;
        height: auto;
        margin-inline: auto;
        transform: translateX(8%);
        transform-origin: center;
    }

@media (max-width: 1120px) {
    .homepage-hero-section.hero.section-xl {
        padding: clamp(5.5rem, 10vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
    }

        .homepage-hero-section.hero.section-xl > .container {
            width: min(100% - 2rem, 1180px);
        }

        .homepage-hero-section.hero.section-xl .hero-grid {
            grid-template-columns: 1fr;
            gap: clamp(2rem, 5vw, 3.5rem);
        }

        .homepage-hero-section.hero.section-xl .image-hero-showcase {
            min-height: 0;
        }

        .hero.section-xl .homepage-hero-phone {
            width: min(122vw, 980px);
            transform: translateX(4%);
        }
}

@media (max-width: 720px) {
    .homepage-hero-section.hero.section-xl > .container {
        width: min(100% - 1.25rem, 1180px);
    }

    .hero.section-xl .homepage-hero-phone {
        width: min(138vw, 700px);
        transform: translateX(3%);
    }
}

/* Pricing card and business-dashboard refinements */
.business-dashboard-section > .container {
    width: min(100% - 2rem, 1440px);
}

.business-dashboard-grid {
    gap: 1.8rem;
}

.business-dashboard-card {
    border-radius: 28px;
}

.business-dashboard-card-media {
    padding: 1.25rem 1.25rem 0;
}

.business-dashboard-card-media img {
    border-radius: 22px;
    transform: scale(1.02);
    transform-origin: center top;
}

.business-dashboard-card-body {
    padding: 1.45rem 1.5rem 1.65rem;
}

.business-dashboard-card-body h3 {
    font-size: clamp(1.45rem, 2.3vw, 1.95rem);
}

.modern-price-card {
    min-height: 760px;
}

.modern-price-card .price-block {
    min-height: 150px;
}

.plan-bullet-grid {
    margin-top: 0.15rem;
    margin-bottom: 1.15rem;
}

.plan-bullet-grid div {
    grid-template-columns: 1.25rem minmax(0, 1fr);
}

.plan-bullet-grid div span {
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.5;
}

.passenger-limit-item {
    grid-template-columns: 1.25rem minmax(0, auto) 1fr;
}

.passenger-limit-item small {
    grid-column: 2 / -1;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.passenger-limit-item strong {
    grid-column: 2;
}

.passenger-limit-item span {
    grid-column: 3;
}

.small-plan-note {
    margin-top: auto;
    margin-bottom: 1.35rem;
    padding-bottom: 0.8rem;
    color: var(--muted);
}

.modern-price-card .btn {
    margin-top: 0;
}


/* Pricing refinement pass */
.modern-price-card {
    transition: transform 160ms ease, border-color 160ms ease;
}

.modern-price-card:hover,
.modern-price-card:focus-within {
    transform: translateY(-3px) scale(1.012);
    border-color: rgba(114, 87, 232, 0.45);
}

.modern-price-card .price-block {
    min-height: 112px;
    display: grid;
    align-content: center;
}

.modern-price-card .price-note {
    display: none !important;
}

.plan-limit-grid div,
.plan-bullet-grid div {
    grid-template-columns: 1.25rem minmax(0, auto) minmax(0, 1fr);
}

.passenger-limit-item {
    grid-template-columns: 1.25rem minmax(0, auto) auto minmax(0, 1fr);
}

.passenger-limit-item strong {
    grid-column: 2;
}

.passenger-limit-item span {
    grid-column: 3;
    white-space: nowrap;
}

.passenger-limit-item small {
    grid-column: 4;
    align-self: baseline;
    margin: 0.2rem 0 0 0.22rem;
    color: var(--muted-2);
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.small-plan-note {
    margin-top: auto;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    color: var(--muted);
    line-height: 1.55;
}

.modern-comparison-table {
    min-width: 1160px;
}

.modern-comparison-table th:nth-child(3),
.modern-comparison-table td:nth-child(3),
.modern-comparison-table th:nth-child(4),
.modern-comparison-table td:nth-child(4) {
    width: 18%;
}

.modern-comparison-table th:nth-child(6),
.modern-comparison-table td:nth-child(6) {
    width: 20%;
}

.comparison-stack span {
    white-space: nowrap;
}

@media (max-width: 720px) {
    .modern-price-card:hover,
    .modern-price-card:focus-within {
        transform: none;
    }

    .comparison-stack span {
        white-space: normal;
    }
}

/* Dashboard card width refinement */
:root {
    --container: 1280px;
}

.business-dashboard-section > .container {
    width: min(100% - 2rem, 1520px);
}

.business-dashboard-grid {
    grid-template-columns: repeat(3, minmax(370px, 1fr));
    gap: clamp(1rem, 1.6vw, 1.35rem);
}

.business-dashboard-card-media {
    padding: 0.95rem 0.95rem 0;
}

.business-dashboard-card-media img {
    width: 100%;
    max-width: none;
    transform: none;
}

.business-dashboard-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
}

@media (max-width: 1240px) {
    .business-dashboard-section > .container {
        width: min(100% - 2rem, var(--container));
    }

    .business-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Dashboard image width fix */
.business-dashboard-section > .container {
    width: min(100% - 2rem, 1640px);
    max-width: 1640px;
}

.business-dashboard-grid {
    grid-template-columns: repeat(3, minmax(420px, 1fr));
    gap: clamp(0.85rem, 1.2vw, 1.15rem);
    align-items: stretch;
}

.business-dashboard-card {
    min-width: 0;
}

.business-dashboard-card-media {
    padding: 0.75rem 0.75rem 0;
}

.business-dashboard-card-media img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    transform: none;
}

@media (max-width: 1380px) {
    .business-dashboard-section > .container {
        width: min(100% - 2rem, var(--container));
        max-width: var(--container);
    }

    .business-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .business-dashboard-card-media {
        padding: 1rem 1rem 0;
    }
}

/* Homepage hero: premium editorial layout + image fit correction */
.homepage-hero-section.hero.section-xl {
    --hero-bg: #fbfaf8;
    --hero-bg-warm: #f3eff8;
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 5vw, 5.75rem) 0 clamp(4.25rem, 7vw, 7.5rem);
    background:
        radial-gradient(circle at 76% 20%, rgba(114, 87, 232, 0.14), transparent 30rem),
        radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.95), transparent 28rem),
        linear-gradient(135deg, #fffdfb 0%, var(--hero-bg) 44%, var(--hero-bg-warm) 100%);
}

.homepage-hero-section.hero.section-xl::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: clamp(160px, 18vw, 300px);
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(251, 250, 248, 0) 0%, rgba(255, 255, 255, 0.86) 62%, #ffffff 100%);
}

.homepage-hero-section.hero.section-xl::after {
    content: "";
    position: absolute;
    inset: 8% -18% auto auto;
    width: min(52vw, 860px);
    height: min(52vw, 860px);
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(114, 87, 232, 0.14) 0%, rgba(114, 87, 232, 0.06) 34%, transparent 68%);
    filter: blur(18px);
}

.homepage-hero-section.hero.section-xl > .container {
    position: relative;
    z-index: 1;
    width: min(100% - 3rem, 1580px);
}

.homepage-hero-section.hero.section-xl .hero-grid {
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(2.25rem, 4.6vw, 5.5rem);
}

.homepage-hero-section.hero.section-xl .hero-copy {
    max-width: 35.5rem;
}

.homepage-hero-section.hero.section-xl .hero-copy h1 {
    max-width: 11ch;
    margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
    font-size: clamp(4.25rem, 5.9vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.homepage-hero-section.hero.section-xl .hero-subtitle {
    max-width: 34.5rem;
    margin-bottom: clamp(1.65rem, 2.7vw, 2.25rem);
    color: rgba(42, 34, 56, 0.72);
    font-size: clamp(1.02rem, 1.15vw, 1.18rem);
    line-height: 1.78;
}

.homepage-hero-section.hero.section-xl .hero-actions {
    margin-bottom: 0;
}

.homepage-hero-section.hero.section-xl .hero-actions .btn {
    min-height: 54px;
    padding-inline: 1.35rem;
}

.homepage-hero-section.hero.section-xl .hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--plum-950) 0%, var(--plum-800) 100%);
}

.homepage-hero-section.hero.section-xl .hero-actions .btn-quiet {
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(216, 203, 234, 0.9);
    backdrop-filter: blur(16px);
}

.homepage-hero-section.hero.section-xl .hero-product,
.homepage-hero-section.hero.section-xl .app-showcase {
    min-width: 0;
    min-height: 0;
    overflow: visible;
    perspective: none;
}

.homepage-hero-section.hero.section-xl .image-hero-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: clamp(500px, 39vw, 690px);
    width: 100%;
    overflow: visible;
}

.homepage-hero-section .hero-image-fade-frame {
    position: relative;
    width: min(100%, 1080px);
    aspect-ratio: 1671 / 941;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: clamp(28px, 3.4vw, 54px);
    background: #ffffff;
}

.homepage-hero-section .hero-image-fade-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
}

.homepage-hero-section .hero-image-fade-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 253, 251, 0.72) 0%, rgba(255, 253, 251, 0) 15%, rgba(255, 253, 251, 0) 84%, rgba(255, 253, 251, 0.58) 100%),
        linear-gradient(180deg, rgba(255, 253, 251, 0.38) 0%, rgba(255, 253, 251, 0) 24%, rgba(255, 253, 251, 0) 72%, rgba(255, 255, 255, 0.76) 100%);
}

.homepage-hero-section.hero.section-xl .hero-image-fade-frame .homepage-hero-phone {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: none;
    filter: saturate(1.04) contrast(1.015);
    -webkit-mask-image: none;
    mask-image: none;
}

@media (min-width: 1580px) {
    .homepage-hero-section.hero.section-xl .hero-grid {
        grid-template-columns: minmax(380px, 0.68fr) minmax(0, 1.32fr);
    }

    .homepage-hero-section .hero-image-fade-frame {
        width: min(100%, 1120px);
    }
}

@media (max-width: 1280px) {
    .homepage-hero-section.hero.section-xl > .container {
        width: min(100% - 2rem, 1280px);
    }

    .homepage-hero-section.hero.section-xl .hero-grid {
        grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
        gap: clamp(1.75rem, 3vw, 3.25rem);
    }

    .homepage-hero-section.hero.section-xl .hero-copy h1 {
        font-size: clamp(3.75rem, 6vw, 5.8rem);
    }
}

@media (max-width: 1120px) {
    .homepage-hero-section.hero.section-xl {
        padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
    }

    .homepage-hero-section.hero.section-xl .hero-grid {
        grid-template-columns: 1fr;
        gap: clamp(2.25rem, 5vw, 3.5rem);
    }

    .homepage-hero-section.hero.section-xl .hero-copy {
        max-width: 48rem;
        margin-inline: auto;
        text-align: center;
    }

    .homepage-hero-section.hero.section-xl .hero-copy h1 {
        max-width: 12ch;
        margin-inline: auto;
    }

    .homepage-hero-section.hero.section-xl .hero-subtitle,
    .homepage-hero-section.hero.section-xl .hero-actions {
        margin-inline: auto;
    }

    .homepage-hero-section.hero.section-xl .hero-actions {
        justify-content: center;
    }

    .homepage-hero-section.hero.section-xl .image-hero-showcase {
        justify-content: center;
        min-height: 0;
    }

    .homepage-hero-section .hero-image-fade-frame {
        width: min(100%, 980px);
    }
}

@media (max-width: 720px) {
    .homepage-hero-section.hero.section-xl {
        padding: 1.6rem 0 3.5rem;
    }

    .homepage-hero-section.hero.section-xl > .container {
        width: min(100% - 1rem, 100%);
    }

    .homepage-hero-section.hero.section-xl .hero-copy h1 {
        font-size: clamp(3.2rem, 14vw, 4.7rem);
        letter-spacing: 0;
    }

    .homepage-hero-section.hero.section-xl .hero-subtitle {
        font-size: 1rem;
        line-height: 1.68;
    }

    .homepage-hero-section.hero.section-xl .hero-actions {
        width: 100%;
        gap: 0.65rem;
    }

    .homepage-hero-section.hero.section-xl .hero-actions .btn {
        flex: 1 1 10rem;
        min-height: 52px;
    }

    .homepage-hero-section .hero-image-fade-frame {
        width: 100%;
        border-radius: 28px;
    }
}

.homepage-hero-section + .section {
    position: relative;
    z-index: 1;
    background: #ffffff;
}


/* Final white marketing surface + signup affordance cleanup. */
html,
body {
    background: #ffffff;
}

body,
.site-header,
main,
.section,
.section-lg,
.section-xl,
.section-tight,
.surface-section,
.dashboard-section,
.business-dashboard-section,
.homepage-hero-section.hero.section-xl {
    background: #ffffff;
}

.section.pricing-note-section {
    background: transparent;
}

.hero::after,
.homepage-hero-section.hero.section-xl::before,
.homepage-hero-section.hero.section-xl::after {
    display: none;
    content: none;
}

.container.hero-grid,
.homepage-hero-section.hero.section-xl .hero-grid {
    background: transparent;
    border: 0;
}

.homepage-hero-section.hero.section-xl {
    background: #ffffff;
}

.homepage-hero-section.hero.section-xl .hero-product,
.homepage-hero-section.hero.section-xl .app-showcase,
.homepage-hero-section.hero.section-xl .image-hero-showcase {
    background: #ffffff;
}

.homepage-hero-section.hero.section-xl .hero-image-fade-frame {
    background: #ffffff;
    border: 0;
}

.homepage-hero-section.hero.section-xl .hero-image-fade-frame::before,
.homepage-hero-section.hero.section-xl .hero-image-fade-frame::after {
    content: none;
    display: none;
}

.nav-signup {
    color: #ffffff;
    border-color: var(--violet);
    background: var(--violet);
}

.nav-signup:hover,
.nav-signup:focus-visible {
    color: #ffffff;
    background: #6D28D9;
    border-color: #6D28D9;
}

@media (max-width: 820px) {
    .nav-links .nav-signup {
        width: 100%;
        justify-content: center;
    }
}

/* Final pricing/signup refinement: hero screenshot should read as the product, not as a card. */
.homepage-hero-section .hero-image-fade-frame {
    width: min(108%, 1160px);
    border: 0;
    background: transparent;
}

.homepage-hero-section .hero-image-fade-frame::before,
.homepage-hero-section .hero-image-fade-frame::after {
}

@media (min-width: 1580px) {
    .homepage-hero-section .hero-image-fade-frame {
        width: min(110%, 1220px);
    }
}

@media (max-width: 1120px) {
    .homepage-hero-section .hero-image-fade-frame {
        width: min(106%, 1040px);
    }
}

@media (max-width: 720px) {
    .homepage-hero-section .hero-image-fade-frame {
        width: 100%;
    }
}

.bandwidth-table-wrap {
    margin: 1.5rem 0 1.75rem;
    padding: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid rgba(221, 226, 235, 0.95);
    border-radius: 24px;
    background: #ffffff;
}

.bandwidth-table-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
}

.bandwidth-table-heading h3 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.bandwidth-table-heading p {
    max-width: 36rem;
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.bandwidth-table th,
.bandwidth-table td {
    vertical-align: top;
}

.secure-payment-card {
    border-color: rgba(139, 92, 246, 0.18);
}

.stripe-payment-box {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.16);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
    color: #334155;
}

.stripe-payment-box strong {
    color: #0f172a;
}

.register-payment-shell {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #334155;
}

.register-payment-element {
    min-height: 13rem;
}

.register-payment-message {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.register-payment-message.is-error {
    color: #b42318;
}

.register-payment-message.is-success {
    color: #166534;
}

.register-account-locked .checkout-card-section:first-child {
    opacity: 0.72;
}

.checkout-submit.is-loading {
    cursor: wait;
}

@media (max-width: 760px) {
    .bandwidth-table-heading {
        display: grid;
    }
}

.rate-table-wrap {
    margin-top: clamp(1.25rem, 3vw, 2rem);
    padding: clamp(1rem, 2.4vw, 1.6rem);
}

.language-rate-table {
    min-width: 920px;
    border-collapse: separate;
    border-spacing: 0 0.65rem;
}

.rate-table-wrap .bandwidth-table-heading {
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.language-rate-table thead th {
    padding: 0.35rem 1rem 0.55rem;
    border-bottom: 0;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    vertical-align: bottom;
}

.language-rate-table tbody th,
.language-rate-table tbody td {
    padding: 1rem;
    border-top: 1px solid #e6ebf2;
    border-bottom: 1px solid #e6ebf2;
    background: #ffffff;
    vertical-align: middle;
}

.language-rate-table tbody th {
    border-left: 1px solid #e6ebf2;
    border-radius: 16px 0 0 16px;
    background: #f8fafc;
}

.language-rate-table tbody td:last-child {
    border-right: 1px solid #e6ebf2;
    border-radius: 0 16px 16px 0;
}

.rate-plan-name,
.rate-plan-type,
.rate-value,
.rate-number,
.rate-note {
    display: block;
}

.rate-plan-name {
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 800;
}

.rate-plan-type,
.rate-note {
    margin-top: 0.25rem;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.35;
}

.rate-value {
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 800;
}

.rate-number {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--plum-800);
    font-size: 1.05rem;
    font-weight: 850;
}

.pricing-section .comparison-table tbody th,
.pricing-section .comparison-table tbody td,
.pricing-section .comparison-table tbody th span,
.pricing-section .comparison-table tbody td span {
    font-weight: 400;
}

.spec-table-wrap {
    padding: clamp(1rem, 2.4vw, 1.6rem);
}

.spec-table-wrap .bandwidth-table-heading {
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.spec-table {
    min-width: 620px;
    border-collapse: separate;
    border-spacing: 0 0.65rem;
}

.spec-table thead th {
    padding: 0.35rem 1rem 0.55rem;
    border-bottom: 0;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    vertical-align: bottom;
}

.spec-table tbody th,
.spec-table tbody td {
    padding: 1rem;
    border-top: 1px solid #e6ebf2;
    border-bottom: 1px solid #e6ebf2;
    background: #ffffff;
    vertical-align: middle;
}

.spec-table tbody th {
    border-left: 1px solid #e6ebf2;
    border-radius: 16px 0 0 16px;
    background: #f8fafc;
}

.spec-table tbody td:last-child {
    border-right: 1px solid #e6ebf2;
    border-radius: 0 16px 16px 0;
}

.bandwidth-estimate-table tbody td {
    min-width: 14rem;
}

.supported-countries-wrap {
    overflow: visible;
}

.supported-languages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.supported-languages-grid .supported-languages-list {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.supported-languages-grid li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 0;
    padding: 0.1rem 0;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
}

.supported-language-dot {
    width: 0.48rem;
    height: 0.48rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--primary);
}

.modern-price-card {
    min-height: 745px;
}

.modern-price-card .price-block {
    min-height: 134px;
}

@media (max-width: 720px) {
    .modern-price-card {
        min-height: 0;
    }

    .modern-price-card .price-block {
        min-height: 0;
    }

    .language-rate-table {
        min-width: 760px;
    }

    .spec-table {
        min-width: 560px;
    }

    .supported-languages-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing supported-translation catalog sourced from Live Azure TTS voices. */
.additional-language-rate-row th,
.additional-language-rate-row td {
    background: var(--surface-soft);
}

.supported-countries-wrap {
    margin-top: 1.25rem;
}

.supported-countries-heading {
    align-items: start;
}

.supported-countries-source {
    margin: 0 0 0.85rem;
    color: #64748b;
    font-size: 0.88rem;
}

.supported-countries-table {
    min-width: 780px;
}

.supported-countries-table th:first-child,
.supported-countries-table td:first-child {
    width: 22%;
}

.supported-countries-table th:nth-child(2),
.supported-countries-table td:nth-child(2) {
    width: 50%;
}

.supported-countries-table code {
    white-space: normal;
    color: #334155;
    font-size: 0.82rem;
    line-height: 1.55;
}

@media (max-width: 760px) {
    .supported-countries-table {
        min-width: 680px;
    }
}

/* Trust-focused B2B SaaS marketing upgrade. */
:root {
    --primary: #8B5CF6;
    --primary-soft: #F3EFFF;
    --primary-muted: #A78BFA;
    --surface-soft: #FAF9FF;
    --warning: #D8A657;
    --slate: #7187A8;
    --violet: var(--primary);
    --violet-soft: var(--primary-soft);
    --lavender: var(--primary-soft);
    --line: #E9E3F5;
    --line-strong: #DCCFF0;
    --success: #6FAF8F;
}

.btn-primary,
.homepage-hero-section.hero.section-xl .hero-actions .btn-primary,
.nav-signup {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.homepage-hero-section.hero.section-xl .hero-actions .btn-primary:hover,
.homepage-hero-section.hero.section-xl .hero-actions .btn-primary:focus-visible,
.nav-signup:hover,
.nav-signup:focus-visible {
    color: #ffffff;
    border-color: #7C3AED;
    background: #7C3AED;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.trust-strip span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.agency-proof-section,
.billing-clarity-section {
    padding-top: clamp(2.75rem, 5vw, 5rem);
    padding-bottom: clamp(2.75rem, 5vw, 5rem);
    background: linear-gradient(135deg, #1a2434 0%, #253451 52%, #31476b 100%);
    color: #f6f8fc;
}

.agency-proof-shell,
.billing-clarity-card {
    padding: clamp(1.35rem, 3vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.agency-proof-heading {
    max-width: 820px;
    margin-inline: auto;
}

.agency-proof-heading h2 {
    letter-spacing: 0.04em;
}

.agency-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.agency-proof-card,
.trust-page-card {
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
}

.agency-proof-card h3,
.trust-page-card h2 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    letter-spacing: -0.035em;
}

.agency-proof-card p,
.trust-page-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.65;
}

.agency-fit-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.agency-fit-strip span {
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 740;
}

.billing-clarity-card {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 1.8rem);
    align-items: start;
    width: min(100%, var(--container));
    max-width: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.billing-clarity-card h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--ink);
}

.billing-clarity-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.billing-clarity-grid,
.pricing-explainer {
    display: grid;
    gap: 0.85rem;
}

.billing-clarity-grid div,
.pricing-explainer div,
.plan-summary-panel,
.plan-detail-body div {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    backdrop-filter: none;
}

.billing-clarity-grid strong,
.billing-clarity-grid span,
.pricing-explainer strong,
.pricing-explainer span,
.plan-summary-panel strong,
.plan-summary-panel span,
.plan-detail-body strong,
.plan-detail-body span {
    display: block;
}

.billing-clarity-grid strong,
.pricing-explainer strong,
.plan-summary-panel strong,
.plan-detail-body strong {
    color: var(--ink);
    font-weight: 780;
    line-height: 1.35;
}

.billing-clarity-grid span,
.pricing-explainer span,
.plan-summary-panel span,
.plan-detail-body span {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.pricing-explainer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.pricing-explainer div {
    background: var(--surface-soft);
}

.trust-price-card,
.modern-price-card.trust-price-card {
    min-height: 0;
    padding: 1.15rem;
    border: 1px solid var(--line);
    background: #ffffff;
}

.trust-price-card .price-card-header {
    min-height: 118px;
}

.trust-price-card .price-card-header p {
    color: var(--muted);
    line-height: 1.55;
}

.trust-price-card .price-block,
.modern-price-card.trust-price-card .price-block {
    min-height: 0;
    padding: 0.85rem 0 0.25rem;
}

.trust-price-card .price {
    margin-bottom: 0.45rem;
}

.trust-price-card .btn {
    margin-top: 1rem;
}

.plan-summary-panel {
    margin-top: 1rem;
    background: var(--surface-soft);
}

.plan-detail-disclosure {
    margin-top: 0.85rem;
    border-top: 1px solid var(--line);
    padding-top: 0.85rem;
}

.plan-detail-disclosure summary,
.comparison-disclosure summary {
    cursor: pointer;
    color: var(--primary);
    font-weight: 780;
    list-style-position: outside;
}

.plan-detail-body {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.comparison-disclosure summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
}

.comparison-disclosure-content {
    margin-top: 1.2rem;
}

.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.demo-check-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.demo-check-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--muted);
    font-weight: 650;
}

.demo-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--success);
}

.accent-detail {
    border: 1px solid var(--line);
    background: var(--primary-soft);
}

.accent-detail h2,
.accent-detail p,
.accent-detail .text-link {
    color: var(--ink);
}

.accent-detail p {
    color: var(--muted);
}

.trust-footer-grid {
    grid-template-columns: minmax(260px, 1.1fr) 0.45fr 0.45fr 0.45fr minmax(220px, 0.7fr);
}

.trust-page-section {
    padding-top: 0;
}

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

.trust-page-card .text-link {
    display: inline-block;
    margin-top: 0.85rem;
}

@media (min-width: 721px) {
    .comparison-disclosure > summary {
        display: none;
    }

    .comparison-disclosure-content {
        margin-top: 0;
    }
}

@media (max-width: 1080px) {
    .agency-proof-grid,
    .pricing-explainer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .billing-clarity-card {
        grid-template-columns: 1fr;
    }

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

    .footer-meta {
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 720px) {
    .trust-strip,
    .agency-fit-strip {
        justify-content: center;
    }

    .agency-proof-grid,
    .pricing-explainer,
    .trust-page-grid {
        grid-template-columns: 1fr;
    }

    .modern-comparison-panel {
        padding: 18px;
    }

    .comparison-disclosure:not([open]) .comparison-disclosure-content {
        display: none;
    }

    .comparison-disclosure summary {
        width: 100%;
    }

    .comparison-table {
        min-width: 720px;
    }

    .language-rate-table {
        min-width: 520px;
    }

    .supported-countries-table {
        min-width: 720px;
    }

    .trust-price-card .price-card-header {
        min-height: 0;
    }
}

.business-dashboard-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.78fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.dashboard-feature-panel,
.dashboard-support-panel {
    border: 1px solid var(--line);
    border-radius: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfaff 100%);
}

.dashboard-feature-panel-main {
    display: grid;
    gap: clamp(1rem, 1.8vw, 1.35rem);
    padding: clamp(1rem, 1.8vw, 1.35rem);
}

.dashboard-window {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: #ffffff;
}

.dashboard-window-large {
    border-radius: 28px;
}

.dashboard-window-bar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
    color: var(--ink);
}

.dashboard-window-dots {
    display: inline-flex;
    gap: 0.32rem;
    flex: 0 0 auto;
}

.dashboard-window-dots i {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 999px;
    background: #d8cbea;
}

.dashboard-window-dots i:nth-child(2) {
    background: #cbbdf0;
}

.dashboard-window-dots i:nth-child(3) {
    background: #a78bfa;
}

.dashboard-window-bar strong {
    min-width: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-window-bar em {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 650;
    white-space: nowrap;
}

.dashboard-window img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
}

.dashboard-feature-copy {
    display: grid;
    gap: 0.9rem;
    padding: 0.15rem 0.35rem 0.25rem;
}

.dashboard-feature-copy h3,
.dashboard-support-copy h3 {
    margin: 0;
    color: var(--ink);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.dashboard-feature-copy h3 {
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.dashboard-feature-copy p,
.dashboard-support-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.dashboard-inline-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.dashboard-inline-points li {
    align-items: flex-start;
    font-size: 0.93rem;
    line-height: 1.35;
}

.dashboard-support-stack {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.dashboard-support-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(14rem, 0.9fr);
    gap: clamp(0.95rem, 1.8vw, 1.25rem);
    align-items: center;
    padding: clamp(0.9rem, 1.6vw, 1.1rem);
}

.dashboard-window-compact {
    border-radius: 22px;
}

.dashboard-window-compact .dashboard-window-bar {
    min-height: 36px;
    padding: 0.52rem 0.7rem;
}

.dashboard-window-compact .dashboard-window-bar strong {
    font-size: 0.78rem;
}

.dashboard-support-copy {
    display: grid;
    gap: 0.65rem;
}

.dashboard-support-copy h3 {
    font-size: clamp(1.18rem, 1.7vw, 1.45rem);
}

.dashboard-support-copy p {
    font-size: 0.94rem;
}

@media (max-width: 1180px) {
    .business-dashboard-showcase {
        grid-template-columns: 1fr;
    }

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

    .dashboard-support-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .business-dashboard-section > .container {
        width: min(100% - 1.25rem, var(--container));
    }

    .business-dashboard-showcase,
    .dashboard-support-stack {
        gap: 1rem;
    }

    .dashboard-feature-panel,
    .dashboard-support-panel {
        border-radius: 24px;
    }

    .dashboard-feature-panel-main,
    .dashboard-support-panel {
        padding: 0.75rem;
    }

    .dashboard-window,
    .dashboard-window-large,
    .dashboard-window-compact {
        border-radius: 18px;
    }

    .dashboard-window-bar em {
        display: none;
    }

    .dashboard-feature-copy {
        padding: 0.15rem 0.2rem 0.25rem;
    }

    .dashboard-inline-points {
        grid-template-columns: 1fr;
    }

    .dashboard-support-stack {
        grid-template-columns: 1fr;
    }
}

/* Final support-card adjustment: show secondary dashboard screenshots at readable size. */
.dashboard-support-panel {
    grid-template-columns: 1fr;
    align-content: start;
}

.dashboard-support-copy {
    padding: 0.1rem 0.25rem 0.2rem;
}

/* Customer-proof and pricing value framing upgrades. */
.customer-proof-grid,
.pricing-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.pricing-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: clamp(1.35rem, 3vw, 2.15rem);
}

.customer-proof-grid article,
.pricing-value-grid article {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
}

.customer-proof-grid article {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.55rem;
}

.customer-proof-icon {
    display: grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    margin-bottom: 0.2rem;
    border: 1px solid rgba(124, 58, 237, 0.16);
    border-radius: 14px;
    background: #f4efff;
    color: var(--violet);
}

.customer-proof-icon svg {
    width: 2.35rem;
    height: 2.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.customer-proof-grid strong,
.customer-proof-grid span,
.pricing-value-grid strong,
.pricing-value-grid span,
.plan-volume-note {
    display: block;
}

.customer-proof-grid strong,
.pricing-value-grid strong {
    color: var(--ink);
    font-weight: 820;
    line-height: 1.25;
}

.customer-proof-grid span,
.pricing-value-grid span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.customer-proof-grid > article > span:not(.customer-proof-icon) {
    margin-top: 0;
}

.plan-volume-note {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.help-tip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    margin-left: 0.25rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    vertical-align: 0.05em;
    cursor: help;
}

@media (max-width: 1080px) {
    .customer-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-value-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .customer-proof-grid,
    .pricing-value-grid {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 720px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}


/* Final requested cleanup pass. */
.feature-stack {
    gap: 0;
}

.feature-row,
.feature-row.reverse {
    gap: 0;
}

.step-phone-image {
    width: 85%;
}

.workflow-section .section-heading {
    margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.workflow-phone-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.5rem, 1.2vw, 0.9rem);
    align-items: start;
    width: min(100% - 1rem, 1760px);
}

.workflow-phone-card {
    display: grid;
    gap: 0;
    min-width: 0;
}

.workflow-phone-image {
    display: block;
    width: 125%;
    max-width: none;
    height: auto;
    margin: 0 -12.5%;
    object-fit: contain;
    transform-origin: center;
}

.workflow-phone-image--guide-login,
.workflow-phone-image--guide-live {
    transform: rotate(-3deg);
}

.workflow-phone-image--guide-language,
.workflow-phone-image--client-live {
    transform: rotate(3deg);
}

.workflow-phone-copy {
    display: grid;
    gap: 0.45rem;
    padding-inline: 0.15rem;
    text-align: center;
}

.workflow-phone-copy h3 {
    margin: 0;
    font-size: clamp(1.1rem, 1.7vw, 1.45rem);
    line-height: 1.14;
    letter-spacing: 0;
}

.workflow-phone-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

@media (max-width: 1120px) {
    .workflow-phone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .workflow-phone-grid {
        grid-template-columns: 1fr;
    }
}

.billing-clarity-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.homepage-hero-section.hero.section-xl > .container {
    width: min(100% - 2rem, 1760px);
}

.homepage-hero-section.hero.section-xl .hero-grid {
    grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1.38fr);
}

.homepage-hero-section .hero-image-fade-frame {
    width: min(126%, 1420px);
    margin-right: 0;
}

@media (min-width: 1580px) {
    .homepage-hero-section .hero-image-fade-frame {
        width: min(132%, 1540px);
    }
}

@media (max-width: 1120px) {
    .homepage-hero-section .hero-image-fade-frame {
        width: min(110%, 1080px);
        margin-right: 0;
    }
}

@media (max-width: 720px) {
    .homepage-hero-section.hero.section-xl > .container {
        width: min(100% - 1rem, 100%);
    }

    .homepage-hero-section .hero-image-fade-frame {
        width: 108%;
        margin-inline: 0;
    }
}

.carousel-shell {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.dashboard-showcase-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: #ffffff;
}

.dashboard-showcase-image-main {
    border-radius: 28px;
}

.plan-summary-panel.plan-summary-list {
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    list-style: none;
    background: transparent;
}

.plan-summary-list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 620;
    line-height: 1.42;
}

.plan-summary-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.02em;
    color: var(--success);
    font-size: 1rem;
    font-weight: 860;
    line-height: 1;
}

.trust-price-card .btn {
    margin-top: 1.1rem;
}

.modern-comparison-panel,
.comparison-disclosure,
.comparison-disclosure-content,
.bandwidth-table-wrap {
    max-width: 100%;
    min-width: 0;
}

.modern-comparison-panel {
    overflow: hidden;
}

.bandwidth-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bandwidth-table {
    width: 100%;
}

.supported-countries-table {
    min-width: 560px;
}

.supported-countries-table th:first-child,
.supported-countries-table td:first-child {
    width: 28%;
}

.supported-countries-table th:nth-child(2),
.supported-countries-table td:nth-child(2) {
    width: 72%;
}

@media (max-width: 720px) {
    .comparison-table {
        min-width: 560px;
    }

    .supported-countries-table {
        min-width: 560px;
    }
}


/* Final pricing page layout cleanup requested on 2026-06-22. */
.pricing-grid.saas-pricing-grid {
    align-items: stretch;
    padding-top: 0;
}

.pricing-card-shell {
    --popular-ribbon-height: 42px;
    --popular-border-color: rgba(139, 92, 246, 0.58);
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding-top: var(--popular-ribbon-height);
}

.pricing-card-shell .trust-price-card {
    width: 100%;
    height: 100%;
}

.modern-price-card.trust-price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-block {
    margin-bottom: 0.9rem;
}

.plan-summary-panel.plan-summary-list {
    margin-top: 0;
}

.plan-usage-note {
    margin: 0.8rem 0 1.15rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.trust-price-card .btn,
.modern-price-card.trust-price-card .btn {
    margin-top: auto;
}

.bandwidth-table-heading,
.bandwidth-table-heading.supported-countries-heading {
    display: grid;
    justify-items: center;
    align-items: center;
    gap: 0.42rem;
    text-align: center;
}

.bandwidth-table-heading p {
    max-width: 58rem;
    margin: 0 auto;
}

.language-rate-table {
    table-layout: fixed;
}

.language-rate-table th:first-child,
.language-rate-table td:first-child {
    width: 14%;
}

.language-rate-table th:nth-child(2),
.language-rate-table td:nth-child(2) {
    width: 18%;
}

.supported-countries-wrap {
    overflow: visible;
}

.supported-languages-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem 2rem;
    margin: 0;
    padding-left: 1.2rem;
    color: var(--ink);
    list-style-position: outside;
}

.supported-languages-list li {
    padding-left: 0.15rem;
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.45;
}

.dashboard-feature-panel-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dashboard-feature-copy {
    display: block;
    max-width: 760px;
    margin: 0 auto;
    padding: 0.35rem 0.25rem 0.2rem;
    text-align: center;
}

.dashboard-feature-copy h3 {
    margin-bottom: 0.55rem;
    line-height: 1.12;
}

.dashboard-feature-copy p {
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.48;
}

.dashboard-inline-points {
    display: block;
    max-width: 520px;
    margin: 0.9rem auto 0;
    padding-left: 1.1rem;
    text-align: left;
    list-style: disc;
}

.dashboard-inline-points li {
    display: list-item;
    margin-top: 0.35rem;
    line-height: 1.35;
}

.dashboard-inline-points li::before {
    content: none;
}

@media (max-width: 760px) {
    .supported-languages-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .supported-languages-list {
        grid-template-columns: 1fr;
    }
}

/* Pricing/page polish pass requested after final pricing ladder. */
.site-header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

.pricing-hero {
    padding-top: clamp(2.8rem, 4.6vw, 4.7rem);
    padding-bottom: clamp(2.25rem, 3.8vw, 3.5rem);
}

.pricing-hero-summary {
    max-width: 760px;
    text-align: center;
}

.bandwidth-table-wrap {
    text-align: center;
}

.bandwidth-table-heading,
.bandwidth-table-heading.supported-countries-heading {
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    width: 100%;
    gap: 0.42rem;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.bandwidth-table-heading > *,
.bandwidth-table-heading.supported-countries-heading > * {
    justify-self: center;
    text-align: center;
}

.bandwidth-table-heading p,
.bandwidth-table-heading.supported-countries-heading p {
    max-width: 62rem;
    margin: 0 auto;
    text-align: center;
}

.supported-countries-heading h3 {
    text-align: center;
}

.comparison-table,
.bandwidth-table,
.language-rate-table {
    width: 100%;
    table-layout: fixed;
}

.language-rate-table th,
.language-rate-table td {
    width: 20% !important;
}

.bandwidth-table:not(.language-rate-table) th,
.bandwidth-table:not(.language-rate-table) td {
    width: 50% !important;
}

.comparison-table th,
.comparison-table td {
    text-align: center;
}

.supported-languages-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem 2rem;
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    text-align: left;
}

.supported-languages-columns .supported-languages-list {
    display: block;
    margin: 0;
    padding-left: 1.2rem;
    color: var(--ink);
    list-style-position: outside;
}

.dashboard-feature-copy {
    text-align: left !important;
}

.dashboard-feature-copy p {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.dashboard-inline-points {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (max-width: 760px) {
    .supported-languages-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .supported-languages-columns {
        grid-template-columns: 1fr;
    }
}

/* Pricing/register wording and layout polish. */
.modern-price-card.trust-price-card {
    min-height: 670px;
}

.pricing-section .modern-price-card.trust-price-card.is-regular-plan {
    --popular-border-color: rgba(139, 92, 246, 0.58);
    min-height: 670px;
    padding-top: 1.15rem;
    border: 2px solid var(--popular-border-color);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.14),
        0 18px 44px rgba(50, 30, 75, 0.08);
    overflow: hidden;
}

.pricing-section .modern-price-card.trust-price-card.is-regular-plan::before {
    content: none;
}

.pricing-section .plan-popularity-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--popular-ribbon-height, 42px);
    margin: 0;
    padding: 0.55rem 1rem;
    color: #ffffff;
    background: linear-gradient(90deg, var(--plum-900), var(--primary));
    border: 2px solid var(--popular-border-color, rgba(139, 92, 246, 0.58));
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.pricing-section .modern-price-card.trust-price-card.is-regular-plan:hover,
.pricing-section .modern-price-card.trust-price-card.is-regular-plan:focus-within {
    border-color: rgba(139, 92, 246, 0.72);
}

.pricing-section .bandwidth-table-wrap,
.pricing-section .stripe-payment-box {
    border-color: var(--line);
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.pricing-section .secure-payment-card {
    border-color: rgba(139, 92, 246, 0.18);
}

.pricing-section .language-rate-table tbody th,
.pricing-section .language-rate-table tbody td,
.pricing-section .spec-table tbody th,
.pricing-section .spec-table tbody td {
    border-color: var(--line);
}

.pricing-section .language-rate-table tbody th,
.pricing-section .spec-table tbody th,
.pricing-section .additional-language-rate-row th,
.pricing-section .additional-language-rate-row td,
.pricing-section .additional-channel-rate-row th,
.pricing-section .additional-channel-rate-row td {
    background: var(--surface-soft);
}

.pricing-section .rate-number {
    color: var(--plum-800);
    background: var(--surface-2);
}

.pricing-section .comparison-table,
.pricing-section .comparison-table th,
.pricing-section .comparison-table td,
.pricing-section .comparison-table span {
    letter-spacing: 0.012em;
}

.comparison-table.bandwidth-table.language-rate-table thead th,
.comparison-table.bandwidth-table.spec-table.bandwidth-estimate-table thead th {
    font-weight: 800;
}

.comparison-table.bandwidth-table.language-rate-table tbody,
.comparison-table.bandwidth-table.language-rate-table tbody *,
.comparison-table.bandwidth-table.spec-table.bandwidth-estimate-table tbody,
.comparison-table.bandwidth-table.spec-table.bandwidth-estimate-table tbody *,
.supported-languages-columns.supported-languages-grid,
.supported-languages-columns.supported-languages-grid *,
.supported-languages-columns .supported-languages-grid,
.supported-languages-columns .supported-languages-grid * {
    font-weight: 400;
}

.pricing-section .supported-language-dot {
    background: var(--primary);
}

/* Additional specs redesign: shared pricing matrices and supported-language list. */
.pricing-note-section .additional-spec-card {
    margin: clamp(1.25rem, 3vw, 2rem) 0;
    padding: clamp(1.35rem, 3vw, 2.1rem);
    border: 1px solid rgba(215, 220, 230, 0.96);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(31, 41, 55, 0.045);
    overflow: hidden;
    text-align: left;
}

.pricing-note-section .additional-spec-heading,
.pricing-note-section .additional-spec-heading.supported-countries-heading {
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.5rem;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.pricing-note-section .additional-spec-heading h3 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    line-height: 1.18;
}

.pricing-note-section .additional-spec-heading p {
    max-width: 62rem;
    margin: 0;
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.55;
    text-align: center;
}

.pricing-note-section .additional-spec-table-scroll {
    margin-top: clamp(1.05rem, 2.2vw, 1.45rem);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-note-section .additional-spec-table {
    width: 100%;
    margin-top: 0.45rem;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.pricing-note-section .language-rate-table.additional-spec-table {
    min-width: 900px;
}

.pricing-note-section .bandwidth-estimate-table.additional-spec-table {
    min-width: 560px;
}

.pricing-note-section .additional-spec-table thead th {
    padding: 0.95rem 1rem 0.85rem;
    border: 0;
    border-bottom: 1px solid rgba(203, 213, 225, 0.88);
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
    vertical-align: bottom;
}

.pricing-note-section .additional-spec-table tbody th,
.pricing-note-section .additional-spec-table tbody td {
    padding: 1.05rem 1rem;
    border: 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    background: transparent;
    color: #1f2937;
    font-weight: 400;
    letter-spacing: 0.012em;
    text-align: left;
    vertical-align: middle;
}

.pricing-note-section .additional-spec-table tbody th {
    background: rgba(248, 250, 252, 0.86);
}

.pricing-note-section .additional-spec-table tbody tr:last-child th,
.pricing-note-section .additional-spec-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-note-section .additional-spec-table .additional-channel-rate-row th,
.pricing-note-section .additional-spec-table .additional-channel-rate-row td {
    border-top: 1px solid rgba(203, 213, 225, 0.9);
    background: rgba(248, 250, 252, 0.92);
}

.pricing-note-section .additional-spec-table .additional-channel-rate-row td {
    text-align: center;
}

.pricing-note-section .additional-spec-table .rate-plan-name,
.pricing-note-section .additional-spec-table .rate-value,
.pricing-note-section .additional-spec-table .rate-number {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
}

.pricing-note-section .additional-spec-table .rate-number {
    display: block;
    width: auto;
    height: auto;
    place-items: unset;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.pricing-note-section .additional-spec-table .rate-plan-type,
.pricing-note-section .additional-spec-table .rate-note {
    margin-top: 0.28rem;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.42;
}

.pricing-note-section .supported-countries-wrap {
    overflow: hidden;
}

.pricing-note-section .supported-languages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.62rem 2.3rem;
    width: 100%;
    max-width: 70rem;
    margin: clamp(1.15rem, 2.4vw, 1.65rem) auto 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.pricing-note-section .supported-language-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    color: #1f2937;
    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.4;
}

.pricing-note-section .supported-language-name {
    min-width: 0;
    font-weight: 400;
}

.pricing-note-section .supported-language-flag {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    object-fit: contain;
    border-radius: 3px;
}

.pricing-note-section .supported-language-flag-placeholder {
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

@media (max-width: 1100px) {
    .pricing-note-section .supported-languages-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .pricing-note-section .supported-languages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .pricing-note-section .additional-spec-card {
        padding: 1.15rem;
        border-radius: 20px;
    }

    .pricing-note-section .additional-spec-table-scroll {
        overflow: visible;
    }

    .pricing-note-section .additional-spec-table,
    .pricing-note-section .additional-spec-table thead,
    .pricing-note-section .additional-spec-table tbody,
    .pricing-note-section .additional-spec-table tr,
    .pricing-note-section .additional-spec-table th,
    .pricing-note-section .additional-spec-table td {
        display: block;
        min-width: 0;
        width: 100% !important;
    }

    .pricing-note-section .additional-spec-table thead {
        position: absolute;
        width: 1px !important;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .pricing-note-section .additional-spec-table tbody tr {
        padding: 0.78rem 0;
        border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    }

    .pricing-note-section .additional-spec-table tbody tr:last-child {
        border-bottom: 0;
    }

    .pricing-note-section .additional-spec-table tbody th,
    .pricing-note-section .additional-spec-table tbody td,
    .pricing-note-section .additional-spec-table .additional-channel-rate-row th,
    .pricing-note-section .additional-spec-table .additional-channel-rate-row td {
        display: grid;
        grid-template-columns: minmax(8.25rem, 40%) minmax(0, 1fr);
        gap: 0.75rem;
        align-items: start;
        padding: 0.38rem 0;
        border: 0;
        background: transparent;
        text-align: left;
    }

    .pricing-note-section .additional-spec-table tbody th::before,
    .pricing-note-section .additional-spec-table tbody td::before {
        content: attr(data-label);
        color: #64748b;
        font-size: 0.67rem;
        font-weight: 800;
        letter-spacing: 0.075em;
        line-height: 1.35;
        text-transform: uppercase;
    }
}

@media (max-width: 600px) {
    .pricing-note-section .supported-languages-grid {
        grid-template-columns: 1fr;
        gap: 0.58rem;
    }
}

.dashboard-feature-copy {
    text-align: left !important;
}

.dashboard-feature-copy p {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.dashboard-inline-points {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Final marketing polish: remove kicker badges and use an overlapping dashboard carousel. */
.section-kicker {
    display: none !important;
}

.agency-proof-shell .customer-proof-grid article span {
    line-height: 1.48;
}

.business-dashboard-showcase.dashboard-preview-carousel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    place-items: center;
    overflow: hidden;
}

.dashboard-preview-stage {
    position: relative;
    width: min(100%, 1380px);
    min-height: clamp(420px, 52vw, 760px);
    display: grid;
    align-items: center;
    justify-items: center;
    padding: clamp(1rem, 2.4vw, 2rem) clamp(2.25rem, 5vw, 4rem);
}

.dashboard-preview-track {
    position: relative;
    width: min(100%, 1240px);
    min-height: clamp(360px, 46vw, 690px);
}

.dashboard-preview-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(420px, 56vw, 820px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(32, 18, 48, 0.12);
    border-radius: 24px;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.82);
    transition: transform 260ms ease, opacity 260ms ease, filter 260ms ease, z-index 260ms ease;
    z-index: 0;
}

.dashboard-preview-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1.08);
    z-index: 3;
}

.dashboard-preview-slide.is-left {
    opacity: 0.72;
    transform: translate(calc(-50% - min(22vw, 265px)), -50%) scale(0.82);
    filter: saturate(0.92) contrast(0.98);
    z-index: 1;
}

.dashboard-preview-slide.is-right {
    opacity: 0.72;
    transform: translate(calc(-50% + min(22vw, 265px)), -50%) scale(0.82);
    filter: saturate(0.92) contrast(0.98);
    z-index: 1;
}

.dashboard-preview-slide img,
.dashboard-showcase-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    image-rendering: auto;
    background: #ffffff;
}

.dashboard-preview-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    cursor: pointer;
    font-size: 1.75rem;
    line-height: 1;
    transform: translateY(-50%);
}

.dashboard-preview-prev {
    left: clamp(0.5rem, 2vw, 1.5rem);
}

.dashboard-preview-next {
    right: clamp(0.5rem, 2vw, 1.5rem);
}

.dashboard-preview-copy-wrap {
    position: relative;
    width: min(100%, 760px);
    min-height: 190px;
}

.dashboard-preview-copy {
    display: none !important;
    max-width: 760px;
    margin: 0 auto;
    text-align: left !important;
}

.dashboard-preview-copy.is-active {
    display: block !important;
}

.dashboard-preview-copy h3 {
    margin: 0 0 0.55rem;
}

.dashboard-preview-copy p {
    margin: 0 !important;
    max-width: 720px;
    line-height: 1.48;
}

.dashboard-preview-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

.dashboard-preview-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d8cbea;
    cursor: pointer;
}

.dashboard-preview-dot.is-active {
    width: 26px;
    background: var(--violet);
}

@media (max-width: 760px) {
    .dashboard-preview-stage {
        min-height: 460px;
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .dashboard-preview-track {
        min-height: 410px;
    }

    .dashboard-preview-slide {
        width: min(92vw, 560px);
        border-radius: 20px;
    }

    .dashboard-preview-slide.is-left {
        transform: translate(calc(-50% - 34vw), -50%) scale(0.75);
    }

    .dashboard-preview-slide.is-right {
        transform: translate(calc(-50% + 34vw), -50%) scale(0.75);
    }

    .dashboard-preview-nav {
        width: 38px;
        height: 38px;
        font-size: 1.45rem;
    }
}

.plan-usage-note {
    margin-bottom: 1.45rem !important;
}


/* Modern marketing refresh: clearer proof points, lighter depth, and consistent SaaS copy. */
.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(114, 87, 232, 0.18);
    border-radius: 999px;
    background: rgba(244, 239, 255, 0.72);
    color: var(--plum-800);
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0.01em;
}


.btn-primary {
}

.btn-primary:hover,
.btn-primary:focus-visible {
}

.price-card,
.saas-price-card,
.contact-panel,
.detail-card,
.cta-card,
.trust-page-card,
.checkout-card-section,
.auth-card,
.comparison-panel,
.dashboard-preview-slide,
.dashboard-preview-nav {
}

.billing-clarity-card {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.billing-clarity-card h2,
.billing-clarity-card p,
.billing-clarity-grid strong,
.billing-clarity-grid span {
    color: #ffffff !important;
}

.billing-clarity-grid div {
    border-color: rgba(255, 255, 255, 0.22);
    background: transparent;
}

.modern-comparison-panel {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible;
}

.modern-comparison-panel .comparison-disclosure,
.modern-comparison-panel .comparison-disclosure-content {
    background: transparent;
}

.hero-product,
.app-showcase,
.carousel-shell {
}

.homepage-hero-section.hero.section-xl .hero-product,
.homepage-hero-section.hero.section-xl .app-showcase,
.homepage-hero-section.hero.section-xl .image-hero-showcase {
    background: transparent !important;
}

.homepage-hero-section.hero.section-xl .hero-image-fade-frame {
    border-radius: 0 !important;
    background: transparent !important;
    overflow: hidden;
}

.homepage-hero-section.hero.section-xl .hero-image-fade-frame::before,
.homepage-hero-section.hero.section-xl .hero-image-fade-frame::after {
    content: "" !important;
    position: absolute;
    inset: -1px;
    display: block !important;
    pointer-events: none;
    z-index: 2;
}

.homepage-hero-section.hero.section-xl .hero-image-fade-frame::before {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 11%, rgba(255, 255, 255, 0) 89%, #ffffff 100%);
}

.homepage-hero-section.hero.section-xl .hero-image-fade-frame::after {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0) 74%, #ffffff 100%);
}

.site-header {
}

/* Remove remaining marketing kicker pill styles. */
.section-kicker,
.eyebrow-pill {
  display: inline !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  line-height: inherit !important;
}

/* Homepage photographic hero background and rounded sticky nav. */
.site-header {
    border-bottom: 0 !important;
}

.site-header .nav {
    transition:
        margin 440ms cubic-bezier(.22, 1, .36, 1), min-height 440ms cubic-bezier(.22, 1, .36, 1), padding 440ms cubic-bezier(.22, 1, .36, 1), background-color 440ms cubic-bezier(.22, 1, .36, 1), border-color 440ms cubic-bezier(.22, 1, .36, 1), border-radius 440ms cubic-bezier(.22, 1, .36, 1), backdrop-filter 440ms cubic-bezier(.22, 1, .36, 1), transform 440ms cubic-bezier(.22, 1, .36, 1);
}

.site-header .brand-text,
.site-header .nav-link,
.site-header .nav-cta {
    transition:
        color 360ms ease, background-color 360ms ease, border-color 360ms ease, transform 360ms ease;
}

.site-header.is-scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    border-bottom: 0 !important;
    backdrop-filter: none;
}

.site-header.is-scrolled .nav {
    min-height: 64px;
    margin-top: 12px;
    margin-bottom: 12px;
    padding-inline: clamp(0.85rem, 2vw, 1.25rem);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
}

.home-site-header:not(.is-scrolled) {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    border-bottom: 0 !important;
    backdrop-filter: none;
}

body:has(.homepage-hero-section) .site-header:not(.is-scrolled) {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    border-bottom: 0 !important;
    backdrop-filter: none;
}

.home-site-header:not(.is-scrolled) .brand-text,
.home-site-header:not(.is-scrolled) .nav-link,
.home-site-header:not(.is-scrolled) .nav-cta,
body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .brand-text,
body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-link,
body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-cta {
    color: rgba(255, 255, 255, 0.88);
}

.home-site-header:not(.is-scrolled) .nav-logout,
body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-logout {
    color: var(--violet);
}

.home-site-header:not(.is-scrolled) .nav-link:hover,
.home-site-header:not(.is-scrolled) .nav-link:focus-visible,
.home-site-header:not(.is-scrolled) .nav-link.is-active,
body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-link:hover,
body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-link:focus-visible,
body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-link.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.home-site-header:not(.is-scrolled) .nav-signup,
body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-signup {
    color: #111827;
    border-color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.92);
}

.homepage-hero-section.hero.section-xl {
    min-height: clamp(780px, 100vh, 1440px);
    padding: calc(76px + clamp(7.75rem, 11vw, 11.5rem)) 0 clamp(7rem, 10vw, 10rem) !important;
    background:
        linear-gradient(90deg, rgba(7, 15, 29, 0.94) 0%, rgba(7, 15, 29, 0.82) 30%, rgba(7, 15, 29, 0.28) 62%, rgba(7, 15, 29, 0.04) 100%),
        linear-gradient(180deg, rgba(7, 15, 29, 0.1) 0%, rgba(7, 15, 29, 0.02) 74%, #ffffff 100%),
        url("../img/hero.png") center bottom / cover no-repeat !important;
}

.homepage-hero-section.hero.section-xl > .container {
    width: min(100% - 2rem, 1280px) !important;
}

.homepage-hero-section.hero.section-xl .hero-grid {
    grid-template-columns: minmax(0, 860px) !important;
    align-items: start;
    transform: translateX(clamp(-2rem, -1.8vw, -1rem));
}

.homepage-hero-section.hero.section-xl .hero-copy {
    max-width: 860px;
}

.homepage-hero-section.hero.section-xl .hero-copy h1 {
    max-width: 15ch;
    color: #ffffff !important;
}

.homepage-hero-section.hero.section-xl .hero-subtitle {
    max-width: 41rem;
    color: rgba(255, 255, 255, 0.82) !important;
}

.homepage-hero-section.hero.section-xl .hero-actions .btn-primary {
    color: #111827 !important;
    background: #ffffff !important;
}

.homepage-hero-section.hero.section-xl .hero-actions .btn-quiet {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.62) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(14px);
}

.homepage-hero-section.hero.section-xl .hero-product,
.homepage-hero-section.hero.section-xl .app-showcase,
.homepage-hero-section.hero.section-xl .image-hero-showcase {
    display: none !important;
}

@media (max-width: 820px) {
    .home-site-header:not(.is-scrolled) .nav-links,
    body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-links {
        background: rgba(255, 255, 255, 0.96);
    }

    .home-site-header:not(.is-scrolled) .nav-links .nav-link,
    .home-site-header:not(.is-scrolled) .nav-links .nav-cta,
    body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-links .nav-link,
    body:has(.homepage-hero-section) .site-header:not(.is-scrolled) .nav-links .nav-cta {
        color: var(--ink);
    }

    .homepage-hero-section.hero.section-xl {
        min-height: 680px;
        padding-top: calc(76px + 4.75rem) !important;
        background-position: 58% bottom;
    }

    .homepage-hero-section.hero.section-xl > .container {
        width: min(100% - 2rem, 100%) !important;
    }

    .homepage-hero-section.hero.section-xl .hero-copy h1 {
        max-width: 11ch;
    }
}

/* Global loading skeletons for deferred components and secure embedded inputs. */
.secure-component-skeleton,
.component-skeleton {
    display: grid;
    gap: 12px;
    width: 100%;
    padding: 16px;
    border: 1px solid var(--line, #e7ddfb);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

.skeleton-line,
.skeleton-input,
.skeleton-block {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 999px;
    background: #ece6f7;
}

.skeleton-line { width: 64%; height: 13px; }
.skeleton-line-wide { width: 86%; }
.skeleton-line-short { width: 42%; }
.skeleton-input { width: 100%; min-height: 46px; border-radius: 12px; }
.skeleton-block { width: 100%; min-height: 120px; border-radius: 16px; }

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

.skeleton-line::after,
.skeleton-input::after,
.skeleton-block::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
    animation: openTourVoiceSkeletonShimmer 1.25s infinite;
}

.payment-skeleton { min-height: 13rem; }
.billing-payment-element,
.register-payment-element { min-height: 13rem; }

.is-loading-secure-payment [data-billing-payment-element],
.is-loading-secure-payment [data-register-payment-element] { visibility: hidden; }

@keyframes openTourVoiceSkeletonShimmer {
    100% { transform: translateX(100%); }
}

@media (prefers-reduced-motion: reduce) {
    .skeleton-line::after,
    .skeleton-input::after,
    .skeleton-block::after { animation: none; }
}

@media (max-width: 640px) {
    .skeleton-row { grid-template-columns: 1fr; }
}
