:root {
    --bg: #07111f;
    --bg-deep: #050b14;
    --surface: #0b1727;
    --surface-2: #101f33;
    --surface-3: #142740;
    --border: rgba(148, 163, 184, 0.15);
    --border-strong: rgba(148, 163, 184, 0.26);
    --text: #f7fbff;
    --muted: #9cadc2;
    --muted-2: #71839a;
    --cyan: #6ee7f9;
    --blue: #38bdf8;
    --indigo: #818cf8;
    --success: #5ee7b5;
    --danger: #fb7185;
    --gradient: linear-gradient(135deg, var(--cyan), var(--blue) 45%, var(--indigo));
    --container: 1180px;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    --header-height: 80px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: rgba(56, 189, 248, 0.3);
    color: #fff;
}

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

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

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

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: #fff;
    color: #000;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
    background: rgba(5, 11, 20, 0.82);
    border-color: var(--border);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    width: 188px;
    flex: 0 0 auto;
}

.brand img {
    width: 188px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: #bdc9d8;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    border-radius: 99px;
    background: var(--gradient);
    transition: right 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    right: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 750;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
.menu-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(56, 189, 248, 0.32);
    outline-offset: 3px;
}

.button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-primary {
    color: #06101d;
    background: var(--gradient);
    box-shadow: 0 12px 34px rgba(56, 189, 248, 0.18);
}

.button-primary:hover {
    box-shadow: 0 16px 44px rgba(56, 189, 248, 0.28);
}

.button-secondary {
    color: #e9f4ff;
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(8px);
}

.button-secondary:hover {
    border-color: rgba(110, 231, 249, 0.34);
    background: rgba(110, 231, 249, 0.07);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 13px;
}

.button-large {
    min-height: 56px;
    padding-inline: 26px;
    border-radius: 14px;
    font-size: 15px;
}

.header-cta {
    margin-left: 4px;
}

.menu-button,
.mobile-nav {
    display: none;
}

.hero {
    min-height: 870px;
    padding-top: 165px;
    padding-bottom: 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 28%, rgba(56, 189, 248, 0.08), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #081320 68%, #091522 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 88%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, #091522 88%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-orb-one {
    width: 380px;
    height: 380px;
    right: -90px;
    top: 160px;
    background: rgba(99, 102, 241, 0.14);
}

.hero-orb-two {
    width: 300px;
    height: 300px;
    left: 8%;
    top: 420px;
    background: rgba(14, 165, 233, 0.08);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.93fr 1.07fr;
    gap: 68px;
    align-items: center;
}

.hero-copy {
    padding-top: 8px;
}

.eyebrow,
.section-kicker {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border: 1px solid rgba(110, 231, 249, 0.14);
    border-radius: 999px;
    background: rgba(110, 231, 249, 0.045);
    letter-spacing: 0.07em;
    text-transform: none;
    font-size: 11px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(94, 231, 181, 0.09), 0 0 15px rgba(94, 231, 181, 0.8);
}

