@charset "utf-8";

:root {
    --bg: #f6f9ff;
    --bg-soft: #ffffff;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.78);
    --panel: rgba(255, 255, 255, 0.72);
    --panel-strong: rgba(255, 255, 255, 0.94);
    --text: #071527;
    --muted: #5d6b82;
    --line: rgba(7, 21, 39, 0.1);
    --brand: #36c5ff;
    --brand-deep: #1459ff;
    --brand-navy: #071527;
    --brand-soft: #eaf4ff;
    --accent: #1998ff;
    --accent-soft: #e6f3ff;
    --success: #0e7af5;
    --shadow: 0 22px 70px rgba(13, 42, 86, 0.12);
    --shadow-sm: 0 10px 30px rgba(13, 42, 86, 0.08);
    --shadow-lg: 0 34px 100px rgba(13, 42, 86, 0.18);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: 1180px;
    --header-offset: 106px;
    --header-offset-compact: 74px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

html.header-compact {
    scroll-padding-top: var(--header-offset-compact);
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    background:
        linear-gradient(135deg, rgba(20, 89, 255, 0.12) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(205deg, rgba(54, 197, 255, 0.14) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 46%, #eef5ff 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--header-offset);
}

body.header-compact {
    padding-top: var(--header-offset-compact);
}

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

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

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

.page-shell {
    position: relative;
    overflow-x: hidden;
}

.page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(116deg, rgba(20, 89, 255, 0.08), rgba(20, 89, 255, 0) 34%),
        linear-gradient(252deg, rgba(54, 197, 255, 0.1), rgba(54, 197, 255, 0) 42%);
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 30;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    box-shadow: 0 14px 36px rgba(7, 21, 39, 0.06);
}

.announcement-bar {
    background: linear-gradient(90deg, #071527, #0f3e98);
    color: #f4fbff;
    font-size: 12px;
    font-weight: 600;
    max-height: 38px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 180ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .announcement-bar {
    max-height: 0;
    opacity: 0;
}

.announcement-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 6px 0;
    align-items: center;
}

.announcement-copy {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.2rem;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 12px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 0 0 auto;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    background: var(--brand-navy);
    box-shadow: var(--shadow-sm);
}

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

.brand-copy strong {
    letter-spacing: 0.03em;
    font-size: 0.88rem;
    line-height: 1.2;
}

.brand-copy span {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.25;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 auto;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.7rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.91rem;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    background: rgba(20, 89, 255, 0.08);
    color: #0f4bd8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.nav-cta {
    min-height: 42px;
    padding: 0.72rem 1.15rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 36px rgba(20, 89, 255, 0.22);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--panel-strong);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    content: "";
    position: relative;
    transition: 180ms ease;
}

.menu-toggle span::before {
    position: absolute;
    top: -6px;
}

.menu-toggle span::after {
    position: absolute;
    top: 6px;
}

.mobile-panel {
    display: none;
    padding-bottom: 0.8rem;
}

.mobile-panel a {
    display: block;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 600;
}

.mobile-panel a + a {
    margin-top: 0.25rem;
}

.mobile-panel-cta {
    background: #1557f6;
    color: white !important;
    text-align: center;
    margin-top: 0.55rem !important;
}

.page-hero {
    position: relative;
    padding: 4.6rem 0 3.6rem;
    overflow: hidden;
    background:
        linear-gradient(142deg, rgba(20, 89, 255, 0.1), rgba(255, 255, 255, 0) 44%),
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(20, 89, 255, 0), rgba(20, 89, 255, 0.18), rgba(20, 89, 255, 0));
}

.page-hero .panel {
    max-width: 880px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 3rem;
}

.page-hero-grid .panel {
    max-width: none;
}

.page-hero-grid h1 {
    font-size: 4.35rem;
    max-width: 13.5ch;
}

.page-hero-grid .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.page-hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(230, 243, 255, 0.78), rgba(255, 255, 255, 0.58));
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.page-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(7, 21, 39, 0.08)),
        linear-gradient(120deg, rgba(54, 197, 255, 0.16), rgba(54, 197, 255, 0) 36%);
    z-index: 1;
}

.page-hero-visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transform: scale(1.01);
}

