:root {
    --navy: #0b1729;
    --navy-2: #10233b;
    --navy-3: #17324f;

    --blue: #14a3df;
    --blue-2: #31bff0;
    --teal: #19b7b1;

    --white: #ffffff;
    --page: #f5f8fc;
    --soft: #eef5fa;

    --text: #122033;
    --muted: #617086;

    --border: #dce6ef;

    --red-bg: #ffe7e7;
    --red-text: #b42318;

    --yellow-bg: #fff1cf;
    --yellow-text: #986500;

    --green-bg: #e4f7ea;
    --green-text: #217a42;

    --shadow:
        0 22px 65px rgba(9, 31, 54, 0.14);

    --small-shadow:
        0 12px 32px rgba(9, 31, 54, 0.08);

    --radius: 22px;
    --radius-small: 14px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--page);
    color: var(--text);
    line-height: 1.55;
}


img {
    max-width: 100%;
}


a {
    color: inherit;
}


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


.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   HEADER
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.93);
    border-bottom: 1px solid rgba(220, 230, 239, 0.85);
    backdrop-filter: blur(16px);
}


.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
}


.brand img {
    flex: 0 0 auto;
}


.brand-text {
    font-size: 24px;
    letter-spacing: -0.8px;
}


.brand-text span {
    color: var(--blue);
}


.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}


.main-navigation a {
    font-size: 14px;
    font-weight: 700;
    color: #314258;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.main-navigation a:hover {
    color: var(--blue);
}


.main-navigation .nav-cta {
    color: white;
    background: linear-gradient(
        135deg,
        var(--blue),
        var(--teal)
    );
    padding: 11px 18px;
    border-radius: 10px;
    box-shadow:
        0 10px 24px rgba(20, 163, 223, 0.22);
}


.main-navigation .nav-cta:hover {
    color: white;
    transform: translateY(-1px);
}


.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    border-radius: 10px;
    background: var(--soft);
    cursor: pointer;
}


.menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--navy);
}


/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 72% 18%,
            rgba(20, 163, 223, 0.19),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 70%,
            rgba(25, 183, 177, 0.13),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0b1729,
            #10263f 72%,
            #12334f
        );
    color: white;
}


.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 680px;
    padding: 95px 0 92px;
    display: grid;
    grid-template-columns:
        minmax(0, 0.93fr)
        minmax(520px, 1.07fr);
    align-items: center;
    gap: 65px;
}


.eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.eyebrow::before,
.section-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}


.section-eyebrow.light {
    color: #67cff7;
}


.hero h1,
.section h2,
.contact-section h2 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.04;
}


.hero h1 {
    max-width: 660px;
    font-size: clamp(46px, 5.6vw, 76px);
}


.hero h1 span,
.section h2 span,
.contact-section h2 span {
    display: block;
    color: var(--blue-2);
}


.hero-lead {
    max-width: 650px;
    margin: 25px 0 0;
    color: #d8e5f0;
    font-size: 19px;
    line-height: 1.65;
}


.hero-actions,
.demo-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 31px;
}


.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 11px;
    font-weight: 850;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


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


.button-primary {
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--teal)
        );
    box-shadow:
        0 14px 32px rgba(20, 163, 223, 0.26);
}


.button-primary:hover {
    box-shadow:
        0 18px 38px rgba(20, 163, 223, 0.34);
}


.button-outline {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
}


.button.full {
    width: 100%;
}


.hero-points {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
    margin-top: 30px;
}


.hero-point {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d5e2ed;
    font-size: 13px;
    font-weight: 700;
}


.check {
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    color: #69d9ff;
    font-weight: 1000;
}


.gear-decor {
    position: absolute;
    pointer-events: none;
    filter:
        brightness(0)
        invert(65%)
        sepia(59%)
        saturate(1046%)
        hue-rotate(149deg)
        brightness(96%);
}