.hero h1 {
    margin: 28px 0 22px;
    font-size: clamp(48px, 5.3vw, 74px);
    line-height: 0.99;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.hero h1 span {
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-lead {
    max-width: 610px;
    margin: 0;
    color: #aebed0;
    font-size: 18px;
    line-height: 1.72;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.avatar-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #06101d;
    background: var(--gradient);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.06);
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    color: #eaf3fc;
    font-size: 13px;
}

.hero-trust span {
    color: var(--muted-2);
    margin-top: 2px;
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.dashboard-window {
    position: relative;
    width: 630px;
    max-width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.17);
    border-radius: 20px;
    overflow: hidden;
    background: #0a1524;
    box-shadow: 0 44px 110px rgba(0, 0, 0, 0.48), 0 0 80px rgba(56, 189, 248, 0.055);
    transform: rotateY(-3deg) rotateX(1.3deg);
    transform-origin: center;
}

.dashboard-window::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.window-topbar {
    height: 46px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid var(--border);
    background: #0d1a2b;
}

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

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

.window-dots span:nth-child(1) { background: #fb7185; }
.window-dots span:nth-child(2) { background: #fbbf24; }
.window-dots span:nth-child(3) { background: #34d399; }

.window-title {
    color: #95a7bc;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.live-badge {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #86efc1;
    font-size: 8px;
    font-weight: 700;
}

.live-badge span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
}

.dashboard-body {
    min-height: 420px;
    display: grid;
    grid-template-columns: 54px 1fr;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-right: 1px solid var(--border);
    background: #08121e;
}

.sidebar-logo {
    width: 22px;
    height: 22px;
    margin-bottom: 8px;
    border-radius: 7px;
    background: var(--gradient);
    opacity: 0.9;
}

.side-item {
    width: 18px;
    height: 18px;
    border: 1px solid #33465e;
    border-radius: 5px;
}

.side-item.active {
    border-color: transparent;
    background: rgba(56, 189, 248, 0.24);
    box-shadow: inset 0 0 0 1px rgba(110, 231, 249, 0.28);
}

.dashboard-content {
    padding: 18px 20px 17px;
    background:
        radial-gradient(circle at 85% 4%, rgba(56, 189, 248, 0.05), transparent 26%),
        #0a1524;
}

.dash-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.dash-heading .mini-label,
.dash-heading strong {
    display: block;
}

.dash-heading .mini-label {
    color: #667a92;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.dash-heading strong {
    margin-top: 2px;
    font-size: 15px;
}

.date-pill {
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: #8ea1b8;
    background: rgba(255, 255, 255, 0.02);
    font-size: 8px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.metric-card {
    min-width: 0;
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
}

.metric-card span,
.metric-card strong,
.metric-card small {
    display: block;
}

.metric-card span {
    color: #71849b;
    font-size: 8px;
}

.metric-card strong {
    margin: 4px 0 3px;
    font-size: 15px;
}

.metric-card small {
    font-size: 7px;
}

.positive {
    color: var(--success);
}

.chart-card {
    margin-top: 10px;
    padding: 13px 14px 6px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.02);
}

.chart-title {
    display: flex;
    justify-content: space-between;
    color: #aebed0;
    font-size: 9px;
    font-weight: 700;
}

.chart-title small {
    color: #667a92;
    font-size: 7px;
    font-weight: 500;
}

.line-chart {
    width: 100%;
    height: 153px;
    margin-top: 3px;
    overflow: visible;
}

.chart-grid path {
    stroke: rgba(148, 163, 184, 0.09);
    stroke-width: 1;
}

.area-path {
    fill: url(#area);
}

.main-line {
    fill: none;
    stroke: url(#line);
    stroke-width: 3;
    stroke-linecap: round;
}

.target-line {
    fill: none;
    stroke: rgba(148, 163, 184, 0.42);
    stroke-width: 1.5;
    stroke-dasharray: 5 5;
}

.chart-dot {
    fill: #6ee7f9;
    stroke: #0a1524;
    stroke-width: 3;
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
    padding: 9px 11px;
    border: 1px solid rgba(129, 140, 248, 0.14);
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.055), rgba(129, 140, 248, 0.04));
}

.insight-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    color: #07111f;
    background: var(--gradient);
    font-size: 10px;
}

.insight-card span,
.insight-card strong {
    display: block;
}

.insight-card span {
    color: #6ee7f9;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.insight-card strong {
    margin-top: 2px;
    color: #bfccda;
    font-size: 8px;
    font-weight: 600;
}

.floating-chip {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.19);
    border-radius: 13px;
    background: rgba(12, 25, 42, 0.92);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
}

.floating-chip small,
.floating-chip strong {
    display: block;
}

.floating-chip small {
    color: #71849b;
    font-size: 8px;
}

.floating-chip strong {
    margin-top: 1px;
    font-size: 10px;
}

.chip-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #062015;
    background: #5ee7b5;
    font-size: 11px;
    font-weight: 900;
}

.chip-icon.purple {
    color: #0c1026;
    background: linear-gradient(135deg, #a5b4fc, #6ee7f9);
}

.chip-one {
    left: -42px;
    bottom: 82px;
    animation: float 5s ease-in-out infinite;
}

.chip-two {
    right: -25px;
    top: 78px;
    animation: float 5s 1.4s ease-in-out infinite;
}

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

.hero-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 62px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.hero-bottom p {
    margin: 0;
    color: #66788d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.industry-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
    color: #8fa1b4;
    font-size: 13px;
    font-weight: 700;
}

.industry-list i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #3b4c60;
}

.problem-strip {
    background: #091522;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.problem-grid {
    display: grid;
    grid-template-columns: 0.83fr 1.17fr;
    gap: 90px;
    align-items: start;
}

.problem-heading h2,
.section-heading h2,
.method-copy h2,
.results-intro h2,
.tech-copy h2,
.about-copy h2,
.ideal-card h2,
.faq-copy h2,
.contact-copy h2 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 26px;
}