.hero {
    position: relative;
    min-height: calc(100vh - 98px);
    padding: 5rem 0 6rem;
    display: flex;
    align-items: center;
    overflow: clip;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
        url("../../images/generated/background-saas-environment.png") center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f7fbff 78%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid,
.split-panel,
.steps-grid,
.contact-grid,
.feature-grid,
.pricing-grid,
.testimonial-grid,
.service-grid,
.metric-strip,
.media-grid,
.proof-grid,
.results-grid,
.offer-grid,
.product-grid,
.client-grid,
.visual-grid {
    display: grid;
    gap: 1.15rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    align-items: center;
    gap: 4.5rem;
}

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

.hero-copy .eyebrow {
    margin-bottom: 0.25rem;
}

.split-panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
}

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

.feature-grid,
.pricing-grid,
.testimonial-grid,
.product-grid,
.client-grid,
.results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-strip,
.service-grid,
.proof-grid,
.visual-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.offer-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    background: rgba(230, 243, 255, 0.8);
    color: #0f4bd8;
    border: 1px solid rgba(20, 89, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-head h2,
.display-title {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.display-title {
    font-size: 3rem;
    line-height: 1.05;
}

.hero h1,
.page-hero h1 {
    font-size: 5rem;
    line-height: 0.98;
    margin-top: 1rem;
    letter-spacing: 0;
    max-width: 13ch;
}

.hero h1 span {
    color: #1557f6;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-head h2 {
    font-size: 3rem;
    line-height: 1.05;
    max-width: 15ch;
}

.section-head p {
    max-width: 44ch;
}

.section-head p,
.hero-lead,
.page-hero p,
.card p,
.panel p,
.pricing-card p,
.quote footer,
.faq-item p {
    color: var(--muted);
}

.hero-lead,
.page-hero p {
    font-size: 1.08rem;
    margin-top: 1.35rem;
    max-width: 52ch;
    color: #41506a;
}

.hero-lead-supportive {
    font-size: 0.98rem;
    margin-top: 0.95rem;
    color: #50627b;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: var(--radius-sm);
    padding: 0.92rem 1.25rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    border: 0;
    cursor: pointer;
}

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

.btn-primary {
    background: linear-gradient(135deg, #1459ff, #0f46c8);
    color: white;
    box-shadow: 0 18px 46px rgba(20, 89, 255, 0.26);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
    border: 1px solid rgba(7, 21, 39, 0.1);
    box-shadow: 0 10px 26px rgba(7, 21, 39, 0.06);
}

.hero-actions {
    align-items: center;
    gap: 0.9rem;
}

.hero-actions .btn-primary {
    padding: 1rem 1.55rem;
    box-shadow: 0 22px 48px rgba(37, 111, 255, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
}

.btn-quiet {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(7, 21, 39, 0.08);
    color: #2d4463;
    font-weight: 700;
}

.btn-quiet:hover {
    background: rgba(255, 255, 255, 0.92);
}

.hero-points,
.inline-points,
.stack-list,
.check-list,
.trust-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.hero-points,
.inline-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.hero-points li,
.inline-points li,
.stack-list li,
.check-list li,
.trust-list li,
.pricing-card li,
.card li {
    color: var(--muted);
}

.hero-points li::before,
.inline-points li::before,
.stack-list li::before,
.check-list li::before,
.trust-list li::before,
.pricing-card li::before,
.card li::before {
    content: "-";
    color: #1f74ff;
    font-weight: 800;
    margin-right: 0.55rem;
}

.hero-card,
.panel,
.card,
.contact-card,
.pricing-card,
.section-card,
.accent-band,
.media-card,
.placeholder-shot,
.quote,
.trust-strip {
    border-radius: var(--radius-lg);
}

.hero-card,
.panel,
.card,
.contact-card,
.pricing-card,
.media-card,
.quote,
.trust-strip {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(7, 21, 39, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.hero-card,
.panel,
.contact-card,
.pricing-card,
.media-card,
.quote {
    padding: 1.5rem;
}

.hero-visual-wrap {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-device-frame {
    position: relative;
    width: min(760px, 112%);
    margin-inline: auto;
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
    transform-origin: center;
    transition: transform 260ms ease, box-shadow 260ms ease;
    z-index: 2;
    animation: mockup-float 6s ease-in-out infinite;
}

.hero-device-frame:hover {
    transform: translateY(-8px) scale(1.01) rotate(-3deg);
    box-shadow: 0 38px 110px rgba(7, 21, 39, 0.23);
}

.hero-visual-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 26px;
    background: transparent;
}

.hero-float-card {
    position: absolute;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "icon number"
        "icon label";
    column-gap: 0.7rem;
    align-items: center;
    min-width: 132px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 16px;
    border: 1px solid rgba(7, 21, 39, 0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.hero-float-card strong {
    grid-area: number;
    font-size: 1rem;
    line-height: 1.1;
    color: #0d1b2a;
}

.hero-float-card small {
    grid-area: label;
    color: #50627b;
    font-size: 14px;
    line-height: 1.2;
}

.stat-icon {
    grid-area: icon;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    line-height: 1;
}

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

.stat-icon-blue {
    background: #256fff;
}

.stat-icon-green {
    background: #25b76f;
}

.stat-icon-orange {
    background: #ff9f24;
}

.stat-icon-purple {
    background: #7b55f6;
}

.hero-float-card-one {
    top: 8%;
    left: -5%;
}

.hero-float-card-two {
    top: 9%;
    right: -4%;
    animation-delay: 0.35s;
}

.hero-float-card-three {
    bottom: 16%;
    left: 2%;
    animation-delay: 0.7s;
}

.hero-float-card-four {
    right: 3%;
    bottom: 5%;
    animation-delay: 1.05s;
}

.signal-stack,
.mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.stat-block,
.metric,
.mini-stat {
    padding: 1.15rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(7, 21, 39, 0.08);
    box-shadow: var(--shadow-sm);
}

.stat-block strong,
.metric strong,
.mini-stat strong,
.price {
    display: block;
    font-family: "Space Grotesk", sans-serif;
}

.stat-block strong {
    font-size: 2rem;
}

.metric strong,
.mini-stat strong {
    font-size: 1.45rem;
}

.stat-block span,
.metric span,
.mini-stat span {
    display: block;
    color: var(--muted);
    margin-top: 0.25rem;
}

.service-highlight,
.promo-card {
    padding: 1.35rem;
    border-radius: var(--radius-md);
    background:
        linear-gradient(150deg, rgba(230, 243, 255, 0.82), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(20, 89, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.service-highlight small,
.promo-card small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1f74ff;
    font-weight: 800;
}

.service-highlight h3,
.promo-card h3 {
    margin-top: 0.5rem;
    font-size: 1.25rem;
}

.section {
    position: relative;
    padding: 4rem 0;
}

.hero + .section {
    padding-top: 4.25rem;
}

.page-hero + .section {
    padding-top: 3.4rem;
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(20, 89, 255, 0.12), rgba(54, 197, 255, 0.12));
    color: #0f4bd8;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.card h3,
.card h4,
.pricing-card h3,
.quote h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card .button-row {
    margin-top: auto;
    padding-top: 1rem;
}

.card ul,
.pricing-card ul {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.65rem;
}

.accent-band {
    position: relative;
    overflow: hidden;
    padding: 2.25rem;
    background:
        linear-gradient(135deg, rgba(7, 21, 39, 0.98), rgba(20, 89, 255, 0.95));
    color: #f3fbff;
    box-shadow: var(--shadow-lg);
}

.accent-band::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.accent-band p,
.accent-band li {
    color: rgba(243, 251, 255, 0.88);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.86);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(20, 89, 255, 0.98), rgba(7, 21, 39, 0.98));
    color: white;
    transform: translateY(-8px);
}

.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured .price-note {
    color: rgba(255, 255, 255, 0.88);
}

.plan-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    background: rgba(37, 111, 255, 0.1);
    color: #0f44bf;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-card.featured .plan-label {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.price {
    font-size: 2.2rem;
    line-height: 1;
}

.media-card img,
.client-card img,
.product-card img,
.visual-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.card-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1rem;
    background: #eaf4ff;
    box-shadow: 0 18px 42px rgba(13, 42, 86, 0.12);
}

.contact-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    box-shadow: 0 18px 42px rgba(13, 42, 86, 0.12);
}

.feature-media-panel {
    padding: 1.35rem;
}

.placeholder-shot {
    min-height: 220px;
    padding: 1.25rem;
    background:
        linear-gradient(160deg, rgba(4, 17, 31, 0.92), rgba(37, 111, 255, 0.9)),
        linear-gradient(180deg, rgba(65, 221, 255, 0.18), transparent);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: end;
    box-shadow: var(--shadow);
}

.placeholder-shot strong {
    font-size: 1.1rem;
}

.placeholder-shot span {
    color: rgba(255, 255, 255, 0.82);
}

.trust-strip {
    padding: 1.2rem 1.4rem;
}

.logo-row,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.logo-pill,
.tag {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(13, 27, 42, 0.08);
    font-weight: 700;
    color: #154bc6;
}

.offer-banner {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(150deg, rgba(230, 243, 255, 0.86), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(20, 89, 255, 0.12);
    box-shadow: var(--shadow);
}

.feature-tall {
    min-height: 280px;
}

.contact-strip {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(7, 21, 39, 0.08);
    box-shadow: var(--shadow);
}

.portal-entry-card {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 1rem;
    align-items: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(7, 21, 39, 0.08);
    box-shadow: var(--shadow);
}

.portal-entry-form {
    display: grid;
    grid-template-columns: 1fr 150px auto;
    gap: 0.85rem;
}

.portal-entry-form input,
.portal-entry-form select {
    width: 100%;
    border: 1px solid rgba(13, 27, 42, 0.12);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    color: var(--text);
}

.contact-strip-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    align-items: stretch;
}

.contact-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.contact-chip {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(13, 27, 42, 0.08);
}

.contact-chip strong {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1f74ff;
}

.contact-chip a,
.contact-chip span {
    display: block;
    margin-top: 0.35rem;
    font-weight: 700;
}

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

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(13, 27, 42, 0.08);
    font-weight: 700;
}

.social-link.is-placeholder {
    color: var(--muted);
}

.social-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

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

.team-card,
.polish-card {
    padding: 1.45rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(7, 21, 39, 0.08);
    box-shadow: var(--shadow-sm);
}

.team-role {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(20, 89, 255, 0.08);
    color: #0f4bd8;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-card h3 {
    margin-top: 0.85rem;
    font-size: 1.08rem;
}

.product-grid .card,
.client-grid .card,
.service-grid .card {
    position: relative;
    overflow: hidden;
    padding: 1.45rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64));
    border: 1px solid rgba(7, 21, 39, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-grid .card::before,
.client-grid .card::before,
.service-grid .card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 89, 255, 0.08), rgba(54, 197, 255, 0));
    opacity: 0;
    transition: opacity 180ms ease;
    pointer-events: none;
}

.product-grid .card:hover,
.client-grid .card:hover,
.service-grid .card:hover,
.team-card:hover,
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 89, 255, 0.16);
    box-shadow: var(--shadow);
}

