:root {
    --ink: #112033;
    --muted: #617086;
    --paper: #f5f8fb;
    --white: #ffffff;
    --navy: #07111f;
    --navy-2: #0d1d31;
    --teal: #34e4bc;
    --blue: #2168f3;
    --green: #13a77b;
    --coral: #ff6b4a;
    --line: #dce6ef;
    --shadow: 0 24px 70px rgba(17, 32, 51, 0.14);
    --glow: 0 0 34px rgba(52, 228, 188, 0.22);
}

@media (max-width: 980px) and (min-width: 641px) {
    .overview-tabs,
    .feature-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .overview-tabs article:first-child,
    .pricing-grid article.is-highlighted {
        grid-column: span 2;
    }

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

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

    h1 {
        max-width: 780px;
        font-size: clamp(2.25rem, 6vw, 3.7rem);
        line-height: 1.03;
    }

    h2 {
        max-width: 820px;
        font-size: clamp(1.85rem, 4.6vw, 2.75rem);
        line-height: 1.1;
    }

    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (max-width: 640px) {
    .overview-tabs,
    .feature-grid,
    .pricing-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .overview-tabs article:first-child,
    .pricing-grid article.is-highlighted {
        grid-column: auto;
    }

    .process-line {
        grid-template-columns: 1fr;
    }

    .process-line article img {
        height: 150px;
    }

    .process-line span {
        top: 126px;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(1.9rem, 9vw, 2.55rem);
        line-height: 1.08;
    }

    h2 {
        max-width: 100%;
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.14;
    }

    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .hero-dashboard {
        display: none;
        animation: none;
    }

    .status-card strong {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
    }

    .pricing-grid h3 {
        font-size: clamp(2.15rem, 10vw, 2.9rem);
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    background: var(--paper);
    overflow-x: hidden;
}

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

img {
    height: auto;
}

main,
.site-header,
.site-footer,
.hero,
.section {
    width: 100%;
    overflow-wrap: anywhere;
}

.overview-tabs,
.feature-grid,
.process-line,
.platform-grid,
.pricing-grid,
.phone-gallery,
.security-layout,
.contact {
    min-width: 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 5vw, 76px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(220, 230, 239, 0.9);
    backdrop-filter: blur(18px);
    transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(17, 32, 51, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 900;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(17, 32, 51, 0.13);
    overflow: hidden;
}

.brand-mark::after {
    position: absolute;
    inset: -40%;
    content: "";
    background: linear-gradient(120deg, transparent 30%, rgba(52, 228, 188, 0.35), transparent 70%);
    transform: translateX(-120%) rotate(18deg);
    animation: logoShine 5s ease-in-out infinite;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 800;
}

.site-nav a:hover {
    color: var(--blue);
}

.site-nav a {
    position: relative;
    padding-bottom: 4px;
}

.site-nav a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
    min-height: calc(100vh - 77px);
    padding: clamp(64px, 7vw, 116px) clamp(18px, 5vw, 76px);
    color: var(--white);
    background: var(--navy);
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.83) 38%, rgba(7, 17, 31, 0.2) 78%),
        url("../img/getnect-hero-security.png") center right / cover no-repeat;
    transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.02);
    transition: transform 500ms ease-out;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(rgba(52, 228, 188, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 228, 188, 0.08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 75%);
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(105deg, transparent 0%, rgba(52, 228, 188, 0.14) 45%, transparent 56%);
    animation: scanHero 7s ease-in-out infinite;
}

.hero-content {
    max-width: 780px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--teal);
}

h1,
h2,
h3,
p,
summary,
li {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.55rem, 5.6vw, 5.55rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(2rem, 4.1vw, 3.75rem);
    line-height: 1.04;
}

h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1.06;
    letter-spacing: 0;
}

h3 {
    margin: 18px 0 10px;
    font-size: 1.16rem;
}

p {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.72;
}

.hero-copy {
    max-width: 690px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    overflow: hidden;
}

.button::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 62%);
    transform: translateX(-120%);
    transition: transform 520ms ease;
}

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

.button:hover::before {
    transform: translateX(120%);
}

.button.primary:hover {
    box-shadow: 0 20px 48px rgba(33, 104, 243, 0.42), var(--glow);
}

.button.primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 18px 42px rgba(33, 104, 243, 0.34);
}

.button.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.button.dark-text {
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 12px;
    border: 1px solid rgba(52, 228, 188, 0.28);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.trust-row i {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #2674f2, #08a889);
    box-shadow: 0 8px 20px rgba(52, 228, 188, 0.22);
    font-size: 0.86rem;
    font-style: normal;
    line-height: 1;
}

.trust-row span:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 228, 188, 0.58);
    background: rgba(52, 228, 188, 0.1);
}

.hero-dashboard {
    display: grid;
    gap: 16px;
    min-width: 0;
    animation: floatSoft 7s ease-in-out infinite;
}