.gear-decor-one {
    width: 145px;
    right: -26px;
    top: 20px;
    opacity: 0.68;
    animation:
        gear-spin 26s linear infinite;
}


.gear-decor-two {
    width: 92px;
    right: 88px;
    top: -38px;
    opacity: 0.38;
    animation:
        gear-spin-reverse 21s linear infinite;
}


.gear-decor-three {
    width: 120px;
    left: -59px;
    bottom: 52px;
    opacity: 0.17;
    animation:
        gear-spin 30s linear infinite;
}


/* =========================
   PRODUCT PREVIEW
   ========================= */

.product-wrap {
    position: relative;
}


.note {
    position: absolute;
    z-index: 5;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.3;
    font-style: italic;
    transform: rotate(-4deg);
}


.note-top {
    top: -65px;
    right: 80px;
}


.note-arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 25px;
    transform: translateY(7px);
}


.browser-card {
    overflow: hidden;
    border:
        1px solid rgba(255, 255, 255, 0.22);
    border-radius: 19px;
    background: white;
    box-shadow:
        0 38px 90px rgba(0, 0, 0, 0.32);
    transform: rotate(0.7deg);
}


.browser-top {
    height: 43px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 14px;
    background: #edf3f8;
    border-bottom: 1px solid #d9e4ed;
}


.browser-dots {
    display: flex;
    gap: 6px;
}


.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b8c7d4;
}


.browser-address {
    flex: 1;
    max-width: 260px;
    padding: 5px 11px;
    border-radius: 999px;
    background: white;
    color: #8594a5;
    font-size: 10px;
    text-align: center;
}


.dashboard-preview {
    min-height: 420px;
    display: grid;
    grid-template-columns: 145px 1fr;
    color: var(--text);
}


.preview-sidebar {
    padding: 19px 13px;
    background: #f4f7fa;
    border-right: 1px solid #e2ebf2;
}


.preview-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 25px;
    font-weight: 900;
    font-size: 12px;
}


.preview-brand img {
    width: 23px;
    height: 23px;
}


.preview-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
    padding: 9px 10px;
    border-radius: 8px;
    color: #718195;
    font-size: 10px;
    font-weight: 700;
}


.preview-nav-item.active {
    color: white;
    background: var(--navy-2);
}


.preview-main {
    padding: 24px;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfdff
        );
}


.preview-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}


.preview-kicker {
    color: #8b98a8;
    font-size: 10px;
    font-weight: 800;
}


.preview-main h2 {
    margin: 2px 0 0;
    font-size: 24px;
}


.preview-avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--teal)
        );
    font-size: 10px;
    font-weight: 900;
}


.preview-filters {
    display: flex;
    gap: 8px;
    margin: 21px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7edf3;
}


.preview-filters span {
    padding: 6px 9px;
    border-radius: 999px;
    color: #7a8999;
    background: #f2f6f9;
    font-size: 9px;
    font-weight: 800;
}


.preview-filters span.active {
    color: #0b739e;
    background: #dff5ff;
}


.request-list {
    display: grid;
    gap: 10px;
}


.request-item {
    display: grid;
    grid-template-columns:
        38px
        1fr
        auto;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e5edf3;
    border-radius: 11px;
    background: white;
    box-shadow:
        0 5px 14px rgba(12, 37, 61, 0.04);
}


.request-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 16px;
}


.request-icon.plumbing {
    background: #e6f6ff;
}


.request-icon.electrical {
    background: #fff5d8;
}


.request-content {
    min-width: 0;
}


.request-content strong {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
}


.request-content small {
    display: block;
    color: #8997a6;
    font-size: 8px;
}


.priority {
    padding: 5px 7px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap;
}


.priority.high {
    color: var(--red-text);
    background: var(--red-bg);
}


.priority.normal {
    color: var(--yellow-text);
    background: var(--yellow-bg);
}


.priority.low {
    color: var(--green-text);
    background: var(--green-bg);
}


