:root {
    --sm-navy-950: #061426;
    --sm-navy-900: #07182f;
    --sm-navy-800: #0c2544;
    --sm-blue-700: #16568e;
    --sm-blue-600: #1f6fb2;
    --sm-blue-500: #2f8ee5;
    --sm-cyan-400: #4fd1c5;
    --sm-violet-500: #7c6ff2;
    --sm-gold-400: #f5b942;
    --sm-rose-500: #ef6a7b;
    --sm-ink: #10233f;
    --sm-muted: #5f7088;
    --sm-line: #dfe7f0;
    --sm-surface: #f5f8fc;
    --sm-white: #ffffff;
    --sm-shadow-sm: 0 12px 32px rgba(7, 24, 47, 0.08);
    --sm-shadow-md: 0 24px 64px rgba(7, 24, 47, 0.14);
    --sm-shadow-lg: 0 36px 100px rgba(2, 14, 31, 0.3);
    --sm-radius-sm: 14px;
    --sm-radius-md: 22px;
    --sm-radius-lg: 32px;
    --sm-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--sm-ink);
    background: var(--sm-white);
    font-family: "Poppins", "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.theme3-premium-home {
    overflow-x: hidden;
}

.sm-site-shell {
    min-height: 100vh;
    overflow: clip;
}

.sm-site-shell img {
    display: block;
    max-width: 100%;
    height: auto;
}

.sm-site-shell :where(a) {
    color: inherit;
}

.sm-site-shell button,
.sm-site-shell input {
    font: inherit;
}

.sm-site-shell button,
.sm-site-shell a {
    -webkit-tap-highlight-color: transparent;
}

.sm-site-shell [hidden] {
    display: none !important;
}

.sm-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.sm-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    color: var(--sm-navy-900);
    background: var(--sm-white);
    border-radius: 10px;
    box-shadow: var(--sm-shadow-md);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.sm-skip-link:focus {
    transform: translateY(0);
}

.sm-site-shell :focus-visible,
.sm-back-to-top:focus-visible {
    outline: 3px solid var(--sm-gold-400);
    outline-offset: 4px;
}

/* Header */
.sm-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--sm-white);
    background: rgba(6, 20, 38, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px) saturate(150%);
    transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.sm-site-header.is-scrolled {
    background: rgba(6, 20, 38, 0.97);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 14px 34px rgba(2, 12, 28, 0.18);
}

.sm-nav-shell {
    position: relative;
}

.sm-nav-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.sm-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    color: var(--sm-white);
    text-decoration: none;
}

.sm-brand-mark {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #e9f2ff);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(1, 11, 27, 0.24);
}

.sm-brand-mark img {
    width: 44px;
    height: 40px;
    object-fit: contain;
}

.sm-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.sm-brand-copy strong {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sm-brand-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.sm-primary-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(24px, 3vw, 42px);
}

.sm-nav-links,
.sm-nav-actions,
.sm-footer ul,
.sm-hero-assurances,
.sm-check-list,
.sm-profile-feature-list,
.sm-integration-copy ul,
.sm-technology-grid {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sm-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sm-nav-links a,
.sm-nav-login {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 11px;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease;
}

.sm-nav-links a::after {
    position: absolute;
    right: 11px;
    bottom: 5px;
    left: 11px;
    height: 2px;
    background: var(--sm-cyan-400);
    border-radius: 999px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--sm-ease);
}

.sm-nav-links a:hover,
.sm-nav-links a[aria-current="page"],
.sm-nav-login:hover {
    color: var(--sm-white);
    background: rgba(255, 255, 255, 0.07);
}

.sm-nav-links a:hover::after,
.sm-nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.sm-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sm-nav-toggle {
    display: none;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    color: var(--sm-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    cursor: pointer;
}

.sm-nav-toggle-label {
    font-size: 12px;
    font-weight: 700;
}

.sm-nav-toggle-icon {
    display: grid;
    width: 19px;
    gap: 4px;
}

.sm-nav-toggle-icon i {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 9px;
    transition: transform 220ms ease, opacity 220ms ease;
}

.sm-nav-toggle[aria-expanded="true"] .sm-nav-toggle-icon i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.sm-nav-toggle[aria-expanded="true"] .sm-nav-toggle-icon i:nth-child(2) {
    opacity: 0;
}

.sm-nav-toggle[aria-expanded="true"] .sm-nav-toggle-icon i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Reusable type and buttons */
.sm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--sm-blue-700);
    background: rgba(31, 111, 178, 0.09);
    border: 1px solid rgba(31, 111, 178, 0.14);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-transform: uppercase;
}

.sm-eyebrow--light {
    color: #bcecff;
    background: rgba(111, 210, 255, 0.1);
    border-color: rgba(144, 223, 255, 0.18);
}