.status-card,
.status-grid article,
.overview-tabs article,
.feature-grid article,
.pricing-grid article,
.contact-form,
.faq-list details {
    border: 1px solid rgba(220, 230, 239, 0.9);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-grid article {
    border-color: rgba(52, 228, 188, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(52, 228, 188, 0.18), rgba(33, 104, 243, 0.06)),
        var(--white);
    box-shadow: 0 18px 46px rgba(17, 32, 51, 0.08);
}

.feature-grid article:nth-child(2n) {
    background:
        linear-gradient(135deg, rgba(52, 228, 188, 0.22), rgba(19, 167, 123, 0.07)),
        var(--white);
}

.feature-grid article:nth-child(3n) {
    background:
        linear-gradient(135deg, rgba(52, 228, 188, 0.16), rgba(33, 104, 243, 0.08)),
        var(--white);
}

.feature-grid article:hover {
    border-color: rgba(52, 228, 188, 0.46);
    box-shadow: 0 24px 58px rgba(17, 32, 51, 0.12), 0 0 26px rgba(52, 228, 188, 0.14);
}

.feature-grid article:hover p {
    color: var(--muted);
}

.feature-grid article:hover .feature-icon {
    background: linear-gradient(135deg, var(--teal), var(--blue));
}

.status-card {
    position: relative;
    padding: 28px;
    color: var(--white);
    border-color: rgba(52, 228, 188, 0.28);
    background: linear-gradient(135deg, rgba(52, 228, 188, 0.16), rgba(33, 104, 243, 0.12)), rgba(7, 17, 31, 0.82);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.status-card::after {
    position: absolute;
    inset: auto 20px 20px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--teal), transparent);
    animation: pulseBar 2.6s ease-in-out infinite;
}

.status-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 8px rgba(52, 228, 188, 0.14);
}

.status-card p {
    margin: 28px 0 8px;
    color: rgba(255, 255, 255, 0.72);
}

.status-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

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

.status-grid article {
    padding: 18px;
    color: var(--white);
    border-color: rgba(52, 228, 188, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.status-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 228, 188, 0.45);
    background: rgba(52, 228, 188, 0.1);
}

.status-grid small {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.62);
}

.status-grid b {
    color: var(--white);
}

.section {
    padding: clamp(62px, 7vw, 104px) clamp(18px, 5vw, 76px);
}

.section-head {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.overview-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.overview-stagger > article {
    opacity: 0;
    transform: translateY(42px) scale(0.96);
    filter: blur(8px);
}

.overview-stagger.is-visible > article {
    animation: overviewFadeIn 1100ms cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.overview-stagger.is-visible > article:nth-child(1) {
    animation-delay: 0ms;
}

.overview-stagger.is-visible > article:nth-child(2) {
    animation-delay: 260ms;
}

.overview-stagger.is-visible > article:nth-child(3) {
    animation-delay: 520ms;
}

.overview-tabs article,
.feature-grid article {
    position: relative;
    padding: 26px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.overview-tabs article::before,
.feature-grid article::before,
.pricing-grid article::before,
.faq-list details::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(120deg, transparent 0%, rgba(52, 228, 188, 0.08) 46%, transparent 64%);
    transform: translateX(-120%);
    transition: transform 560ms ease;
    pointer-events: none;
}

.overview-tabs article:hover::before,
.feature-grid article:hover::before,
.pricing-grid article:hover::before,
.faq-list details:hover::before {
    transform: translateX(120%);
}

.overview-tabs article:hover,
.feature-grid article:hover,
.faq-list details:hover {
    transform: translateY(-4px);
    border-color: rgba(33, 104, 243, 0.26);
    box-shadow: 0 24px 58px rgba(17, 32, 51, 0.12);
}

.overview-tabs article.is-active,
.overview-tabs article:hover {
    color: var(--white);
    border-color: rgba(52, 228, 188, 0.28);
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.overview-tabs article.is-active p,
.overview-tabs article:hover p {
    color: rgba(255, 255, 255, 0.76);
}

.line-icon,
.feature-icon,
.process-line span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--green));
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(33, 104, 243, 0.22);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-icon {
    font-size: 1.1rem;
}

.overview-tabs article:hover .line-icon,
.feature-grid article:hover .feature-icon {
    transform: rotate(-4deg) scale(1.07);
    box-shadow: 0 16px 34px rgba(52, 228, 188, 0.2);
}

.features {
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stagger-group > article {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
}

.stagger-group.is-visible > article {
    animation: featureStepIn 920ms cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.stagger-group.is-visible > article:nth-child(1) {
    animation-delay: 0ms;
}

.stagger-group.is-visible > article:nth-child(2) {
    animation-delay: 180ms;
}

.stagger-group.is-visible > article:nth-child(3) {
    animation-delay: 360ms;
}

.stagger-group.is-visible > article:nth-child(4) {
    animation-delay: 540ms;
}

.stagger-group.is-visible > article:nth-child(5) {
    animation-delay: 720ms;
}

.stagger-group.is-visible > article:nth-child(6) {
    animation-delay: 900ms;
}

.platforms {
    position: relative;
    color: var(--white);
    background:
        linear-gradient(rgba(52, 228, 188, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 228, 188, 0.045) 1px, transparent 1px),
        linear-gradient(145deg, #0b1025, #111b42 58%, #07111f);
    background-size: 44px 44px, 44px 44px, auto;
    overflow: hidden;
}

.platforms::after,
.security::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, transparent 0%, rgba(52, 228, 188, 0.08) 46%, transparent 58%);
    animation: scanHero 9s ease-in-out infinite;
    pointer-events: none;
}

.platforms .eyebrow {
    color: var(--teal);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 58px;
}

.platform-grid article {
    position: relative;
    display: grid;
    min-height: 250px;
    place-items: center;
    padding: 72px 28px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px 8px 28px 8px;
    background: rgba(255, 255, 255, 0.035);
    overflow: visible;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.platform-grid article::before,
.platform-grid article::after {
    position: absolute;
    width: 72px;
    height: 72px;
    content: "";
    background: var(--blue);
    opacity: 0;
    transition: opacity 220ms ease;
}

.platform-grid article::before {
    left: -34px;
    bottom: -34px;
    border-radius: 0 72px 0 0;
}

.platform-grid article::after {
    top: -34px;
    right: -34px;
    border-radius: 0 0 0 72px;
}

.platform-grid article:hover {
    transform: translateY(-8px);
    border-color: rgba(52, 228, 188, 0.6);
    background: rgba(33, 104, 243, 0.18);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.platform-grid article:hover::before,
.platform-grid article:hover::after {
    opacity: 1;
}

.platform-icon {
    position: absolute;
    top: -30px;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 50%;
    background: #102155;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
    transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.platform-grid article:hover .platform-icon {
    transform: translateY(-4px) scale(1.04);
    background: var(--blue);
    box-shadow: 0 20px 50px rgba(33, 104, 243, 0.36);
}

.platform-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--teal);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 220ms ease;
}

.platform-grid article:hover svg {
    stroke: var(--white);
}

.platform-grid h3 {
    margin-bottom: 0;
    color: var(--white);
    font-size: 1.42rem;
}

.platform-grid p {
    max-width: 430px;
    margin: 8px auto 0;
    color: rgba(255, 255, 255, 0.7);
}

.process {
    position: relative;
    background: #eef5f8;
    overflow: hidden;
}

.process-layout {
    display: block;
}

.process-image {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(52, 228, 188, 0.28);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 26px 70px rgba(17, 32, 51, 0.14);
    overflow: hidden;
}

.process-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 45%, rgba(52, 228, 188, 0.12));
    pointer-events: none;
}

.process-image img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: 64% center;
    transition: transform 400ms ease;
}