/* =========================
   SHARED SECTIONS
   ========================= */

.section {
    position: relative;
    padding: 105px 0;
}


.section-white {
    background: white;
}


.section-soft {
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f0f7fb,
            #edf5fa
        );
}


.section-heading {
    max-width: 720px;
    margin-bottom: 58px;
}


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


.section-heading.centered .section-eyebrow {
    justify-content: center;
}


.section h2,
.contact-section h2 {
    font-size: clamp(38px, 4.2vw, 56px);
}


.section h2 span {
    color: var(--blue);
}


.section-heading p,
.audience-copy > p,
.bridge-grid p,
.demo-grid p,
.contact-section p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}


/* =========================
   STEPS
   ========================= */

.steps {
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr auto
        1fr;
    align-items: start;
    gap: 15px;
}


.step-card {
    position: relative;
    text-align: center;
}


.step-number {
    position: absolute;
    top: -3px;
    left: 18px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--blue);
    font-size: 12px;
    font-weight: 900;
}


.step-icon {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: var(--blue);
    background: #eff6fb;
    font-size: 35px;
    font-weight: 900;
}


.step-icon img {
    width: 43px;
    height: 43px;
}


.step-card h3 {
    min-height: 48px;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.35;
}


.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}


.step-arrow {
    padding-top: 43px;
    color: #9db4c7;
    font-size: 29px;
}


/* =========================
   FEATURES
   ========================= */

.soft-gear {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
}


.soft-gear-left {
    width: 250px;
    left: -125px;
    bottom: -65px;
}


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


.feature-card {
    min-height: 230px;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 10px 30px rgba(20, 49, 75, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.feature-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 38px rgba(20, 49, 75, 0.08);
}


.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 21px;
    border-radius: 12px;
    color: var(--blue);
    background: #e6f6fd;
    font-size: 24px;
    font-weight: 900;
}


.feature-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}


.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================
   AUDIENCE
   ========================= */

.audience-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(390px, 0.9fr);
    align-items: center;
    gap: 80px;
}


.audience-copy h2 {
    margin: 0;
    font-size: clamp(38px, 4.4vw, 58px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.05;
}


.audience-copy h2 span {
    display: block;
    color: var(--blue);
}


.audience-list {
    display: grid;
    gap: 18px;
    margin-top: 37px;
}


.audience-item {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    align-items: start;
    padding: 19px;
    border-radius: 15px;
    background: var(--page);
    border: 1px solid #e6edf4;
}


.audience-symbol {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 26px;
}


.audience-symbol.water {
    background: #e3f6ff;
}


.audience-symbol.power {
    background: #fff3d4;
}


.audience-item h3 {
    margin: 1px 0 5px;
    font-size: 17px;
}


.audience-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}


.gear-system-card {
    position: relative;
    min-height: 450px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at center,
            #e8f8fe,
            #f4fbfe 55%,
            white
        );
    border: 1px solid #dceaf3;
}


.gear-system {
    position: relative;
    width: 340px;
    height: 340px;
}


.system-gear {
    position: absolute;
}


.system-gear-big {
    width: 220px;
    left: 20px;
    top: 44px;
    opacity: 0.95;
    animation:
        gear-spin 22s linear infinite;
}


.system-gear-mid {
    width: 125px;
    right: 1px;
    bottom: 37px;
    opacity: 0.7;
    animation:
        gear-spin-reverse 18s linear infinite;
}


.system-gear-small {
    width: 95px;
    right: 24px;
    top: 30px;
    opacity: 0.45;
    animation:
        gear-spin 17s linear infinite;
}


.system-center {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    display: grid;
    place-content: center;
    gap: 4px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-3)
        );
    box-shadow:
        0 16px 35px rgba(10, 32, 52, 0.22);
    transform: translate(-50%, -50%);
}


.system-center strong {
    font-size: 18px;
}