.sm-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 220ms var(--sm-ease), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.sm-button i {
    font-size: 12px;
    transition: transform 220ms var(--sm-ease);
}

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

.sm-button:hover i.fa-arrow-right {
    transform: translateX(3px);
}

.sm-button--primary {
    color: var(--sm-white);
    background: linear-gradient(135deg, var(--sm-blue-500), var(--sm-blue-700));
    box-shadow: 0 14px 30px rgba(32, 119, 194, 0.28);
}

.sm-button--primary:hover {
    color: var(--sm-white);
    box-shadow: 0 18px 38px rgba(32, 119, 194, 0.38);
}

.sm-button--ghost {
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.sm-button--ghost:hover {
    color: var(--sm-white);
    background: rgba(255, 255, 255, 0.1);
}

.sm-button--light {
    color: var(--sm-navy-900);
    background: var(--sm-white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.sm-button--light:hover {
    color: var(--sm-blue-700);
    background: #f4f9ff;
}

.sm-button--small {
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 11px;
    font-size: 12px;
}

.sm-section {
    position: relative;
    padding: clamp(84px, 9vw, 128px) 0;
}

.sm-section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.sm-section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.sm-section-heading h2,
.sm-platform-copy h2,
.sm-integration-copy h2,
.sm-contact-copy h2,
.sm-footer-callout h2 {
    margin: 18px 0 16px;
    color: var(--sm-ink);
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.sm-section-heading p,
.sm-platform-copy > p,
.sm-integration-copy > p,
.sm-contact-copy > p {
    margin: 0;
    color: var(--sm-muted);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.75;
}

/* Hero */
.sm-hero {
    position: relative;
    display: grid;
    min-height: min(820px, calc(100vh - 82px));
    align-items: center;
    overflow: hidden;
    padding: clamp(74px, 8vw, 116px) 0 clamp(100px, 10vw, 138px);
    color: var(--sm-white);
    background:
        radial-gradient(circle at 12% 10%, rgba(32, 116, 198, 0.22), transparent 34%),
        linear-gradient(145deg, #061426 4%, #092342 52%, #07182f 100%);
}

.sm-hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 54px 54px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 86%);
    pointer-events: none;
}

.sm-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: clamp(44px, 7vw, 84px);
    grid-template-columns: minmax(0, 0.91fr) minmax(480px, 1.09fr);
}

.sm-hero-copy {
    max-width: 630px;
}

.sm-hero .sm-eyebrow {
    color: #bcecff;
    background: rgba(79, 209, 197, 0.08);
    border-color: rgba(79, 209, 197, 0.18);
}

.sm-hero h1 {
    margin: 22px 0 22px;
    color: var(--sm-white);
    font-size: clamp(43px, 5.5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.01;
}

.sm-hero h1 span {
    color: transparent;
    background: linear-gradient(105deg, #8edbff 8%, #ffffff 46%, #6de1d3 94%);
    background-clip: text;
    -webkit-background-clip: text;
}

.sm-hero-lead {
    max-width: 610px;
    margin: 0;
    color: rgba(230, 241, 252, 0.76);
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.75;
}

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

.sm-hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 20px;
    margin-top: 26px;
    color: rgba(232, 243, 252, 0.65);
    font-size: 11px;
    font-weight: 600;
}

.sm-hero-assurances li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sm-hero-assurances i {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: var(--sm-navy-900);
    background: var(--sm-cyan-400);
    border-radius: 50%;
    font-size: 8px;
}

.sm-hero-visual {
    position: relative;
    width: 100%;
    padding: 40px 0 50px;
}

.sm-hero-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.48;
    pointer-events: none;
}

.sm-hero-aurora--one {
    top: 4%;
    right: -12%;
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(47, 142, 229, 0.42), transparent 68%);
    animation: sm-breathe 8s ease-in-out infinite;
}

.sm-hero-aurora--two {
    bottom: -25%;
    left: 28%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.2), transparent 68%);
    animation: sm-breathe 10s ease-in-out -3s infinite;
}