.problem-list > div {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.problem-list span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
}

.problem-list p {
    margin: 0;
    color: #9aacc0;
    font-size: 14px;
    line-height: 1.55;
}

.services {
    background: #07111f;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: end;
    gap: 70px;
    margin-bottom: 52px;
}

.section-heading p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 17px;
}

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

.service-card {
    position: relative;
    min-height: 400px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
        var(--surface);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    right: -85px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(110, 231, 249, 0.26);
    background:
        linear-gradient(145deg, rgba(56, 189, 248, 0.045), rgba(129, 140, 248, 0.012)),
        var(--surface);
}

.service-card:hover::before {
    opacity: 1;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-number {
    color: #53677f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(110, 231, 249, 0.18);
    border-radius: 14px;
    color: var(--cyan);
    background: rgba(56, 189, 248, 0.055);
}

.service-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    max-width: 420px;
    margin: 34px 0 13px;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.service-card > p {
    max-width: 480px;
    margin: 0;
    color: #93a5b9;
    font-size: 15px;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c5d1de;
    font-size: 13px;
}

.service-card li span {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #061620;
    background: var(--cyan);
    font-size: 10px;
    font-weight: 900;
}

.method {
    background:
        radial-gradient(circle at 10% 50%, rgba(56, 189, 248, 0.06), transparent 30%),
        #091522;
    border-top: 1px solid rgba(148, 163, 184, 0.07);
    border-bottom: 1px solid rgba(148, 163, 184, 0.07);
}

.method-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.method-copy {
    position: sticky;
    top: 125px;
}

.method-copy p,
.results-intro p,
.tech-copy p,
.about-copy p,
.faq-copy p,
.contact-copy > p {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 27px;
    color: #e6f6ff;
    font-size: 14px;
    font-weight: 750;
}

.text-link span {
    color: var(--cyan);
    transition: transform 0.2s ease;
}

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

.method-steps {
    position: relative;
    display: grid;
    gap: 2px;
}

.method-steps::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 49px;
    bottom: 49px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(110, 231, 249, 0.5), rgba(129, 140, 248, 0.08));
}

.method-step {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 26px 0;
}

.step-number {
    z-index: 1;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(110, 231, 249, 0.22);
    border-radius: 15px;
    color: var(--cyan);
    background: #0b1a2a;
    box-shadow: 0 0 0 8px #091522;
    font-size: 11px;
    font-weight: 900;
}

.method-step h3 {
    margin: 2px 0 7px;
    font-size: 20px;
}

.method-step p {
    margin: 0;
    color: #8fa1b5;
    font-size: 14px;
}

.results {
    background: #07111f;
}

.results-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 78px;
    padding: 58px;
    border: 1px solid rgba(110, 231, 249, 0.14);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        radial-gradient(circle at 83% 10%, rgba(99, 102, 241, 0.12), transparent 27%),
        radial-gradient(circle at 10% 90%, rgba(56, 189, 248, 0.08), transparent 35%),
        #0a1727;
    box-shadow: var(--shadow);
}

.results-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.09;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.16) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.results-intro,
.result-metrics,
.results-note {
    position: relative;
    z-index: 1;
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 28px;
}

.result-metric {
    padding-top: 18px;
    border-top: 1px solid var(--border-strong);
}

.result-metric strong {
    display: block;
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 50px;
    line-height: 1;
    letter-spacing: -0.055em;
}

.result-metric strong span {
    font-size: 25px;
}

.result-metric p {
    margin: 12px 0 0;
    color: #9dafc1;
    font-size: 13px;
    line-height: 1.55;
}

.results-note {
    grid-column: 1 / -1;
    margin: -30px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: #64778e;
    font-size: 10px;
}

.technology {
    background: #091522;
    border-top: 1px solid rgba(148, 163, 184, 0.07);
    border-bottom: 1px solid rgba(148, 163, 184, 0.07);
}

.tech-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 92px;
    align-items: center;
}

.architecture-flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.architecture-flow span {
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #b6c3d2;
    background: rgba(255, 255, 255, 0.025);
    font-size: 10px;
    font-weight: 700;
}

.architecture-flow i {
    color: #546980;
    font-size: 12px;
    font-style: normal;
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 24px;
}