.product-grid .card:hover::before,
.client-grid .card:hover::before,
.service-grid .card:hover::before {
    opacity: 1;
}

.product-grid .card .card-icon,
.client-grid .card .card-icon,
.service-grid .card .card-icon {
    margin-bottom: 0.6rem;
}

.product-grid .card h3,
.client-grid .card h3,
.service-grid .card h3 {
    margin-top: 0.2rem;
}

.product-grid .card p,
.client-grid .card p,
.service-grid .card p {
    margin-top: 0.4rem;
}

.product-grid .card .button-row,
.client-grid .card .button-row,
.service-grid .card .button-row {
    margin-top: 1.2rem;
}

.product-grid .btn-secondary,
.client-grid .btn-secondary,
.service-grid .btn-secondary {
    border-color: rgba(37, 111, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.card-note {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 1rem;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 111, 255, 0.08);
    color: #154bc6;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-visual {
    min-height: 360px;
    padding: 1rem;
    background:
        linear-gradient(132deg, rgba(54, 197, 255, 0.18), rgba(54, 197, 255, 0) 42%),
        linear-gradient(155deg, rgba(7, 21, 39, 0.98), rgba(20, 89, 255, 0.92));
    color: white;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.brand-visual img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.brand-visual div {
    padding: 0.25rem 0.25rem 0.15rem;
}

.brand-visual strong {
    font-size: 1.15rem;
}

.brand-visual p {
    color: rgba(255, 255, 255, 0.84);
    max-width: 42ch;
}

.home-form-section .contact-strip {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.96));
}

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