.process-image:hover img {
    transform: scale(1.035);
}

.rocket-launch {
    position: absolute;
    top: 66px;
    right: clamp(18px, 5vw, 76px);
    width: 120px;
    height: 220px;
    pointer-events: none;
}

.rocket-launch::before {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 2px;
    height: 150px;
    content: "";
    background: linear-gradient(to top, rgba(33, 104, 243, 0), rgba(33, 104, 243, 0.32), rgba(52, 228, 188, 0));
    transform: translateX(-50%);
    animation: rocketTrail 1.8s ease-in-out infinite;
}

.rocket {
    position: absolute;
    left: 50%;
    bottom: 38px;
    width: 46px;
    height: 74px;
    border-radius: 50% 50% 44% 44%;
    background: linear-gradient(150deg, var(--white), #dfe9ff 58%, var(--blue));
    box-shadow: 0 18px 36px rgba(33, 104, 243, 0.22);
    transform: translateX(-50%) rotate(12deg);
    animation: rocketFly 2.8s ease-in-out infinite;
}

.rocket::before {
    position: absolute;
    top: -18px;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-bottom: 28px solid var(--blue);
    transform: translateX(-50%);
}

.rocket-window {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: var(--teal);
    transform: translateX(-50%);
}

.rocket-fin {
    position: absolute;
    bottom: 2px;
    width: 18px;
    height: 28px;
    background: var(--green);
}

.rocket-fin.left {
    left: -12px;
    border-radius: 18px 0 8px 18px;
    transform: rotate(-18deg);
}

.rocket-fin.right {
    right: -12px;
    border-radius: 0 18px 18px 8px;
    transform: rotate(18deg);
}

.rocket-flame {
    position: absolute;
    left: 50%;
    bottom: -34px;
    width: 22px;
    height: 42px;
    border-radius: 50% 50% 50% 50%;
    background: linear-gradient(to bottom, #fff4a3, #ff820f 48%, rgba(255, 107, 74, 0));
    filter: blur(0.2px);
    transform: translateX(-50%);
    transform-origin: top;
    animation: flameFlicker 0.22s ease-in-out infinite alternate;
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 18px;
}

.process-line::before {
    display: none;
}

.process-line article {
    position: relative;
    min-width: 0;
    display: flex;
    min-height: 420px;
    flex-direction: column;
    padding: 22px;
    border: 1px solid rgba(52, 228, 188, 0.24);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(17, 32, 51, 0.08);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-line article:hover {
    transform: translateY(-8px);
    border-color: rgba(52, 228, 188, 0.48);
    box-shadow: 0 26px 70px rgba(17, 32, 51, 0.16), 0 0 26px rgba(52, 228, 188, 0.14);
}

.process-line article img {
    display: block;
    width: 100%;
    height: 145px;
    margin-top: auto;
    border-radius: 14px;
    object-fit: cover;
    object-position: center;
    transition: transform 420ms ease;
}

.process-line article:hover img {
    transform: scale(1.06);
}

.process-line span {
    position: static;
    box-shadow: 0 0 0 8px #eef5f8;
    animation: stepPulse 3.4s ease-in-out infinite;
}

.process-line h3 {
    margin: 22px 0 8px;
}

.process-line p {
    margin: 0 0 22px;
    font-size: 0.96rem;
}

.process-line article:nth-child(2) span {
    animation-delay: 0.25s;
}

.process-line article:nth-child(3) span {
    animation-delay: 0.5s;
}

.process-line article:nth-child(4) span {
    animation-delay: 0.75s;
}

.app-preview {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: center;
    background:
        linear-gradient(rgba(33, 104, 243, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 104, 243, 0.035) 1px, transparent 1px),
        var(--white);
    background-size: 42px 42px, 42px 42px, auto;
}

.preview-copy {
    max-width: 760px;
}

.light-list li {
    color: var(--ink);
}

.phone-stage {
    display: grid;
    place-items: center;
    min-width: 0;
}

.phone-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(170px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.phone-mockup {
    position: relative;
    width: min(100%, 310px);
    padding: 10px;
    border: 1px solid rgba(33, 104, 243, 0.18);
    border-radius: 18px;
    background: linear-gradient(145deg, #eaf3ff, #ffffff);
    box-shadow: 0 28px 80px rgba(17, 32, 51, 0.18), 0 0 38px rgba(52, 228, 188, 0.16);
    animation: floatSoft 6.8s ease-in-out infinite;
}

.phone-mockup::before {
    position: absolute;
    inset: 28px -18px auto auto;
    width: 72px;
    height: 72px;
    content: "";
    border-radius: 50%;
    background: rgba(52, 228, 188, 0.18);
    filter: blur(10px);
}

.phone-screen {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 640px;
    padding: 26px 18px 20px;
    border: 1px solid rgba(17, 32, 51, 0.12);
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
}

.phone-back {
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--ink);
    font-size: 1.9rem;
    line-height: 1;
}

.phone-logo {
    justify-self: center;
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin-top: 24px;
}

.phone-screen h3 {
    margin: 4px 0 0;
    text-align: center;
    font-size: 1.08rem;
}

.phone-screen p {
    margin: -4px 0 8px;
    text-align: center;
    font-size: 0.76rem;
    line-height: 1.45;
}

.input-row {
    display: flex;
    min-height: 38px;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    color: #3d4655;
    border: 1px solid rgba(17, 32, 51, 0.82);
    border-radius: 8px;
    font-size: 0.82rem;
    background: #fbfdff;
}

.input-row span {
    width: 18px;
    color: var(--blue);
    text-align: center;
}

.verify-link {
    justify-self: end;
    margin-top: -8px;
    color: #047b8d;
    font-size: 0.72rem;
}

.phone-gallery .phone-mockup {
    width: 100%;
    max-width: none;
    padding: 8px;
    animation-delay: 0.1s;
}

.phone-gallery .phone-mockup::before {
    display: none;
}

.phone-gallery .phone-screen {
    min-height: 520px;
    gap: 9px;
    padding: 20px 14px 16px;
}

.phone-gallery .phone-logo {
    width: 66px;
    height: 66px;
}

.phone-gallery .input-row {
    min-height: 34px;
    font-size: 0.74rem;
}

.phone-gallery .phone-screen h3 {
    font-size: 0.94rem;
}

.phone-gallery .phone-screen p {
    font-size: 0.68rem;
}

.app-mini-screen {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    gap: 14px;
    padding: 18px 14px;
    border: 1px solid rgba(17, 32, 51, 0.14);
    border-radius: 14px;
    background: linear-gradient(180deg, #f4fbff, #eef8fb);
    box-shadow: 0 24px 60px rgba(17, 32, 51, 0.12);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.app-mini-screen:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 228, 188, 0.5);
    box-shadow: 0 30px 76px rgba(17, 32, 51, 0.18), 0 0 30px rgba(52, 228, 188, 0.16);
}

.mini-top,
.calendar-head,
.overview-row,
.chat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mini-top {
    color: #101c2e;
    font-size: 0.9rem;
}

.app-mini-screen h3 {
    margin: 6px 0 0;
    font-size: 1.02rem;
}

.app-mini-screen p,
.app-mini-screen small {
    margin: 0;
    color: #314158;
    font-size: 0.68rem;
    line-height: 1.45;
}

.app-mini-screen strong {
    margin-top: 4px;
    font-size: 0.74rem;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.quick-grid div {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 2px 8px;
    align-items: center;
    min-height: 58px;
    padding: 10px;
    border: 1px solid rgba(17, 32, 51, 0.14);
    border-radius: 8px;
    background: #ffffff;
}

.quick-grid span,
.chat-row > span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 8px;
    background: rgba(52, 228, 188, 0.18);
    color: #007f75;
}

.quick-grid small {
    grid-column: 2;
    color: #101c2e;
}

.overview-row {
    padding: 10px 0;
    border-bottom: 1px solid rgba(17, 32, 51, 0.22);
    color: #101c2e;
    font-size: 0.72rem;
}

.overview-row span {
    color: #008d80;
}

.overview-row em {
    margin-left: auto;
    color: #64748b;
    font-style: normal;
}

.mini-search,
.mini-select {
    min-height: 36px;
    padding: 9px 10px;
    border: 1px solid rgba(17, 32, 51, 0.8);
    border-radius: 10px;
    background: #ffffff;
    color: #3d4655;
    font-size: 0.72rem;
}

.chat-row {
    align-items: flex-start;
}

.chat-row div {
    flex: 1;
    min-width: 0;
}

.chat-row b {
    display: block;
    font-size: 0.74rem;
}

.chat-row p {
    margin-top: 3px;
    color: #101c2e;
}

.chat-row em {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #008d6f;
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 800;
}

.calendar-head {
    justify-content: center;
    gap: 28px;
    color: #101c2e;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    overflow: hidden;
    border: 1px solid rgba(17, 32, 51, 0.14);
    border-radius: 8px;
    background: #ffffff;
}

.calendar-grid b,
.calendar-grid span {
    display: grid;
    min-height: 31px;
    place-items: center;
    border-right: 1px solid rgba(17, 32, 51, 0.12);
    border-bottom: 1px solid rgba(17, 32, 51, 0.12);
    color: #101c2e;
    font-size: 0.58rem;
}

.calendar-grid b:nth-child(7n),
.calendar-grid span:nth-child(7n) {
    border-right: 0;
}

.calendar-grid .active-day {
    color: #ffffff;
    background: linear-gradient(135deg, #07879a, #34e4bc);
    font-weight: 900;
}

.day-card {
    display: grid;
    gap: 6px;
    margin-top: auto;
    padding: 12px;
    border: 1px solid rgba(17, 32, 51, 0.14);
    border-radius: 8px;
    background: #ffffff;
}

.phone-screen button {
    min-height: 42px;
    margin-top: 10px;
    color: var(--white);
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #07879a, #006f80);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
}

.phone-screen small {
    margin-top: 6px;
    color: #00798a;
    text-align: center;
    font-size: 0.72rem;
}

.security {
    position: relative;
    color: var(--white);
    background:
        linear-gradient(rgba(52, 228, 188, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 228, 188, 0.06) 1px, transparent 1px),
        linear-gradient(145deg, var(--navy), var(--navy-2));
    background-size: 40px 40px, 40px 40px, auto;
    overflow: hidden;
}

.security .eyebrow {
    color: var(--teal);
}

.security p,
.security li {
    color: rgba(255, 255, 255, 0.75);
}

.security-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    line-height: 1.6;
}

.check-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    content: "✓";
    color: var(--navy);
    border-radius: 50%;
    background: var(--teal);
    font-size: 0.8rem;
    font-weight: 900;
}

.data-safety-note {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(52, 228, 188, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.data-safety-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.05rem;
}

.data-safety-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.security-console {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(52, 228, 188, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.security-console::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(120deg, transparent, rgba(52, 228, 188, 0.08), transparent);
    transform: translateX(-110%);
    animation: panelShine 6.5s ease-in-out infinite;
    pointer-events: none;
}

.security-console div {
    display: grid;
    grid-template-columns: 14px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.45);
}

.security-console span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 18px rgba(52, 228, 188, 0.8);
}

.security-console b {
    color: var(--white);
    min-width: 0;
}

.security-console em {
    color: var(--teal);
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.pricing {
    background: linear-gradient(180deg, #f5f8fb, #ffffff);
}

.pricing-title {
    position: relative;
    display: inline-block;
    width: fit-content;
    padding-bottom: 14px;
}

.pricing-title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 96px;
    height: 4px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pricing-grid article {
    position: relative;
    display: flex;
    min-height: 420px;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 40px 30px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-grid article:hover {
    transform: translateY(-8px);
    border-color: rgba(33, 104, 243, 0.26);
    box-shadow: 0 24px 58px rgba(17, 32, 51, 0.12);
}

.pricing-grid article.is-highlighted {
    color: var(--white);
    border-color: rgba(33, 104, 243, 0.45);
    background:
        linear-gradient(135deg, rgba(52, 228, 188, 0.1), rgba(255, 255, 255, 0.06)),
        var(--blue);
}

.price-top {
    display: flex;
    width: 100%;
    min-height: 112px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(97, 112, 134, 0.26);
}

.pricing-grid article.is-highlighted .price-top {
    border-bottom-color: rgba(255, 255, 255, 0.28);
}

.plan-ribbon {
    position: absolute;
    top: 50px;
    right: 0;
    min-width: 154px;
    padding: 12px 18px 12px 28px;
    color: var(--white);
    background: var(--blue);
    font-size: 0.88rem;
    font-weight: 900;
    text-align: center;
}

.plan-ribbon::before {
    position: absolute;
    top: 0;
    left: -28px;
    width: 0;
    height: 0;
    content: "";
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-right: 28px solid var(--blue);
}

.pricing-grid article.is-highlighted .plan-ribbon {
    color: var(--white);
    background: #ff820f;
}

.pricing-grid article.is-highlighted .plan-ribbon::before {
    border-right-color: #ff820f;
}

.price-label {
    min-height: 56px;
    margin: 22px 0 20px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.pricing-grid h3 {
    margin: 0 0 6px;
    color: inherit;
    font-size: clamp(3rem, 5vw, 4.35rem);
    line-height: 1;
}

.price-top p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 700;
}

.pricing-grid article.is-highlighted .price-top p,
.pricing-grid article.is-highlighted .price-label {
    color: rgba(255, 255, 255, 0.84);
}

.price-features {
    display: grid;
    gap: 14px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.price-features li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    line-height: 1.45;
    font-weight: 700;
}

.price-features li::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "✓";
    color: var(--blue);
    font-weight: 900;
}

.pricing-grid article.is-highlighted .price-features li {
    color: var(--white);
}

.pricing-grid article.is-highlighted .price-features li::before {
    color: var(--white);
}

.pricing-grid .button {
    width: 100%;
    margin-top: auto;
}

.pricing-grid article .button {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 14px 32px rgba(33, 104, 243, 0.22);
}

.pricing-grid article .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(33, 104, 243, 0.34), 0 0 28px rgba(52, 228, 188, 0.18);
}

.pricing-grid article.is-highlighted .button {
    color: var(--blue);
    background: var(--white);
    box-shadow: 0 16px 36px rgba(5, 18, 40, 0.18);
}

.pricing-grid article.is-highlighted .button:hover {
    color: var(--navy);
    background: linear-gradient(135deg, var(--white), #dffbf5);
    box-shadow: 0 22px 52px rgba(5, 18, 40, 0.24), 0 0 30px rgba(255, 255, 255, 0.2);
}

.pricing-note {
    max-width: 820px;
    margin: 22px 0 0;
    font-size: 0.95rem;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    position: relative;
    padding: 20px 22px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    margin-bottom: 0;
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
    background: var(--white);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: #fbfdff;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(33, 104, 243, 0.16);
    border-color: var(--blue);
}

.notice {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.notice.success {
    color: #07543d;
    background: rgba(19, 167, 123, 0.14);
}

.notice.error {
    color: #8d2f1d;
    background: rgba(255, 107, 74, 0.16);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 28px clamp(18px, 5vw, 76px);
    color: rgba(255, 255, 255, 0.68);
    border-top: 1px solid rgba(52, 228, 188, 0.18);
    background:
        linear-gradient(rgba(52, 228, 188, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 228, 188, 0.045) 1px, transparent 1px),
        linear-gradient(145deg, var(--navy), var(--navy-2));
    background-size: 40px 40px, 40px 40px, auto;
}

.site-footer div {
    display: grid;
    gap: 6px;
}

.site-footer span {
    color: var(--white);
    font-weight: 900;
}

.site-footer small {
    color: rgba(255, 255, 255, 0.62);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--teal);
}

.legal-nav {
    gap: 18px;
}

.legal-page {
    background: var(--paper);
}

.legal-hero {
    padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 76px);
    color: var(--white);
    background:
        linear-gradient(rgba(52, 228, 188, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 228, 188, 0.06) 1px, transparent 1px),
        linear-gradient(145deg, var(--navy), var(--navy-2));
    background-size: 42px 42px, 42px 42px, auto;
}

.legal-hero .eyebrow {
    color: var(--teal);
}

.legal-hero h1 {
    max-width: 850px;
    font-size: clamp(2.25rem, 6vw, 4.1rem);
    line-height: 1.04;
}

.legal-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.76);
}

.legal-content {
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 34px);
}

.legal-content h2 {
    margin-top: 18px;
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
}

.legal-content p {
    margin: 0;
}

.legal-content a {
    color: var(--blue);
    font-weight: 800;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 760ms ease, transform 760ms ease;
}

.reveal:nth-of-type(2n) {
    transition-delay: 80ms;
}

.reveal:nth-of-type(3n) {
    transition-delay: 140ms;
}

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

@keyframes scanHero {
    0% {
        transform: translateX(-120%);
    }

    48%,
    100% {
        transform: translateX(120%);
    }
}

@keyframes pulseBar {
    0%,
    100% {
        opacity: 1;
        transform: scaleX(1);
    }

    50% {
        opacity: 0.55;
        transform: scaleX(0.72);
    }
}

@keyframes floatSoft {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes logoShine {
    0%,
    58% {
        transform: translateX(-120%) rotate(18deg);
    }

    100% {
        transform: translateX(120%) rotate(18deg);
    }
}

@keyframes panelShine {
    0%,
    55% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(110%);
    }
}

@keyframes stepPulse {
    0%,
    100% {
        box-shadow: 0 0 0 8px #eef5f8, 0 0 0 0 rgba(33, 104, 243, 0.18);
    }

    50% {
        box-shadow: 0 0 0 8px #eef5f8, 0 0 0 12px rgba(33, 104, 243, 0);
    }
}

@keyframes rocketFly {
    0%,
    100% {
        transform: translate(-50%, 10px) rotate(12deg);
    }

    50% {
        transform: translate(-50%, -18px) rotate(12deg);
    }
}

@keyframes flameFlicker {
    from {
        transform: translateX(-50%) scaleY(0.82);
        opacity: 0.78;
    }

    to {
        transform: translateX(-50%) scaleY(1.08);
        opacity: 1;
    }
}

@keyframes rocketTrail {
    0%,
    100% {
        opacity: 0.35;
        transform: translateX(-50%) scaleY(0.78);
    }

    50% {
        opacity: 0.9;
        transform: translateX(-50%) scaleY(1);
    }
}

@keyframes featureStepIn {
    0% {
        opacity: 0;
        transform: translateY(34px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes overviewFadeIn {
    0% {
        opacity: 0;
        transform: translateY(42px) scale(0.96);
        filter: blur(8px);
    }

    60% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .hero,
    .overview-tabs,
    .feature-grid,
    .platform-grid,
    .pricing-grid,
    .process-layout,
    .app-preview,
    .security-layout,
    .contact {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero-dashboard {
        display: none;
    }

    .hero-bg {
        opacity: 0.72;
        background-position: 62% center;
    }

    .hero::before {
        mask-image: linear-gradient(rgba(0, 0, 0, 0.8), transparent 88%);
    }

    .process-image img {
        height: 330px;
    }

    .rocket-launch {
        top: 52px;
        right: 22px;
        width: 86px;
        height: 150px;
        opacity: 0.42;
    }

    .rocket {
        width: 34px;
        height: 56px;
    }

    .rocket::before {
        top: -14px;
        border-left-width: 17px;
        border-right-width: 17px;
        border-bottom-width: 22px;
    }

    .rocket-window {
        top: 13px;
        width: 14px;
        height: 14px;
        border-width: 2px;
    }

    .rocket-fin {
        width: 14px;
        height: 22px;
    }

    .rocket-flame {
        bottom: -27px;
        width: 17px;
        height: 32px;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding-block: 12px;
    }

    .brand {
        font-size: 1rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .nav-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .site-nav {
        position: absolute;
        top: 64px;
        left: 16px;
        right: 16px;
        display: none;
        min-width: 0;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding: 10px 4px;
    }

    .hero {
        gap: 28px;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .hero-bg {
        opacity: 0.52;
        background-position: 72% center;
    }

    h1 {
        max-width: 12ch;
        font-size: clamp(2.12rem, 11vw, 3.2rem);
        line-height: 1.03;
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.55rem);
        line-height: 1.1;
    }

    h3 {
        font-size: 1.06rem;
    }

    p {
        font-size: 0.98rem;
        line-height: 1.64;
    }

    .hero-copy {
        margin-top: 20px;
        font-size: 1rem;
    }

    .hero-actions {
        margin-top: 26px;
    }

    .trust-row {
        gap: 8px;
        margin-top: 22px;
    }

    .trust-row span {
        flex: 1 1 130px;
        min-height: 46px;
        text-align: center;
    }

    .status-card,
    .overview-tabs article,
    .feature-grid article,
    .platform-grid article,
    .pricing-grid article,
    .contact-form,
    .faq-list details {
        box-shadow: 0 16px 40px rgba(17, 32, 51, 0.1);
    }

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

    .status-card {
        padding: 22px;
    }

    .status-card strong {
        font-size: 2.1rem;
    }

    .section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .section-head {
        margin-bottom: 22px;
    }

    .overview-tabs article,
    .feature-grid article,
    .platform-grid article,
    .pricing-grid article {
        padding: 22px;
    }

    .platform-grid {
        gap: 46px;
        margin-top: 54px;
    }

    .platform-grid article {
        min-height: 220px;
        padding-top: 64px;
    }

    .process-line {
        gap: 20px;
    }

    .process-line article {
        min-height: 0;
        padding-left: 0;
    }

    .process-line::before {
        display: none;
    }

    .process-image img {
        height: 240px;
        object-position: 70% center;
    }

    .security-layout {
        gap: 28px;
    }

    .app-preview {
        gap: 34px;
    }

    .phone-mockup {
        width: min(100%, 292px);
    }

    .phone-screen {
        min-height: 590px;
    }

    .security-console {
        padding: 14px;
    }

    .security-console div {
        grid-template-columns: 12px 1fr;
        gap: 10px;
    }

    .security-console em {
        grid-column: 2;
        white-space: normal;
    }

    .pricing-grid article {
        min-height: 0;
        padding: 30px 26px 24px;
    }

    .pricing-grid h3 {
        font-size: clamp(2.7rem, 14vw, 3.7rem);
    }

    .price-top {
        min-height: 100px;
        padding-bottom: 22px;
    }

    .plan-ribbon {
        top: 38px;
        min-width: 136px;
        padding: 10px 14px 10px 24px;
        font-size: 0.8rem;
    }

    .plan-ribbon::before {
        left: -24px;
        border-top-width: 20px;
        border-bottom-width: 20px;
        border-right-width: 24px;
    }

    .pricing-note {
        font-size: 0.9rem;
    }
}

@media (max-width: 560px) {
    .site-header,
    .hero,
    .section,
    .legal-hero,
    .site-footer {
        padding-inline: 16px;
    }

    .hero {
        padding-top: 46px;
        padding-bottom: 50px;
    }

    .hero-bg {
        opacity: 0.42;
        background-position: 76% center;
    }

    .eyebrow {
        font-size: 0.72rem;
        line-height: 1.35;
    }

    h1 {
        max-width: 11ch;
        font-size: clamp(2rem, 12vw, 2.65rem);
    }

    .legal-hero h1 {
        max-width: 100%;
        font-size: clamp(2rem, 10vw, 2.85rem);
    }

    h2 {
        font-size: clamp(1.68rem, 9vw, 2.18rem);
    }

    .button {
        width: 100%;
        min-height: 48px;
        padding-inline: 16px;
        text-align: center;
    }

    .trust-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .status-grid article,
    .overview-tabs article,
    .feature-grid article,
    .platform-grid article,
    .pricing-grid article,
    .faq-list details,
    .contact-form {
        padding: 18px;
    }

    .line-icon,
    .feature-icon,
    .process-line span {
        width: 42px;
        height: 42px;
    }

    .platform-icon {
        width: 72px;
        height: 72px;
        top: -26px;
    }

    .platform-icon svg {
        width: 36px;
        height: 36px;
    }

    .process-line article {
        padding-left: 0;
    }

    .process-image {
        border-radius: 14px;
    }

    .process-image img {
        height: 180px;
    }

    .rocket-launch {
        display: none;
    }

    .check-list li {
        padding-left: 30px;
    }

    .data-safety-note {
        padding: 18px;
    }

    .phone-mockup {
        width: min(100%, 272px);
        animation: none;
    }

    .phone-screen {
        min-height: 560px;
        padding-inline: 14px;
    }

    .phone-logo {
        width: 74px;
        height: 74px;
    }

    .pricing-title::after {
        width: 78px;
    }

    .price-label {
        min-height: 0;
        margin-top: 18px;
    }

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

@media (max-width: 380px) {
    .site-header,
    .hero,
    .section,
    .legal-hero,
    .site-footer {
        padding-inline: 12px;
    }

    .site-nav {
        left: 12px;
        right: 12px;
    }

    h1 {
        max-width: 10ch;
        font-size: 1.70rem;
    }

    .legal-hero h1 {
        max-width: 100%;
        font-size: 1.65rem;
    }

    h2 {
        font-size: 1.56rem;
    }

    p,
    .hero-copy {
        font-size: 0.94rem;
    }

    .status-card,
    .overview-tabs article,
    .feature-grid article,
    .platform-grid article,
    .pricing-grid article,
    .faq-list details,
    .contact-form,
    .data-safety-note {
        padding: 16px;
    }

    .pricing-grid h3 {
        font-size: 2.34rem;
    }

    .price-top {
        min-height: 88px;
        gap: 12px;
        padding-bottom: 18px;
    }

    .plan-ribbon {
        top: 34px;
        min-width: 118px;
        padding: 9px 10px 9px 20px;
        font-size: 0.72rem;
    }

    .plan-ribbon::before {
        left: -20px;
        border-top-width: 18px;
        border-bottom-width: 18px;
        border-right-width: 20px;
    }

    .price-features {
        gap: 12px;
        margin-bottom: 22px;
    }

    .price-features li {
        padding-left: 24px;
        font-size: 0.92rem;
    }

    .security-console div {
        padding: 14px;
    }

    .phone-mockup {
        width: min(100%, 252px);
    }

    .phone-screen {
        min-height: 540px;
    }

}

@media (max-width: 980px) and (min-width: 641px) {
    .overview-tabs,
    .feature-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .overview-tabs article:first-child,
    .pricing-grid article.is-highlighted {
        grid-column: span 2;
    }

    h1 {
        max-width: 780px;
        font-size: clamp(2.25rem, 6vw, 3.7rem);
        line-height: 1.03;
    }

    h2 {
        max-width: 820px;
        font-size: clamp(1.85rem, 4.6vw, 2.75rem);
        line-height: 1.1;
    }
}

@media (max-width: 640px) {
    .overview-tabs,
    .feature-grid,
    .pricing-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .overview-tabs article:first-child,
    .pricing-grid article.is-highlighted {
        grid-column: auto;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(1.9rem, 9vw, 2.55rem);
        line-height: 1.08;
    }

    h2 {
        max-width: 100%;
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.14;
    }

    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .hero-dashboard {
        animation: none;
    }

    .status-card strong {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
    }

    .pricing-grid h3 {
        font-size: clamp(2.15rem, 10vw, 2.9rem);
    }
}

@media (max-width: 640px) {
    .feature-grid {
        gap: 12px;
    }

    .feature-grid article {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 10px 14px;
        align-items: center;
        min-height: 104px;
        padding: 16px;
    }

    .feature-grid article h3 {
        margin: 0;
        font-size: 0.98rem;
    }

    .feature-grid article p {
        grid-column: 2;
        margin: -4px 0 0;
        color: transparent;
        font-size: 0;
        line-height: 0;
    }

    .feature-grid article p::after {
        content: attr(data-mobile-copy);
        display: block;
        color: var(--muted);
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
    }

    .feature-grid article:active,
    .feature-grid article:hover {
        border-color: rgba(52, 228, 188, 0.45);
        box-shadow: 0 18px 44px rgba(17, 32, 51, 0.18);
    }

    .feature-grid article:active p::after,
    .feature-grid article:hover p::after {
        color: var(--muted);
    }
}

.feature-grid article:hover {
    border-color: rgba(52, 228, 188, 0.5);
    box-shadow: 0 24px 58px rgba(17, 32, 51, 0.12), 0 0 26px rgba(52, 228, 188, 0.14);
}

.process-line {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.process-line article {
    padding: 22px;
}

.process-line span {
    position: static;
}

.process-line article img {
    height: 145px;
    margin-top: auto;
}

@media (max-width: 1180px) {
    .process-line {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
}

@media (max-width: 640px) {
    .process-line {
        grid-template-columns: 1fr;
    }

    .process-line article {
        min-height: 0;
        padding: 18px;
    }

    .process-line h3 {
        margin-top: 18px;
    }

    .process-line article img {
        height: 180px;
        margin-top: 18px;
    }
}

@media (max-width: 980px) {
    .hero-dashboard {
        display: none !important;
    }

    .hero h1 {
        max-width: 720px;
        font-size: clamp(1.8rem, 6.4vw, 2.75rem);
        line-height: 1.08;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: clamp(1.45rem, 7.2vw, 1.95rem);
        line-height: 1.12;
    }
}

.pricing-grid .price-top {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 154px;
    gap: 14px;
}

.pricing-grid .plan-ribbon {
    position: static;
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    padding: 9px 18px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(33, 104, 243, 0.18);
}

.pricing-grid .plan-ribbon::before {
    display: none;
}

.pricing-grid article.is-highlighted .plan-ribbon {
    box-shadow: 0 12px 28px rgba(255, 130, 15, 0.26);
}

@media (min-width: 981px) {
    .pricing-grid h3 {
        font-size: clamp(3rem, 4.4vw, 4rem);
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.site-header,
main,
section,
.section,
.hero,
.site-footer {
    max-width: 100%;
}

.hero,
.section,
.security,
.platforms,
.app-preview,
.pricing,
.site-footer {
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html,
    body,
    .hero,
    .section,
    .security,
    .platforms,
    .app-preview,
    .pricing,
    .site-footer {
        overflow-x: hidden;
    }
}

@media (max-width: 640px) {
    html,
    body {
        position: relative;
        min-width: 0;
        overflow-x: hidden;
    }

    .site-header,
    main,
    .hero,
    .section,
    .site-footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-bg {
        right: 0;
        left: 0;
        transform: none;
    }

    .hero::after {
        display: none;
    }

    .hero-content,
    .overview-tabs,
    .feature-grid,
    .process-layout,
    .process-line,
    .phone-gallery,
    .platform-grid,
    .pricing-grid,
    .security-layout,
    .contact,
    .overview-tabs article,
    .feature-grid article,
    .process-line article,
    .platform-grid article,
    .pricing-grid article,
    .app-mini-screen,
    .phone-mockup {
        min-width: 0;
        max-width: 100%;
    }

    img,
    .process-line article img,
    .process-image img,
    .phone-logo,
    .brand-mark img {
        display: block;
        max-width: 100%;
    }

    .process-line article {
        overflow: hidden;
    }

    .process-line article img {
        width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 900px) {
    .app-preview {
        display: grid;
        grid-template-columns: 1fr !important;
    }

    .phone-gallery {
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 420px;
        margin-right: auto;
        margin-left: auto;
    }

    .phone-gallery .phone-mockup,
    .app-mini-screen {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    body * {
        max-width: 100%;
    }

    .site-header,
    main,
    .hero,
    .section,
    .site-footer {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .hero,
    .section {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .hero-bg,
    .hero::before {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
    }

    .overview-tabs,
    .feature-grid,
    .process-line,
    .phone-gallery,
    .platform-grid,
    .pricing-grid,
    .security-layout,
    .contact {
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
    }

    .process-line article,
    .phone-gallery .phone-mockup,
    .app-mini-screen {
        overflow: hidden;
    }
}