.tech-cloud span {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: #b8c7d7;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 700;
    transform: translateY(calc((var(--i) % 3) * 2px));
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tech-cloud span:hover {
    color: #fff;
    border-color: rgba(110, 231, 249, 0.28);
    background: rgba(56, 189, 248, 0.06);
    transform: translateY(-3px);
}

.about {
    background: #07111f;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 96px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 465px;
    display: grid;
    place-items: center;
}

.about-visual::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 1px dashed rgba(110, 231, 249, 0.18);
    animation: rotate 30s linear infinite;
}

.about-visual::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    border: 1px solid rgba(129, 140, 248, 0.08);
}

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

.founder-card {
    position: relative;
    z-index: 2;
    width: 260px;
    min-height: 318px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(110, 231, 249, 0.19);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 20%, rgba(56, 189, 248, 0.1), transparent 35%),
        #0b192a;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.founder-avatar {
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    color: #06101d;
    background: var(--gradient);
    box-shadow: 0 18px 40px rgba(56, 189, 248, 0.18);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.founder-lines {
    width: 100%;
    display: grid;
    gap: 8px;
    margin-top: 28px;
}

.founder-lines span {
    height: 7px;
    border-radius: 99px;
    background: #182a3e;
}

.founder-lines span:nth-child(1) { width: 70%; margin-inline: auto; }
.founder-lines span:nth-child(2) { width: 90%; margin-inline: auto; }
.founder-lines span:nth-child(3) { width: 58%; margin-inline: auto; }

.founder-badge {
    margin-top: 24px;
    padding: 8px 11px;
    border: 1px solid rgba(110, 231, 249, 0.18);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(56, 189, 248, 0.05);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-code {
    position: absolute;
    z-index: 3;
    padding: 10px 13px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #9fb1c5;
    background: rgba(10, 23, 39, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
}

.code-one {
    top: 74px;
    right: 18px;
}

.code-two {
    bottom: 64px;
    left: 0;
}

.about-copy p strong {
    color: #e6f4ff;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.about-tags span {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #b3c0cf;
    background: rgba(255, 255, 255, 0.02);
    font-size: 11px;
    font-weight: 700;
}

.ideal {
    background: #07111f;
    padding-top: 0;
}

.ideal-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
    padding: 44px 48px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.045), rgba(129, 140, 248, 0.02));
}

.ideal-card h2 {
    font-size: clamp(30px, 3vw, 42px);
}

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

.ideal-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    color: #adbdcd;
    background: rgba(4, 11, 20, 0.25);
    font-size: 12px;
}

.ideal-list span {
    display: grid;
    place-items: center;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 50%;
    color: #06131d;
    background: var(--success);
    font-size: 10px;
    font-weight: 900;
}

.faq {
    background: #091522;
    border-top: 1px solid rgba(148, 163, 184, 0.07);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 100px;
    align-items: start;
}

.faq-copy {
    position: sticky;
    top: 125px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-list details {
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 0;
    cursor: pointer;
    list-style: none;
    color: #e4eef8;
    font-size: 16px;
    font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    position: relative;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: #9cafc4;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.faq-list summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary {
    color: var(--cyan);
}

.faq-list details[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.faq-list details[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    min-height: 0;
    overflow: hidden;
    margin: -5px 45px 25px 0;
    color: #8fa1b5;
    font-size: 14px;
    line-height: 1.7;
}

.contact {
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.08), transparent 32%),
        #07111f;
}

.contact-orb {
    position: absolute;
    width: 480px;
    height: 480px;
    right: -230px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.12);
    filter: blur(95px);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 86px;
    align-items: start;
}

.contact-copy h2 {
    max-width: 530px;
}

.contact-info {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.contact-info > a,
.contact-location {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #d9e5f0;
}

.contact-icon {
    display: grid;
    place-items: center;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(110, 231, 249, 0.16);
    border-radius: 11px;
    color: var(--cyan);
    background: rgba(56, 189, 248, 0.045);
    font-size: 14px;
    font-weight: 900;
}

.contact-info small,
.contact-info strong {
    display: block;
}

.contact-info small {
    color: #687b92;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-info strong {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 700;
}

.contact-form {
    position: relative;
    z-index: 2;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(11, 23, 39, 0.92);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.field {
    margin-bottom: 17px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: #bac8d7;
    font-size: 11px;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.17);
    border-radius: 11px;
    color: #edf6ff;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
    height: 48px;
    padding: 0 14px;
}

.field textarea {
    min-height: 124px;
    padding: 13px 14px;
    resize: vertical;
}

.field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #7890a8 50%), linear-gradient(135deg, #7890a8 50%, transparent 50%);
    background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.field option {
    color: #fff;
    background: #0d1a2b;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #50647a;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(110, 231, 249, 0.52);
    background: rgba(56, 189, 248, 0.035);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.06);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: rgba(251, 113, 133, 0.72);
}