.sm-orbit {
    position: absolute;
    border: 1px solid rgba(143, 216, 255, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.sm-orbit--one {
    inset: 4% -5% 1% 7%;
    animation: sm-spin 28s linear infinite;
}

.sm-orbit--two {
    inset: 14% 3% 12% -4%;
    border-style: dashed;
    animation: sm-spin 34s linear reverse infinite;
}

/* Product images */
.sm-browser {
    position: relative;
    overflow: hidden;
    background: #f7f9fc;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--sm-radius-md);
    box-shadow: var(--sm-shadow-lg);
}

.sm-browser--hero {
    z-index: 2;
    width: min(100%, 650px);
    margin-inline: auto;
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.sm-browser-bar {
    display: flex;
    height: 38px;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    color: #76849a;
    background: #ffffff;
    border-bottom: 1px solid #e8edf3;
}

.sm-browser-bar > span {
    width: 8px;
    height: 8px;
    background: #d2dae5;
    border-radius: 50%;
}

.sm-browser-bar > span:first-child { background: #ff7d7d; }
.sm-browser-bar > span:nth-child(2) { background: #f6c85f; }
.sm-browser-bar > span:nth-child(3) { background: #66d5a6; }

.sm-browser-address {
    max-width: 270px;
    margin-left: 8px;
    overflow: hidden;
    color: #7e8ca1;
    font-size: 9px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sm-image-trigger {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: inherit;
    background: #f7f9fc;
    border: 0;
    cursor: zoom-in;
}

.sm-image-trigger img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 500ms var(--sm-ease), filter 300ms ease;
}

.sm-image-trigger:hover img {
    transform: scale(1.012);
    filter: saturate(1.03) contrast(1.015);
}

.sm-image-zoom {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: var(--sm-white);
    background: rgba(6, 20, 38, 0.83);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(7, 24, 47, 0.18);
    font-size: 9px;
    font-weight: 700;
    opacity: 0;
    backdrop-filter: blur(8px);
    transform: translateY(5px);
    transition: opacity 200ms ease, transform 200ms ease;
}

.sm-image-trigger:hover .sm-image-zoom,
.sm-image-trigger:focus-visible .sm-image-zoom {
    opacity: 1;
    transform: translateY(0);
}

.sm-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    color: var(--sm-ink);
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(1, 12, 29, 0.26);
    backdrop-filter: blur(12px);
}

.sm-floating-card span:last-child {
    display: flex;
    flex-direction: column;
}

.sm-floating-card strong {
    font-size: 11px;
    font-weight: 800;
}

.sm-floating-card small {
    margin-top: 2px;
    color: var(--sm-muted);
    font-size: 8px;
}

.sm-floating-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--sm-white);
    background: linear-gradient(135deg, var(--sm-blue-500), var(--sm-violet-500));
    border-radius: 10px;
    font-size: 12px;
}

.sm-floating-card--profiles {
    bottom: 11px;
    left: -24px;
    animation: sm-float 5s ease-in-out infinite;
}

.sm-floating-card--live {
    top: 8px;
    right: -18px;
    animation: sm-float 5.8s ease-in-out -1.7s infinite;
}

.sm-live-dot {
    position: relative;
    width: 10px;
    height: 10px;
    background: #24c882;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 200, 130, 0.12);
}

/* Value strip */
.sm-value-strip {
    position: relative;
    z-index: 5;
    margin-top: -39px;
}

.sm-value-grid {
    display: grid;
    overflow: hidden;
    background: var(--sm-white);
    border: 1px solid rgba(15, 52, 87, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(7, 24, 47, 0.12);
    grid-template-columns: repeat(3, 1fr);
}

.sm-value-grid article {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
}

.sm-value-grid article + article {
    border-left: 1px solid var(--sm-line);
}

.sm-value-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    color: var(--sm-blue-700);
    background: #eaf4ff;
    border-radius: 13px;
    font-size: 17px;
}

.sm-value-grid strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 800;
}

.sm-value-grid p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 11px;
    line-height: 1.5;
}

/* Solutions */
.sm-solutions {
    background:
        radial-gradient(circle at 92% 8%, rgba(47, 142, 229, 0.08), transparent 28%),
        var(--sm-white);
}

.sm-solution-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sm-solution-card {
    --card-color: var(--sm-blue-600);
    position: relative;
    display: flex;
    min-height: 275px;
    flex-direction: column;
    overflow: hidden;
    padding: 28px 26px;
    color: var(--sm-ink);
    background: #ffffff;
    border: 1px solid var(--sm-line);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(7, 24, 47, 0.045);
    text-decoration: none;
    transition: transform 300ms var(--sm-ease), box-shadow 300ms ease, border-color 300ms ease;
}

.sm-solution-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 100% 0, color-mix(in srgb, var(--card-color) 14%, transparent), transparent 70%);
    content: "";
}

.sm-solution-card:hover {
    border-color: color-mix(in srgb, var(--card-color) 28%, var(--sm-line));
    box-shadow: 0 25px 55px rgba(7, 24, 47, 0.11);
    transform: translateY(-7px);
}

