/* Soma Talk — Enterprise landing presentation layer */

:root {
    --st-bg: #0b0f1a;
    --st-bg-elevated: #111827;
    --st-bg-card: #151d2e;
    --st-bg-card-hover: #1a2438;
    --st-border: rgba(148, 163, 184, 0.12);
    --st-border-strong: rgba(148, 163, 184, 0.2);
    --st-text: #f1f5f9;
    --st-text-muted: #94a3b8;
    --st-text-dim: #64748b;
    --st-accent: #6366f1;
    --st-accent-light: #818cf8;
    --st-accent-glow: rgba(99, 102, 241, 0.12);
    --st-violet: #7c3aed;
    --st-radius: 12px;
    --st-radius-lg: 16px;
    --st-radius-xl: 20px;
    --st-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    --st-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
    --st-font: 'Inter', 'IBM Plex Sans', system-ui, sans-serif;
    --st-nav-height: 72px;
    --st-container: 1280px;
    --st-container-pad: clamp(20px, 4vw, 40px);
    --st-section-y: 96px;
    --st-section-y-sm: 72px;
    --st-header-gap: 56px;
    --st-header-max: 720px;
    --st-control-height: 52px;
    --st-control-height-sm: 44px;
    --st-pill-radius: 9999px;
    --st-join-input-bg: #0c1018;
    --st-join-input-text: #c4b5fd;
    --st-join-gradient: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    --st-join-gradient-hover: linear-gradient(135deg, #5558e3 0%, #6d28d9 100%);
    --st-grid-gap: 24px;
    --st-feature-grid-gap: 40px;
    --st-feature-card-pad: 32px;
    --st-feature-icon-size: 52px;
    --st-feature-icon-gap: 20px;
    --st-feature-title-gap: 12px;
}

body.landing-enterprise {
    background: var(--st-bg);
    color: var(--st-text-muted);
    font-family: var(--st-font);
    font-size: 16px;
    line-height: 1.6;
}

body.landing-enterprise .body-wrap {
    background: var(--st-bg);
}

body.landing-enterprise h1,
body.landing-enterprise h2,
body.landing-enterprise h3,
body.landing-enterprise h4,
body.landing-enterprise h5,
body.landing-enterprise h6 {
    color: var(--st-text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

body.landing-enterprise main h1,
body.landing-enterprise main h2,
body.landing-enterprise main h3,
body.landing-enterprise main .section-title {
    margin-top: 0;
}

body.landing-enterprise #snow-container {
    display: none;
}

body.landing-enterprise .is-boxed {
    background: var(--st-bg);
}

/* Layout */
.st-container {
    width: 100%;
    max-width: var(--st-container);
    margin: 0 auto;
    padding: 0 var(--st-container-pad);
}

.st-section {
    padding: var(--st-section-y) 0;
}

.st-section-header {
    text-align: center;
    max-width: var(--st-header-max);
    margin: 0 auto var(--st-header-gap);
}

.st-section-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.2;
    margin: 0 0 16px;
    padding: 0 12px;
}

.st-section-header p {
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    color: var(--st-text-muted);
    margin: 0;
    padding: 0 16px;
    line-height: 1.65;
}

.st-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--st-accent-light);
    margin-bottom: 16px;
}

/* Nav */
.st-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--st-nav-height);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.st-nav.is-scrolled {
    background: rgba(11, 15, 26, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--st-border);
}

.st-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--st-nav-height);
    gap: 24px;
}

.st-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--st-text);
    font-weight: 700;
    font-size: 1.125rem;
}

.st-nav-brand img {
    height: 32px;
    width: auto;
}

body.landing-enterprise .st-nav-links,
body.landing-enterprise #header-nav,
body.landing-enterprise .st-nav-toggle,
body.landing-enterprise .header-links {
    display: none !important;
}

.st-nav-inner {
    justify-content: space-between;
}

.st-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

body.landing-enterprise .st-nav-actions .st-btn {
    height: var(--st-control-height-sm);
    min-height: var(--st-control-height-sm);
    padding: 0 18px;
    line-height: 1;
}

.st-nav-login {
    display: inline-flex;
    align-items: center;
    height: var(--st-control-height-sm);
    color: var(--st-text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 0 12px;
}

.st-nav-login:hover {
    color: var(--st-text);
}

.st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--st-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.st-btn-primary {
    background: var(--st-accent);
    color: #fff !important;
}

.st-btn-primary:hover {
    background: #5558e3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--st-accent-glow);
}

.st-btn-ghost {
    background: transparent;
    color: var(--st-text) !important;
    border: 1px solid var(--st-border-strong);
}

.st-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
}