.field-error {
    display: block;
    min-height: 14px;
    margin-top: 4px;
    color: #fda4af;
    font-size: 10px;
}

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

.consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: -2px 0 20px;
    color: #71849a;
    font-size: 10px;
    line-height: 1.45;
}

.consent input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #38bdf8;
}

.consent a {
    color: #9ddff6;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.submit-button {
    width: 100%;
    border: 0;
}

.submit-button.is-loading {
    pointer-events: none;
    opacity: 0.82;
}

.button-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(6, 16, 29, 0.26);
    border-top-color: #06101d;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

.submit-button.is-loading .button-label,
.submit-button.is-loading svg {
    display: none;
}

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

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

.form-status.success {
    display: block;
    color: #b5f5d9;
    border: 1px solid rgba(94, 231, 181, 0.22);
    background: rgba(94, 231, 181, 0.06);
}

.form-status.error {
    display: block;
    color: #fecdd3;
    border: 1px solid rgba(251, 113, 133, 0.23);
    background: rgba(251, 113, 133, 0.06);
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #050b14;
}

.footer-main {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    padding-top: 62px;
    padding-bottom: 48px;
}

.footer-brand img {
    width: 185px;
}

.footer-brand p {
    max-width: 390px;
    margin: 19px 0 0;
    color: #71839a;
    font-size: 13px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links > div {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-links strong {
    margin-bottom: 5px;
    color: #d6e0eb;
    font-size: 12px;
}

.footer-links a {
    color: #71839a;
    font-size: 11px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 20px;
    padding-bottom: 23px;
    border-top: 1px solid rgba(148, 163, 184, 0.09);
}

.footer-bottom p {
    margin: 0;
    color: #52647a;
    font-size: 10px;
}

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 17px;
    color: #062016;
    background: #5ee7b5;
    box-shadow: 0 16px 40px rgba(32, 201, 151, 0.27);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 45px rgba(32, 201, 151, 0.37);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.15s; }
.reveal-delay-3 { transition-delay: 0.22s; }

.privacy-page {
    min-height: 100vh;
    padding: 130px 0 80px;
    background: var(--bg);
}

.privacy-content {
    max-width: 840px;
    margin-inline: auto;
}

.privacy-content h1 {
    margin: 16px 0 20px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.privacy-content h2 {
    margin: 38px 0 10px;
    font-size: 22px;
}

.privacy-content p,
.privacy-content li {
    color: var(--muted);
}

.privacy-content .button {
    margin-top: 28px;
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 20px;
    }

    .hero-layout {
        gap: 35px;
    }

    .dashboard-window {
        width: 570px;
    }

    .chip-one {
        left: -10px;
    }

    .chip-two {
        right: -8px;
    }

    .problem-grid,
    .method-layout,
    .tech-layout,
    .about-layout,
    .faq-layout,
    .contact-layout {
        gap: 65px;
    }

    .results-card {
        gap: 50px;
        padding: 48px;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 72px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-button {
        display: grid;
        gap: 5px;
        place-content: center;
        width: 43px;
        height: 43px;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 11px;
        background: rgba(255, 255, 255, 0.025);
        cursor: pointer;
    }

    .menu-button span {
        width: 18px;
        height: 1.5px;
        border-radius: 99px;
        background: #d9e6f1;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-button[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .menu-button[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-button[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: grid;
        gap: 4px;
        padding: 16px 20px 24px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: rgba(5, 11, 20, 0.98);
        backdrop-filter: blur(18px);
    }

    .mobile-nav[hidden] {
        display: none;
    }

    .mobile-nav > a:not(.button) {
        padding: 12px 4px;
        color: #bdc9d8;
        font-size: 15px;
        font-weight: 650;
    }

    .mobile-nav .button {
        margin-top: 10px;
    }

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

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

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

    .hero h1 {
        font-size: clamp(54px, 8vw, 78px);
    }

    .hero-visual {
        min-height: 520px;
    }

    .dashboard-window {
        width: min(720px, 94%);
    }

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

    .industry-list {
        justify-content: flex-start;
    }

    .problem-grid,
    .method-layout,
    .tech-layout,
    .about-layout,
    .faq-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        gap: 45px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading p {
        max-width: 600px;
    }

    .method-copy,
    .faq-copy {
        position: static;
    }

    .method-layout,
    .faq-layout {
        gap: 50px;
    }

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

    .results-note {
        margin-top: 0;
    }

    .tech-layout {
        gap: 42px;
    }

    .tech-cloud {
        justify-content: flex-start;
        padding: 0;
    }

    .about-layout {
        gap: 50px;
    }

    .about-visual {
        order: 2;
    }

    .ideal-card {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-layout {
        gap: 50px;
    }

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

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 88px 0;
    }

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

    .brand,
    .brand img {
        width: 170px;
    }

    .hero {
        padding-top: 115px;
        padding-bottom: 55px;
    }

    .eyebrow {
        max-width: 100%;
        font-size: 9px;
        line-height: 1.35;
    }

    .hero h1 {
        margin-top: 23px;
        font-size: clamp(42px, 13vw, 61px);
    }

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

    .hero-actions {
        display: grid;
    }

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

    .hero-trust {
        align-items: flex-start;
    }

    .hero-visual {
        min-height: 390px;
        margin-inline: -5px;
    }

    .dashboard-window {
        width: 100%;
        transform: none;
        border-radius: 15px;
    }

    .window-topbar {
        height: 38px;
        padding-inline: 10px;
    }

    .window-title {
        font-size: 8px;
    }

    .live-badge {
        font-size: 6px;
    }

    .dashboard-body {
        grid-template-columns: 36px 1fr;
        min-height: 325px;
    }

    .dashboard-sidebar {
        gap: 11px;
        padding-top: 13px;
    }

    .sidebar-logo {
        width: 17px;
        height: 17px;
    }

    .side-item {
        width: 13px;
        height: 13px;
    }

    .dashboard-content {
        padding: 12px;
    }

    .dash-heading {
        margin-bottom: 10px;
    }

    .dash-heading strong {
        font-size: 11px;
    }

    .date-pill {
        padding: 4px 6px;
        font-size: 6px;
    }

    .metric-row {
        gap: 5px;
    }

    .metric-card {
        padding: 7px;
    }

    .metric-card span { font-size: 6px; }
    .metric-card strong { font-size: 10px; }
    .metric-card small { font-size: 5px; }

    .chart-card {
        padding: 8px 8px 4px;
    }

    .line-chart {
        height: 112px;
    }

    .insight-card {
        padding: 6px 8px;
    }

    .floating-chip {
        min-width: 125px;
        padding: 8px 10px;
    }

    .chip-one {
        left: 6px;
        bottom: -7px;
    }

    .chip-two {
        right: 6px;
        top: 21px;
    }

    .hero-bottom {
        margin-top: 56px;
    }

    .industry-list {
        gap: 10px;
        font-size: 11px;
    }

    .problem-heading h2,
    .section-heading h2,
    .method-copy h2,
    .results-intro h2,
    .tech-copy h2,
    .about-copy h2,
    .ideal-card h2,
    .faq-copy h2,
    .contact-copy h2 {
        font-size: clamp(31px, 9vw, 42px);
    }

    .problem-list,
    .services-grid,
    .result-metrics,
    .ideal-list,
    .form-row {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 24px;
    }

    .service-card h3 {
        margin-top: 27px;
        font-size: 22px;
    }

    .method-steps::before {
        left: 21px;
    }

    .method-step {
        grid-template-columns: 44px 1fr;
        gap: 16px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .results-card {
        padding: 30px 23px;
        border-radius: 22px;
    }

    .result-metrics {
        gap: 24px;
    }

    .result-metric strong {
        font-size: 46px;
    }

    .tech-cloud span {
        padding: 10px 12px;
        font-size: 11px;
    }

    .about-visual {
        min-height: 395px;
    }

    .about-visual::before {
        width: 265px;
        height: 265px;
    }

    .about-visual::after {
        width: 330px;
        height: 330px;
    }

    .founder-card {
        width: 225px;
        min-height: 285px;
    }

    .founder-avatar {
        width: 92px;
        height: 92px;
        font-size: 28px;
    }

    .code-one { right: 0; }
    .code-two { left: 0; }

    .ideal-card {
        padding: 30px 23px;
    }

    .faq-list summary {
        font-size: 14px;
    }

    .contact-form {
        padding: 24px 19px;
        border-radius: 18px;
    }

    .contact-info strong {
        overflow-wrap: anywhere;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .floating-chip {
        display: none;
    }

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

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

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

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