.sm-solution-card[data-tone="violet"] { --card-color: var(--sm-violet-500); }
.sm-solution-card[data-tone="teal"] { --card-color: #19a899; }
.sm-solution-card[data-tone="gold"] { --card-color: #d89924; }
.sm-solution-card[data-tone="cyan"] { --card-color: #258fba; }
.sm-solution-card[data-tone="rose"] { --card-color: var(--sm-rose-500); }
.sm-solution-card[data-tone="indigo"] { --card-color: #4f66d8; }

.sm-solution-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--card-color);
    background: color-mix(in srgb, var(--card-color) 10%, white);
    border: 1px solid color-mix(in srgb, var(--card-color) 16%, white);
    border-radius: 15px;
    font-size: 20px;
}

.sm-solution-card h3 {
    margin: 25px 0 11px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.32;
}

.sm-solution-card p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 12px;
    line-height: 1.7;
}

.sm-card-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    color: var(--card-color);
    border: 1px solid color-mix(in srgb, var(--card-color) 20%, var(--sm-line));
    border-radius: 50%;
    font-size: 9px;
    opacity: 0;
    transform: rotate(45deg) translateY(5px);
    transition: opacity 240ms ease, transform 240ms var(--sm-ease);
}

.sm-solution-card:hover .sm-card-arrow {
    opacity: 1;
    transform: rotate(45deg) translateY(0);
}

.sm-solution-card--cta {
    justify-content: space-between;
    color: var(--sm-white);
    background:
        radial-gradient(circle at 90% 12%, rgba(79, 209, 197, 0.32), transparent 38%),
        linear-gradient(145deg, var(--sm-blue-700), var(--sm-navy-900));
    border-color: transparent;
}

.sm-solution-card--cta::before {
    display: none;
}

.sm-solution-card--cta h3 {
    margin-top: 20px;
    color: var(--sm-white);
    font-size: 20px;
}

.sm-solution-card--cta > span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: #bcecff;
    font-size: 12px;
    font-weight: 700;
}

/* Platform */
.sm-platform {
    overflow: hidden;
    background: var(--sm-surface);
    border-top: 1px solid #e9eef5;
    border-bottom: 1px solid #e9eef5;
}

.sm-platform-grid {
    display: grid;
    align-items: center;
    gap: clamp(55px, 8vw, 104px);
    grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
}

.sm-check-list {
    display: grid;
    gap: 11px;
    margin-top: 30px;
}

.sm-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(210, 221, 234, 0.75);
    border-radius: 14px;
}

.sm-check-list li > span {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    place-items: center;
    color: var(--sm-white);
    background: linear-gradient(135deg, var(--sm-blue-500), var(--sm-blue-700));
    border-radius: 8px;
    font-size: 9px;
}

.sm-check-list strong {
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 800;
}

.sm-check-list p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 11px;
    line-height: 1.55;
}

.sm-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 27px;
    color: var(--sm-blue-700) !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.sm-text-link i {
    transition: transform 200ms ease;
}

.sm-text-link:hover i {
    transform: translateX(4px);
}

.sm-product-stack {
    position: relative;
    min-height: 505px;
}

.sm-browser--product {
    position: absolute;
    width: 86%;
    border-color: #e0e7f0;
    box-shadow: var(--sm-shadow-md);
}

.sm-browser--back {
    top: 0;
    right: 0;
    opacity: 0.74;
    transform: rotate(3.2deg) scale(0.94);
}

.sm-browser--front {
    bottom: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-1.5deg);
}

.sm-product-badge {
    position: absolute;
    right: -12px;
    bottom: 52px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    color: var(--sm-white);
    background: var(--sm-navy-900);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: var(--sm-shadow-md);
    font-size: 10px;
    line-height: 1.4;
}

.sm-product-badge i {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    color: var(--sm-navy-900);
    background: var(--sm-cyan-400);
    border-radius: 10px;
}

/* Google integration */
.sm-integration {
    background: #ffffff;
}

.sm-integration-card {
    position: relative;
    display: grid;
    align-items: center;
    gap: clamp(42px, 7vw, 92px);
    overflow: hidden;
    padding: clamp(38px, 6vw, 72px);
    color: var(--sm-white);
    background:
        radial-gradient(circle at 12% 84%, rgba(79, 209, 197, 0.18), transparent 34%),
        radial-gradient(circle at 92% 3%, rgba(47, 142, 229, 0.28), transparent 30%),
        linear-gradient(145deg, #081b34, #0d3157);
    border: 1px solid rgba(40, 104, 159, 0.35);
    border-radius: var(--sm-radius-lg);
    box-shadow: var(--sm-shadow-md);
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.sm-integration-visual {
    position: relative;
    display: grid;
    place-items: center;
}

.sm-integration-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 390px);
    filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.24));
}

.sm-integration-halo {
    position: absolute;
    width: 82%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(126, 209, 255, 0.18), transparent 66%);
    border: 1px solid rgba(143, 218, 255, 0.12);
    border-radius: 50%;
    animation: sm-breathe 7s ease-in-out infinite;
}

.sm-integration-copy h2 {
    color: var(--sm-white);
}

.sm-integration-copy > p {
    color: rgba(225, 239, 252, 0.72);
}