.st-btn-lg {
    padding: 14px 28px;
    font-size: 0.9375rem;
}

body.landing-enterprise .site-header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
}

body.landing-enterprise .site-header::before {
    display: none;
}

/* Hero */
.st-hero {
    padding: calc(var(--st-nav-height) + 40px) 0 var(--st-section-y);
    text-align: center;
}

.st-hero .st-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.st-hero h1,
.st-hero .hero-title,
.st-hero #appTitle {
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    line-height: 1.35;
    max-width: min(100%, 52rem);
    margin: 0 auto 20px;
    padding: 0 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-wrap: pretty;
}

.st-hero-sub,
.st-hero #appDescription {
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    color: var(--st-text-muted);
    max-width: 520px;
    margin: 0 auto 32px;
    padding: 0 16px;
    line-height: 1.65;
}

.st-hero-join {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 48px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

body.landing-enterprise .button,
body.landing-enterprise button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
    padding-top: 0;
    padding-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
}

body.landing-enterprise .button:not(.gen-room-btn)::before {
    display: none;
}

/* Two rows: [room id | join] then [customize full width] */
body.landing-enterprise .st-join-grid,
body.landing-enterprise .st-join-grid.form-group-desktop {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 12px;
    width: 100%;
    align-items: stretch;
}

body.landing-enterprise .st-join-row {
    display: contents;
}

body.landing-enterprise .st-join-grid.form-group-desktop .room-input-wrapper {
    margin-right: 0 !important;
}

body.landing-enterprise .st-join-grid.form-group-desktop .form-input {
    margin-bottom: 0 !important;
}

body.landing-enterprise .st-join-input-wrap {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    width: 100%;
}

body.landing-enterprise #joinRoomButton,
body.landing-enterprise .st-join-primary {
    grid-column: 2;
    grid-row: 1;
}

body.landing-enterprise #customizeRoomButton,
body.landing-enterprise .st-join-customize {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
}

/* Override landing.css full-width buttons inside join area */
body.landing-enterprise .st-join-grid .button:not(.gen-room-btn) {
    width: auto !important;
}

body.landing-enterprise #scheduleMeetingBtn {
    display: none !important;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
}

.st-join-input-wrap .form-input,
.st-join-input-wrap .st-join-input {
    width: 100%;
    height: var(--st-control-height);
    padding: 0 52px 0 22px;
    background: var(--st-join-input-bg);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: var(--st-pill-radius);
    color: var(--st-join-input-text);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
}

.st-join-input-wrap .form-input::placeholder {
    color: rgba(196, 181, 253, 0.45);
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.st-join-input-wrap .form-input:focus {
    outline: none;
    border-color: rgba(129, 140, 248, 0.45);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

body.landing-enterprise .st-join-input-wrap .gen-room-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0 !important;
    background: transparent !important;
    border: none;
    border-radius: 50%;
    color: var(--st-join-input-text) !important;
    opacity: 0.75;
    font-size: 0.9375rem;
    box-shadow: none !important;
}

body.landing-enterprise .st-join-input-wrap .gen-room-btn::before {
    display: inline-block;
    color: inherit;
}

body.landing-enterprise .st-join-input-wrap .gen-room-btn:hover {
    color: #e9d5ff !important;
    opacity: 1;
    background: rgba(99, 102, 241, 0.12) !important;
    transform: translateY(-50%);
}

body.landing-enterprise #joinRoomButton,
body.landing-enterprise .st-join-primary {
    height: var(--st-control-height);
    min-width: 148px;
    padding: 0 22px 0 24px !important;
    gap: 10px;
    background: var(--st-join-gradient) !important;
    border: none !important;
    border-radius: var(--st-pill-radius);
    animation: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff !important;
}

body.landing-enterprise #joinRoomButton:hover {
    background: var(--st-join-gradient-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.45);
}

.st-join-primary-label {
    line-height: 1;
}

.st-join-primary-arrow {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 400;
    opacity: 0.95;
}

body.landing-enterprise #customizeRoomButton,
body.landing-enterprise .st-join-customize {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: 100%;
    height: var(--st-control-height-sm);
    padding: 0 24px !important;
    background: #141a26 !important;
    border: 1px solid rgba(148, 163, 184, 0.12) !important;
    border-radius: var(--st-pill-radius);
    box-shadow: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--st-text);
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.landing-enterprise #customizeRoomButton:hover {
    background: #1a2233 !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
    transform: translateY(-1px);
}