.system-center span {
    color: #b7cce0;
    font-size: 11px;
}


.system-label {
    position: absolute;
    padding: 8px 12px;
    border-radius: 999px;
    color: #496075;
    background: white;
    border: 1px solid #dce8f1;
    box-shadow:
        0 8px 20px rgba(20, 49, 75, 0.07);
    font-size: 11px;
    font-weight: 850;
}


.system-label-one {
    left: 30px;
    top: 55px;
}


.system-label-two {
    right: 26px;
    top: 163px;
}


.system-label-three {
    left: 65px;
    bottom: 48px;
}


/* =========================
   BRIDGE
   ========================= */

.bridge-section {
    overflow: hidden;
    color: white;
    background:
        linear-gradient(
            135deg,
            #0d1d31,
            #123551
        );
}


.bridge-grid {
    display: grid;
    grid-template-columns:
        1.05fr
        0.95fr;
    align-items: center;
    gap: 80px;
}


.bridge-grid h2 {
    font-size: clamp(36px, 4vw, 54px);
}


.bridge-grid p {
    color: #c8d8e5;
}


.bridge-flow {
    display: grid;
    gap: 10px;
}


.bridge-box {
    padding: 19px 20px;
    border:
        1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;
    color: #d9e5ee;
    background:
        rgba(255, 255, 255, 0.06);
    text-align: center;
    font-weight: 850;
}


.bridge-box.highlighted {
    color: white;
    border-color:
        rgba(49, 191, 240, 0.55);
    background:
        linear-gradient(
            135deg,
            rgba(20, 163, 223, 0.24),
            rgba(25, 183, 177, 0.14)
        );
}


.bridge-box small {
    display: block;
    margin-top: 5px;
    color: #bed8e9;
    font-weight: 600;
}


.bridge-arrow {
    color: #6ccff5;
    text-align: center;
    font-size: 24px;
}


/* =========================
   DEMO
   ========================= */

.demo-section {
    background: white;
}


.demo-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(420px, 1.1fr);
    align-items: center;
    gap: 85px;
}


.demo-grid h2 {
    font-size: clamp(40px, 4.3vw, 58px);
}


.text-link {
    color: var(--blue);
    font-weight: 850;
    text-decoration: none;
}


.demo-note {
    max-width: 560px;
    color: #8a97a4 !important;
    font-size: 12px !important;
}


.demo-window {
    overflow: hidden;
    border: 1px solid #d9e6ef;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
}


.demo-window-top {
    height: 43px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: #eff4f8;
}


.demo-window-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bdcad5;
}


.demo-window-body {
    padding: 31px;
}


.demo-form-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    font-weight: 900;
}


.demo-form-logo img {
    width: 31px;
}


.demo-window-body h3 {
    margin: 0 0 22px;
    font-size: 24px;
}


.fake-field {
    margin-bottom: 12px;
    padding: 13px 14px;
    border: 1px solid #d9e3eb;
    border-radius: 9px;
    color: #8b98a6;
    background: #fbfdff;
    font-size: 12px;
}


.fake-textarea {
    min-height: 82px;
}


.fake-submit {
    margin-top: 16px;
    padding: 13px 15px;
    border-radius: 9px;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--teal)
        );
    text-align: center;
    font-size: 12px;
    font-weight: 900;
}


/* =========================
   PILOT
   ========================= */

.pilot-section {
    background: var(--soft);
}


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


.pilot-card {
    padding: 29px;
    border: 1px solid #dbe7ef;
    border-radius: 18px;
    background: white;
}


.pilot-number {
    margin-bottom: 35px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.12em;
}


.pilot-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
}


.pilot-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


/* =========================
   CONTACT
   ========================= */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: white;
    background:
        linear-gradient(
            135deg,
            #0b1729,
            #11314d
        );
}


.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        1.1fr
        0.9fr;
    align-items: center;
    gap: 80px;
}