.sm-integration-copy ul {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sm-integration-copy li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    color: rgba(239, 248, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.5;
}

.sm-integration-copy li i {
    width: 20px;
    color: #83dfff;
    font-size: 14px;
    text-align: center;
}

/* Profiles */
.sm-profiles {
    background:
        radial-gradient(circle at 4% 15%, rgba(124, 111, 242, 0.07), transparent 30%),
        var(--sm-surface);
    border-top: 1px solid #e9eef5;
}

.sm-profile-tabs {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px;
    background: #eaf0f7;
    border: 1px solid #dde6ef;
    border-radius: 17px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sm-profile-tabs button {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    color: #64758b;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.sm-profile-tabs button:hover {
    color: var(--sm-blue-700);
    background: rgba(255, 255, 255, 0.55);
}

.sm-profile-tabs button[aria-selected="true"] {
    color: var(--sm-blue-700);
    background: var(--sm-white);
    border-color: rgba(31, 111, 178, 0.1);
    box-shadow: 0 8px 20px rgba(7, 24, 47, 0.08);
}

.sm-profile-tabs button[aria-selected="true"] i {
    transform: scale(1.08);
}

.sm-profile-panel {
    display: grid;
    align-items: center;
    gap: clamp(42px, 6vw, 76px);
    padding: clamp(30px, 5vw, 58px);
    background: var(--sm-white);
    border: 1px solid #dde6ef;
    border-radius: 25px;
    box-shadow: var(--sm-shadow-sm);
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.sm-profile-panel.is-entering {
    animation: sm-panel-in 360ms var(--sm-ease) both;
}

.sm-profile-kicker {
    color: var(--sm-blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sm-profile-content h3 {
    margin: 12px 0 13px;
    color: var(--sm-ink);
    font-size: clamp(26px, 3vw, 39px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.sm-profile-content > p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 12px;
    line-height: 1.7;
}

.sm-profile-feature-list {
    display: grid;
    gap: 9px;
    margin-top: 24px;
}

.sm-profile-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--sm-muted);
    font-size: 10px;
    line-height: 1.5;
}

.sm-profile-feature-list > li > i {
    display: grid;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    place-items: center;
    color: var(--sm-white);
    background: var(--sm-cyan-400);
    border-radius: 6px;
    font-size: 7px;
}

.sm-profile-feature-list strong {
    margin-right: 5px;
    color: var(--sm-ink);
    font-weight: 800;
}

.sm-browser--profile {
    align-self: center;
    border-color: #dfe6ef;
    box-shadow: 0 22px 55px rgba(7, 24, 47, 0.17);
}

/* Technology */
.sm-technology {
    background: var(--sm-white);
}

.sm-technology-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sm-technology-grid li {
    display: grid;
    min-height: 116px;
    place-items: center;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--sm-line);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(7, 24, 47, 0.035);
    transition: transform 260ms var(--sm-ease), box-shadow 260ms ease, border-color 260ms ease;
}

.sm-technology-grid li:hover {
    border-color: rgba(31, 111, 178, 0.22);
    box-shadow: 0 18px 40px rgba(7, 24, 47, 0.09);
    transform: translateY(-5px);
}

.sm-technology-grid img {
    width: 125px;
    height: 75px;
    object-fit: contain;
    filter: grayscale(0.18);
    transition: filter 240ms ease, transform 240ms ease;
}

.sm-technology-grid li:hover img {
    filter: grayscale(0);
    transform: scale(1.035);
}

/* Contact */
.sm-contact {
    overflow: hidden;
    color: var(--sm-white);
    background:
        radial-gradient(circle at 15% 14%, rgba(47, 142, 229, 0.25), transparent 31%),
        linear-gradient(145deg, #061426, #0a2748 58%, #07182f);
}

.sm-contact::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.7px, transparent 0.7px);
    background-size: 22px 22px;
    content: "";
    mask-image: linear-gradient(90deg, black, transparent 72%);
    opacity: 0.26;
}

.sm-contact-glow {
    position: absolute;
    right: -150px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.17), transparent 67%);
    border-radius: 50%;
}

.sm-contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: clamp(52px, 8vw, 110px);
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.78fr);
}

.sm-contact-copy h2 {
    color: var(--sm-white);
}

.sm-contact-copy > p {
    color: rgba(225, 239, 252, 0.72);
}

.sm-contact-direct {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.sm-contact-direct a {
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 360px;
    padding: 13px;
    color: var(--sm-white);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    text-decoration: none;
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.sm-contact-direct a:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(138, 220, 255, 0.22);
    transform: translateX(4px);
}

.sm-contact-direct a > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    color: var(--sm-navy-900);
    background: var(--sm-cyan-400);
    border-radius: 11px;
}

.sm-contact-direct a > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.sm-contact-direct small {
    color: rgba(220, 237, 250, 0.58);
    font-size: 9px;
}