.st-last-room {
    width: 100%;
    margin-top: 14px;
    font-size: 0.875rem;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.st-last-room a {
    color: var(--st-accent-light);
    text-decoration: none;
    font-weight: 600;
}

/* Preview */
.st-preview {
    width: 100%;
    max-width: 100%;
}

.st-preview-frame {
    background: var(--st-bg-card);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-xl);
    overflow: hidden;
    box-shadow: var(--st-shadow-lg);
}

.st-preview-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--st-border);
}

.st-preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.st-preview-dot:nth-child(1) {
    background: #ef4444;
}
.st-preview-dot:nth-child(2) {
    background: #eab308;
}
.st-preview-dot:nth-child(3) {
    background: #22c55e;
}

.st-preview-body {
    display: grid;
    grid-template-columns: 1fr 220px;
    min-height: 320px;
}

.st-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px;
}

.st-preview-tile {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--st-border);
}

.st-preview-tile.is-active {
    border-color: var(--st-accent);
}

.st-preview-tile span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--st-accent), var(--st-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
}

.st-preview-sidebar {
    border-left: 1px solid var(--st-border);
    padding: 12px;
    background: rgba(0, 0, 0, 0.15);
}

.st-preview-sidebar h4 {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--st-text-dim);
    margin: 0 0 10px;
}

.st-preview-msg {
    font-size: 0.6875rem;
    padding: 8px;
    background: var(--st-bg-elevated);
    border-radius: 6px;
    margin-bottom: 6px;
    color: var(--st-text-muted);
    line-height: 1.4;
}

.st-preview-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-top: 1px solid var(--st-border);
    background: rgba(0, 0, 0, 0.2);
}

.st-preview-ctrl {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--st-bg-elevated);
    border: 1px solid var(--st-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--st-text-muted);
}

.st-preview-ctrl.is-danger {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

/* Features */
body.landing-enterprise #features.st-section {
    padding-top: var(--st-section-y);
    padding-bottom: var(--st-section-y);
}

body.landing-enterprise #features .st-section-header {
    margin-bottom: 72px;
    max-width: 760px;
}

body.landing-enterprise #features .st-section-header .st-eyebrow {
    margin-bottom: 20px;
}

body.landing-enterprise #features .st-section-header h2 {
    margin-bottom: 20px;
    line-height: 1.25;
}

body.landing-enterprise #features .st-section-header p {
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

body.landing-enterprise #features .features-inner {
    width: 100%;
    padding: 0;
}

body.landing-enterprise #features .features-wrap:first-of-type,
body.landing-enterprise #features .features-wrap:last-of-type {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.landing-enterprise #features .features-wrap,
body.landing-enterprise #features .st-features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--st-feature-grid-gap);
    width: 100%;
    margin: 0 !important;
    padding: 0;
    align-items: stretch;
}

body.landing-enterprise #features .feature,
body.landing-enterprise #features .st-feature-card {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left;
    display: flex;
}

body.landing-enterprise #features .feature-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    height: 100%;
    width: 100%;
    padding: 0;
}

.st-feature-card {
    background: var(--st-bg-card);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--st-radius-lg);
    padding: var(--st-feature-card-pad);
    min-height: 100%;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.st-feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--st-border-strong);
    background: var(--st-bg-card-hover);
    box-shadow: var(--st-shadow);
}

body.landing-enterprise #features .feature-icon,
body.landing-enterprise #features .st-feature-icon {
    width: var(--st-feature-icon-size);
    height: var(--st-feature-icon-size);
    min-width: var(--st-feature-icon-size);
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.16) !important;
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 var(--st-feature-icon-gap);
    padding: 0 !important;
    color: var(--st-accent-light);
    font-size: 1.1875rem;
    flex-shrink: 0;
}

.st-feature-card h4,
.st-feature-card .feature-title {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 var(--st-feature-title-gap);
    color: var(--st-text);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

body.landing-enterprise #features .st-feature-card p,
body.landing-enterprise #features .st-feature-card .text-sm {
    font-size: 0.875rem !important;
    line-height: 1.65 !important;
    letter-spacing: 0.01em !important;
    color: var(--st-text-muted);
    margin: 0;
    max-width: 36ch;
}

.st-feature-card .wh-200-150 {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.st-feature-card .feature-title.mt-24 {
    margin-top: 0;
}

/* Security */
#security.st-section {
    padding-top: var(--st-section-y-sm);
    padding-bottom: var(--st-section-y-sm);
}

.st-security {
    text-align: center;
}

.st-security-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--st-accent-light);
    font-size: 1.5rem;
}