.contact-section h2 {
    max-width: 720px;
}


.contact-section p {
    max-width: 680px;
    color: #c8d8e5;
}


.contact-card {
    padding: 27px;
    border:
        1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background:
        rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}


.contact-card h3 {
    margin: 0 0 8px;
    font-size: 23px;
}


.contact-card p {
    margin: 0 0 20px;
    font-size: 14px;
}


.contact-card small {
    display: block;
    margin-top: 13px;
    color: #a8bdcf;
    font-size: 11px;
    line-height: 1.55;
}


.contact-gear {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
}


.contact-gear-one {
    width: 180px;
    left: -75px;
    bottom: -45px;
    animation:
        gear-spin 29s linear infinite;
}


.contact-gear-two {
    width: 120px;
    right: 35px;
    top: -55px;
    animation:
        gear-spin-reverse 24s linear infinite;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
    padding: 38px 0;
    background: white;
    border-top: 1px solid #e0e8ef;
}


.footer-grid {
    display: grid;
    grid-template-columns:
        1fr auto auto;
    align-items: center;
    gap: 45px;
}


.footer-brand p {
    max-width: 330px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
}


.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}


.footer-links a {
    color: #52657a;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}


.footer-meta {
    display: grid;
    gap: 5px;
    justify-items: end;
    color: #788798;
    font-size: 11px;
}


/* =========================
   ANIMATIONS
   ========================= */

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


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


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1060px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

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

    .product-wrap {
        width: min(760px, 100%);
        margin: 0 auto;
    }

    .steps {
        grid-template-columns:
            repeat(5, 1fr);
        gap: 13px;
    }

    .step-arrow {
        display: none;
    }

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

    .audience-grid,
    .bridge-grid,
    .demo-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .gear-system-card {
        width: min(650px, 100%);
        margin: 0 auto;
    }

}


@media (max-width: 860px) {

    .menu-button {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 20px 20px;
        background: white;
        border-bottom: 1px solid #dce6ef;
        box-shadow:
            0 18px 28px rgba(10, 32, 52, 0.08);
    }

    .main-navigation.open {
        display: flex;
    }

    .main-navigation a {
        padding: 12px 4px;
    }

    .main-navigation .nav-cta {
        margin-top: 7px;
        padding: 12px 14px;
        text-align: center;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 80px;
    }

    .note {
        display: none;
    }

    .steps {
        grid-template-columns:
            repeat(2, 1fr);
        gap: 35px 20px;
    }

    .step-card:last-of-type {
        grid-column: 1 / -1;
        width: min(320px, 100%);
        justify-self: center;
    }

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

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

    .footer-meta {
        justify-items: start;
    }

}


@media (max-width: 650px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .section,
    .contact-section {
        padding: 78px 0;
    }

    .header-inner {
        min-height: 67px;
    }

    .brand-text {
        font-size: 21px;
    }

    .hero-grid {
        padding: 72px 0 74px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .hero-points {
        flex-direction: column;
        gap: 10px;
    }

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

    .preview-sidebar {
        display: none;
    }

    .preview-main {
        padding: 17px;
    }

    .request-item {
        grid-template-columns:
            34px
            1fr;
    }

    .priority {
        grid-column: 2;
        justify-self: start;
    }

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

    .step-card:last-of-type {
        grid-column: auto;
        width: auto;
    }

    .step-card {
        max-width: 350px;
        justify-self: center;
    }

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

    .feature-card {
        min-height: auto;
    }

    .audience-grid {
        gap: 45px;
    }

    .gear-system-card {
        min-height: 370px;
    }

    .gear-system {
        transform: scale(0.84);
    }

    .demo-window-body {
        padding: 22px;
    }

    .demo-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-card {
        padding: 22px;
    }

}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

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

}


:focus-visible {
    outline: 3px solid rgba(20, 163, 223, 0.45);
    outline-offset: 3px;
}