.faq-item {
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(7, 21, 39, 0.08);
    box-shadow: var(--shadow-sm);
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.contact-list strong {
    display: block;
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1f74ff;
}

.contact-list span,
.contact-list a {
    color: var(--text);
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 0.95rem;
}

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

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

.field label {
    font-weight: 700;
    font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(7, 21, 39, 0.1);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    color: var(--text);
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.site-footer {
    padding: 3rem 0 3.5rem;
    border-top: 1px solid rgba(13, 27, 42, 0.08);
    background: rgba(255, 255, 255, 0.5);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--muted);
    font-weight: 700;
}

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

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

@keyframes mockup-float {
    0%,
    100% {
        transform: rotate(-3deg) translateY(0);
    }
    50% {
        transform: rotate(-3deg) translateY(-10px);
    }
}

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

@media (max-width: 1080px) {
    .hero-grid,
    .page-hero-grid,
    .split-panel,
    .steps-grid,
    .contact-grid,
    .feature-grid,
    .pricing-grid,
    .testimonial-grid,
    .service-grid,
    .metric-strip,
    .media-grid,
    .proof-grid,
    .results-grid,
    .offer-grid,
    .product-grid,
    .client-grid,
    .visual-grid,
    .insight-grid,
    .team-grid,
    .contact-strip-grid,
    .contact-chip-grid,
    .portal-entry-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .primary-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-panel.is-open {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-hero-grid .panel {
        text-align: center;
        max-width: 760px;
        margin-inline: auto;
    }

    .page-hero-grid .inline-points,
    .page-hero-grid .metric-strip {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero-visual {
        max-width: 820px;
        margin-inline: auto;
    }

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

    .hero h1,
    .page-hero h1 {
        font-size: 4rem;
    }

    .hero h1,
    .hero-lead,
    .page-hero p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual-wrap {
        max-width: 760px;
        min-height: 500px;
        margin-inline: auto;
    }

    .hero-float-card-one {
        left: 2%;
    }

    .hero-float-card-two {
        right: 2%;
    }
}

@media (max-width: 720px) {
    :root {
        --header-offset: 74px;
        --header-offset-compact: 74px;
    }

    .announcement-bar {
        display: none;
    }

    .container {
        width: min(var(--container), calc(100% - 1.2rem));
    }

    .announcement-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-copy span {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0 3.6rem;
        background:
            linear-gradient(to bottom, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
            url("../../images/generated/background-saas-environment.png") 62% center / cover no-repeat;
    }

    .page-hero {
        padding: 2.6rem 0 2.8rem;
    }

    .page-hero-grid {
        gap: 1.35rem;
    }

    .page-hero-visual {
        border-radius: 22px;
    }

    .page-hero-visual img {
        aspect-ratio: 4 / 3;
    }

    .hero-grid,
    .page-hero-grid,
    .split-panel,
    .steps-grid,
    .contact-grid,
    .feature-grid,
    .pricing-grid,
    .testimonial-grid,
    .service-grid,
    .metric-strip,
    .media-grid,
    .proof-grid,
    .results-grid,
    .offer-grid,
    .product-grid,
    .client-grid,
        .visual-grid,
        .insight-grid,
        .team-grid,
        .contact-strip-grid,
        .contact-chip-grid,
        .portal-entry-card,
        .signal-stack,
    .mini-stats,
    .form-grid,
    .hero-points,
    .inline-points,
    .portal-entry-form {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .page-hero h1,
    .section-head h2 {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1;
    }

    .page-hero h1,
    .section-head h2,
    .display-title {
        font-size: 2.35rem;
        line-height: 1.08;
    }

    .hero-lead {
        font-size: 1rem;
        margin-top: 0.95rem;
    }

    .hero-lead-supportive {
        display: none;
    }

    .hero-points {
        display: none;
    }

    .hero-actions {
        margin-top: 1.2rem;
        gap: 0.6rem;
    }

    .hero-actions .btn-primary {
        width: 100%;
        padding: 1rem 1.35rem;
    }

    .hero-actions .btn-quiet {
        width: 100%;
        background: rgba(255, 255, 255, 0.88);
    }

    .hero-visual-wrap {
        min-height: auto;
        margin-top: 1.2rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .hero-device-frame {
        grid-column: 1 / -1;
        width: 100%;
        transform: rotate(0deg);
        animation: none;
    }

    .hero-device-frame:hover {
        transform: translateY(-6px) scale(1.01);
    }

    .hero-visual-photo {
        width: 100%;
        margin-left: 0;
        border-radius: 20px;
    }

    .hero-float-card {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0;
        animation: none;
        max-width: 100%;
    }

    .hero-float-card-two,
    .hero-float-card-three {
        margin-left: 0;
    }

    .button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-device-frame,
    .hero-float-card {
        animation: none;
    }

    .hero-device-frame,
    .hero-device-frame:hover {
        transition: none;
        transform: none;
    }
}