.st-security .st-section-header {
    margin-bottom: 40px;
}

.st-security-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--st-grid-gap);
    width: 100%;
}

.st-security-badge i {
    font-size: 1.5rem;
    color: var(--st-accent-light);
    margin-bottom: 12px;
}

.st-security-badge span {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--st-text-dim);
    text-transform: uppercase;
}

/* CTA */
.st-section-cta {
    padding-top: var(--st-section-y-sm);
    padding-bottom: var(--st-section-y);
}

.st-cta-card {
    background: var(--st-bg-card);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius-xl);
    padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 64px);
    text-align: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.st-cta-card h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin: 0 0 16px;
}

.st-cta-card p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--st-text-muted);
    margin: 0 auto 40px;
    max-width: 520px;
    line-height: 1.6;
}

.st-cta-card .st-cta-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

body.landing-enterprise .st-cta-actions .st-btn {
    height: var(--st-control-height);
    padding: 0 32px;
    font-size: 0.9375rem;
}

/* Footer */
.st-footer {
    border-top: 1px solid var(--st-border);
    padding: 64px 0 40px;
    background: var(--st-bg);
}

.st-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: clamp(32px, 5vw, 56px);
    margin-bottom: 48px;
}

.st-footer-brand p {
    font-size: 0.9375rem;
    color: var(--st-text-dim);
    margin: 16px 0 0;
    max-width: 280px;
    line-height: 1.6;
}

.st-footer-col h5 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--st-text-dim);
    margin: 0 0 20px;
}

.st-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.st-footer-col li {
    margin: 0 0 12px;
}

.st-footer-col a {
    color: var(--st-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
}

.st-footer-col a:hover {
    color: var(--st-text);
}

.st-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--st-border);
}

.st-footer-copyright {
    font-size: 0.8125rem;
    color: var(--st-text-dim);
}

body.landing-enterprise .site-footer {
    background: transparent;
    border: none;
    padding: 0;
}

body.landing-enterprise .site-footer .site-footer-inner {
    display: none;
}

body.landing-enterprise .header-logo-image:hover {
    filter: none;
    box-shadow: none;
}

body.landing-enterprise .footer-social-icon i {
    color: var(--st-text-dim);
}

body.landing-enterprise .footer-social-icon:hover {
    transform: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.landing-enterprise .hero-figure::before,
body.landing-enterprise .hero-figure::after {
    display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
    :root {
        --st-container: 1120px;
    }
}

@media (max-width: 1024px) {
    :root {
        --st-section-y: 80px;
        --st-header-gap: 48px;
        --st-grid-gap: 20px;
        --st-feature-grid-gap: 28px;
        --st-feature-card-pad: 28px;
        --st-feature-icon-size: 48px;
        --st-feature-icon-gap: 18px;
        --st-feature-title-gap: 10px;
    }

    body.landing-enterprise #features.st-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    body.landing-enterprise #features .st-section-header {
        margin-bottom: 56px;
    }

    body.landing-enterprise #features .features-wrap,
    body.landing-enterprise #features .st-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .st-hero-join {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    :root {
        --st-section-y: 64px;
        --st-section-y-sm: 56px;
        --st-nav-height: 64px;
        --st-grid-gap: 16px;
        --st-feature-grid-gap: 24px;
        --st-feature-card-pad: 26px;
        --st-feature-icon-size: 46px;
        --st-feature-icon-gap: 16px;
        --st-feature-title-gap: 10px;
    }

    body.landing-enterprise #features.st-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    body.landing-enterprise #features .st-section-header {
        margin-bottom: 44px;
    }

    body.landing-enterprise #features .st-feature-card p,
    body.landing-enterprise #features .st-feature-card .text-sm {
        max-width: none;
    }

    .st-nav-login {
        display: none;
    }

    body.landing-enterprise #features .features-wrap,
    body.landing-enterprise #features .st-features-grid {
        grid-template-columns: 1fr;
    }

    .st-preview-body {
        grid-template-columns: 1fr;
    }

    .st-preview-sidebar {
        border-left: none;
        border-top: 1px solid var(--st-border);
    }

    .st-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.landing-enterprise #joinRoomButton,
    body.landing-enterprise .st-join-primary {
        min-width: 120px;
        padding: 0 16px !important;
        font-size: 0.8125rem;
    }

    body.landing-enterprise #customizeRoomButton {
        padding: 10px 20px !important;
    }

    body.landing-enterprise .st-cta-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    body.landing-enterprise .st-cta-actions .st-btn {
        width: 100%;
    }

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