.sm-contact-direct strong {
    margin-top: 2px;
    overflow-wrap: anywhere;
    font-size: 12px;
}

.sm-contact-form-card {
    padding: clamp(28px, 4vw, 42px);
    color: var(--sm-ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 25px;
    box-shadow: var(--sm-shadow-lg);
}

.sm-form-heading > span {
    color: var(--sm-blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sm-form-heading h3 {
    margin: 8px 0 5px;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.sm-form-heading p {
    margin: 0 0 24px;
    color: var(--sm-muted);
    font-size: 11px;
}

.sm-field {
    margin-bottom: 14px;
}

.sm-field label {
    display: inline-block;
    margin-bottom: 7px;
    color: #33465f;
    font-size: 10px;
    font-weight: 700;
}

.sm-input-wrap {
    position: relative;
    display: flex;
    min-height: 50px;
    align-items: center;
    overflow: hidden;
    background: #f7f9fc;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sm-input-wrap:focus-within {
    background: var(--sm-white);
    border-color: var(--sm-blue-500);
    box-shadow: 0 0 0 4px rgba(47, 142, 229, 0.11);
}

.sm-input-wrap > i {
    width: 44px;
    flex: 0 0 44px;
    color: #8190a4;
    font-size: 13px;
    text-align: center;
}

.sm-input-wrap input {
    width: 100%;
    height: 48px;
    min-width: 0;
    padding: 0 14px 0 0;
    color: var(--sm-ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 12px;
}

.sm-input-wrap input::placeholder {
    color: #9aa7b8;
}

.sm-phone-prefix {
    display: grid;
    min-width: 58px;
    height: 32px;
    place-items: center;
    margin-left: 9px;
    color: var(--sm-blue-700);
    background: #e9f3ff;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
}

.sm-input-wrap--phone input {
    padding-left: 13px;
}

.sm-field.has-error .sm-input-wrap {
    border-color: #dc5263;
    box-shadow: 0 0 0 3px rgba(220, 82, 99, 0.09);
}

.sm-field-error {
    display: block;
    min-height: 15px;
    padding: 3px 2px 0;
    color: #c63e50;
    font-size: 9px;
}

.sm-button--submit {
    width: 100%;
    margin-top: 4px;
    border: 0;
}

.sm-button--submit:disabled {
    cursor: wait;
    opacity: 0.75;
    transform: none;
}

.sm-button-spinner {
    display: none;
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: sm-spin 700ms linear infinite;
}

.sm-button--submit.is-loading .sm-button-spinner {
    display: block;
}

.sm-form-status {
    display: none;
    margin-top: 13px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
}

.sm-form-status.is-success,
.sm-form-status.is-error {
    display: block;
}

.sm-form-status.is-success {
    color: #126b4c;
    background: #e6f8f1;
    border: 1px solid #bcebd9;
}

.sm-form-status.is-error {
    color: #a83444;
    background: #fff0f2;
    border: 1px solid #f5c7cd;
}

.sm-form-privacy {
    margin: 13px 0 0;
    color: #8593a5;
    font-size: 8px;
    line-height: 1.6;
    text-align: center;
}

.sm-form-privacy a {
    color: var(--sm-blue-700);
    font-weight: 700;
}

.sm-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Footer */
.sm-footer {
    color: rgba(224, 236, 247, 0.72);
    background: #04101f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sm-footer-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.sm-footer-callout > div {
    max-width: 720px;
}

.sm-footer-callout h2 {
    margin-bottom: 0;
    color: var(--sm-white);
    font-size: clamp(26px, 3.4vw, 42px);
}

.sm-footer-grid {
    display: grid;
    gap: 34px;
    padding: 58px 0 45px;
    grid-template-columns: 1.55fr 0.75fr 0.85fr 1fr;
}

.sm-brand--footer {
    margin-bottom: 18px;
}

.sm-footer-brand > p {
    max-width: 340px;
    margin: 0;
    color: rgba(224, 236, 247, 0.6);
    font-size: 11px;
    line-height: 1.7;
}

.sm-footer-social {
    display: flex;
    gap: 8px;
    margin-top: 21px;
}

.sm-footer-social a {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    font-size: 12px;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sm-footer-social a:hover {
    color: var(--sm-navy-900);
    background: var(--sm-cyan-400);
    transform: translateY(-3px);
}

.sm-footer-column h3 {
    margin: 5px 0 18px;
    color: var(--sm-white);
    font-size: 12px;
    font-weight: 800;
}

.sm-footer-column li + li {
    margin-top: 9px;
}

.sm-footer-column li a {
    color: rgba(224, 236, 247, 0.58);
    font-size: 10px;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.sm-footer-column li a:hover {
    color: var(--sm-white);
}

.sm-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sm-footer-contact > a,
.sm-footer-contact > span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 12px;
    color: rgba(224, 236, 247, 0.65);
    font-size: 10px;
    line-height: 1.5;
    text-decoration: none;
}

.sm-footer-contact > a:hover {
    color: var(--sm-white);
}

.sm-footer-contact i {
    width: 15px;
    margin-top: 2px;
    color: #7bd9ef;
    text-align: center;
}

.sm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    color: rgba(224, 236, 247, 0.42);
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    font-size: 9px;
}

.sm-footer-bottom p {
    margin: 0;
}

/* Lightbox */
.sm-lightbox {
    width: min(1240px, calc(100% - 34px));
    max-width: none;
    max-height: calc(100dvh - 34px);
    margin: auto;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 20px;
}

.sm-lightbox::backdrop {
    background: rgba(2, 10, 22, 0.84);
    backdrop-filter: blur(8px);
}

.sm-lightbox-shell {
    overflow: hidden;
    background: var(--sm-navy-900);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.sm-lightbox-header {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 14px 12px 22px;
    color: var(--sm-white);
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-lightbox-header h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.sm-lightbox-header button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--sm-white);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
}

.sm-lightbox-canvas {
    display: grid;
    max-height: calc(100dvh - 110px);
    place-items: center;
    overflow: auto;
    padding: 18px;
    background: #eef3f9;
}

.sm-lightbox-canvas img {
    width: auto;
    max-width: 100%;
    max-height: calc(100dvh - 150px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(7, 24, 47, 0.16);
}

.sm-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 800;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--sm-white);
    background: var(--sm-blue-700);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;
    box-shadow: 0 14px 30px rgba(7, 24, 47, 0.25);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 220ms ease, transform 220ms var(--sm-ease), background 180ms ease;
}

.sm-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sm-back-to-top:hover {
    background: var(--sm-blue-600);
}

/* Progressive animation */
.js .sm-reveal-ready {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms var(--sm-ease), transform 700ms var(--sm-ease);
    transition-delay: var(--sm-reveal-delay, 0ms);
}

.js .sm-reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes sm-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes sm-breathe {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.06); }
}

@keyframes sm-spin {
    to { transform: rotate(360deg); }
}

@keyframes sm-panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1160px) {
    .sm-brand-copy small {
        display: none;
    }

    .sm-primary-nav {
        gap: 16px;
    }

    .sm-nav-links a,
    .sm-nav-login {
        padding-inline: 8px;
        font-size: 12px;
    }

    .sm-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    }

    .sm-floating-card--profiles { left: -6px; }
    .sm-floating-card--live { right: -6px; }

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

    .sm-product-stack {
        min-height: 445px;
    }
}

@media (max-width: 1024px) {
    .sm-nav-inner {
        min-height: 74px;
    }

    .sm-nav-toggle {
        display: inline-flex;
    }

    .sm-primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 24px;
        left: 24px;
        display: grid;
        max-height: calc(100dvh - 94px);
        align-items: stretch;
        gap: 12px;
        overflow-y: auto;
        padding: 16px;
        color: var(--sm-white);
        background: rgba(6, 20, 38, 0.985);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        visibility: hidden;
        transition: opacity 200ms ease, transform 200ms var(--sm-ease), visibility 200ms ease;
    }

    .sm-primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .sm-nav-links {
        display: grid;
    }

    .sm-nav-links a {
        width: 100%;
        min-height: 46px;
        padding: 10px 12px;
    }

    .sm-nav-links a::after {
        display: none;
    }

    .sm-nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .sm-nav-login,
    .sm-nav-actions .sm-button {
        width: 100%;
    }

    .sm-hero {
        min-height: 0;
    }

    .sm-hero-grid,
    .sm-platform-grid,
    .sm-contact-grid {
        grid-template-columns: 1fr;
    }

    .sm-hero-copy {
        max-width: 760px;
        text-align: center;
        justify-self: center;
    }

    .sm-hero-lead {
        margin-inline: auto;
    }

    .sm-hero-actions,
    .sm-hero-assurances {
        justify-content: center;
    }

    .sm-hero-visual {
        width: min(750px, 100%);
        margin-inline: auto;
    }

    .sm-platform-copy {
        max-width: 760px;
    }

    .sm-product-stack {
        width: min(760px, 100%);
        min-height: 520px;
        margin-inline: auto;
    }

    .sm-integration-card {
        grid-template-columns: 0.78fr 1.22fr;
    }

    .sm-profile-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sm-profile-panel {
        grid-template-columns: 1fr;
    }

    .sm-profile-content {
        max-width: 760px;
    }

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

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

    .sm-contact-grid {
        max-width: 760px;
    }

    .sm-contact-copy {
        text-align: center;
    }

    .sm-contact-direct a {
        margin-inline: auto;
        text-align: left;
    }

    .sm-footer-grid {
        grid-template-columns: 1.35fr repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sm-container {
        width: min(100% - 32px, 680px);
    }

    html {
        scroll-padding-top: 78px;
    }

    .sm-brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 13px;
    }

    .sm-brand-mark img {
        width: 39px;
        height: 36px;
    }

    .sm-brand-copy strong {
        font-size: 14px;
    }

    .sm-primary-nav {
        right: 16px;
        left: 16px;
    }

    .sm-hero {
        padding-top: 62px;
        padding-bottom: 106px;
    }

    .sm-hero-grid {
        gap: 42px;
    }

    .sm-hero h1 {
        font-size: clamp(39px, 12vw, 58px);
    }

    .sm-hero-actions .sm-button {
        min-width: min(100%, 230px);
    }

    .sm-hero-assurances {
        display: grid;
        justify-items: start;
        width: fit-content;
        margin-inline: auto;
        text-align: left;
    }

    .sm-browser--hero {
        transform: none;
    }

    .sm-orbit {
        display: none;
    }

    .sm-floating-card--profiles {
        bottom: 3px;
        left: 6px;
    }

    .sm-floating-card--live {
        top: 2px;
        right: 6px;
    }

    .sm-value-grid {
        grid-template-columns: 1fr;
    }

    .sm-value-grid article {
        padding: 20px 24px;
    }

    .sm-value-grid article + article {
        border-top: 1px solid var(--sm-line);
        border-left: 0;
    }

    .sm-section {
        padding: 78px 0;
    }

    .sm-section-heading {
        margin-bottom: 35px;
    }

    .sm-solution-grid {
        grid-template-columns: 1fr;
    }

    .sm-solution-card {
        min-height: 0;
    }

    .sm-product-stack {
        min-height: 440px;
    }

    .sm-browser--product {
        width: 92%;
    }

    .sm-product-badge {
        right: 0;
    }

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

    .sm-integration-visual img {
        width: min(78%, 340px);
    }

    .sm-integration-copy {
        text-align: center;
    }

    .sm-integration-copy ul {
        text-align: left;
    }

    .sm-profile-tabs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .sm-profile-tabs button {
        min-width: 132px;
        scroll-snap-align: start;
    }

    .sm-profile-feature-list {
        grid-template-columns: 1fr;
    }

    .sm-profile-panel {
        padding: 25px 20px;
    }

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

    .sm-contact-grid {
        gap: 44px;
    }

    .sm-footer-callout {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .sm-footer-brand {
        grid-column: 1 / -1;
    }

    .sm-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .sm-container {
        width: min(100% - 24px, 520px);
    }

    .sm-nav-inner {
        min-height: 68px;
    }

    .sm-brand-copy strong {
        font-size: 13px;
    }

    .sm-nav-toggle-label {
        display: none;
    }

    .sm-nav-toggle {
        min-width: 42px;
        min-height: 42px;
        justify-content: center;
    }

    .sm-nav-actions {
        grid-template-columns: 1fr;
    }

    .sm-hero-actions {
        display: grid;
    }

    .sm-hero-actions .sm-button {
        width: 100%;
    }

    .sm-hero-visual {
        padding: 32px 0 66px;
    }

    .sm-browser-bar {
        height: 32px;
    }

    .sm-browser-address {
        max-width: 145px;
    }

    .sm-floating-card {
        padding: 9px 10px;
    }

    .sm-floating-card--profiles {
        right: auto;
        bottom: 4px;
        left: 2px;
    }

    .sm-floating-card--live {
        top: auto;
        right: 2px;
        bottom: 4px;
    }

    .sm-floating-icon {
        display: none;
    }

    .sm-section-heading h2,
    .sm-platform-copy h2,
    .sm-integration-copy h2,
    .sm-contact-copy h2 {
        font-size: clamp(30px, 10vw, 39px);
    }

    .sm-product-stack {
        min-height: 335px;
    }

    .sm-browser--back {
        display: none;
    }

    .sm-browser--front {
        position: relative;
        width: 100%;
        transform: none;
    }

    .sm-product-badge {
        right: 8px;
        bottom: -38px;
    }

    .sm-integration-card {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .sm-integration-copy ul {
        grid-template-columns: 1fr;
    }

    .sm-technology-grid li {
        min-height: 94px;
        padding: 12px;
    }

    .sm-technology-grid img {
        width: 105px;
        height: 64px;
    }

    .sm-contact-form-card {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .sm-form-heading h3 {
        font-size: 22px;
    }

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

    .sm-footer-brand {
        grid-column: auto;
    }

    .sm-image-zoom {
        display: none;
    }

    .sm-lightbox {
        width: calc(100% - 16px);
        max-height: calc(100dvh - 16px);
    }

    .sm-lightbox-canvas {
        padding: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .js .sm-reveal-ready {
        opacity: 1;
        transform: none;
    }
}


