:root {
    --bg: #edf6ff;
    --bg-soft: rgba(255, 255, 255, 0.72);
    --surface: #f8fbff;
    --surface-strong: #0b1730;
    --surface-dark: #071222;
    --text: #13202d;
    --text-soft: #49607d;
    --text-inverse: #eef5fb;
    --line: rgba(19, 32, 45, 0.1);
    --line-strong: rgba(255, 255, 255, 0.12);
    --accent: #178dff;
    --accent-deep: #123f95;
    --accent-cool: #64e1ff;
    --card-bg: rgba(248, 251, 255, 0.9);
    --card-bg-soft: rgba(242, 248, 255, 0.82);
    --card-bg-strong: rgba(237, 246, 255, 0.94);
    --shadow: 0 20px 60px rgba(7, 38, 94, 0.15);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: 1180px;
    --font-body: 'Instrument Sans', sans-serif;
    --font-display: 'Chakra Petch', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(23, 141, 255, 0.15), transparent 28%),
        radial-gradient(circle at 80% 15%, rgba(100, 225, 255, 0.2), transparent 22%),
        linear-gradient(180deg, #f1f7ff 0%, #e3eeff 100%);
    min-height: 100vh;
}

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

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

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

.page-shell {
    position: relative;
    overflow: clip;
}

.background-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.orb-one {
    top: 7rem;
    left: -3rem;
    width: 14rem;
    height: 14rem;
    background: rgba(23, 141, 255, 0.22);
}

.orb-two {
    top: 18rem;
    right: -5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(100, 225, 255, 0.2);
}

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

.section-pad {
    padding: 4.75rem 0;
}

.section-contrast {
    position: relative;
}

.section-contrast::before {
    content: '';
    position: absolute;
    inset: 1.5rem 1rem;
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(7, 18, 34, 0.98), rgba(11, 30, 57, 0.95));
    box-shadow: var(--shadow);
}

.section-contrast .container {
    color: var(--text-inverse);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(237, 246, 255, 0.78);
    border-bottom: 1px solid rgba(19, 32, 45, 0.06);
}

.site-header.is-scrolled {
    background: rgba(237, 246, 255, 0.96);
    box-shadow: 0 8px 30px rgba(7, 38, 94, 0.09);
}

.scroll-progress {
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--accent), var(--accent-cool));
    box-shadow: 0 0 18px rgba(100, 225, 255, 0.45);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-logo {
    width: min(16rem, 62vw);
    height: auto;
    display: block;
}

.brand-logo-footer {
    width: min(14rem, 58vw);
}

.brand-mark {
    width: 2.8rem;
    height: 2.8rem;
    display: grid;
    place-items: center;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, var(--accent), #7fe7ff);
    color: #09131d;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 14px 30px rgba(23, 141, 255, 0.24);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong,
.brand-text small,
.eyebrow,
h1,
h2,
h3 {
    font-family: var(--font-display);
}

.brand-text small {
    margin-top: 0.2rem;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-family: var(--font-body);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav a {
    color: var(--text-soft);
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.92rem;
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 1rem;
    background: rgba(16, 27, 39, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: 0.25rem auto;
    background: var(--text);
    border-radius: 999px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.35rem;
    padding: 0 1.5rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #69ddff);
    color: #09131d;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(23, 141, 255, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(23, 141, 255, 0.28);
}

.button-secondary,
.button-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(19, 32, 45, 0.14);
    box-shadow: none;
}

.button-small {
    min-height: 2.85rem;
    padding: 0 1.15rem;
}

.hero-grid,
.split-section,
.split-story,
.contact-layout {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    min-height: calc(100vh - 7rem);
    padding-top: 2rem;
}

.hero-copy h1,
.inner-hero h1 {
    margin: 0.6rem 0 1rem;
    font-size: clamp(2.8rem, 5vw, 5.25rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.hero-text,
.inner-hero p,
.section-heading p,
.feature-card p,
.insight-card p,
.value-card p,
.capability-card p,
.service-band p,
.project-card p,
.faq-card p,
.story-panel p,
.contact-info p,
.contact-panel span,
.footer-copy,
.timeline-item p {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.75;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent-deep);
}

.hero-actions,
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-highlights {
    margin-top: 1.75rem;
}

.hero-highlights span {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(245, 250, 255, 0.92);
    border: 1px solid rgba(19, 32, 45, 0.08);
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 700;
}

.hero-panel {
    position: relative;
}

.hero-visual-frame,
.inline-visual,
.project-visual,
.service-visual-card,
.feature-visual-image,
.showcase-image,
.contact-profile {
    margin: 0;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 6px);
    border: 1px solid rgba(19, 32, 45, 0.08);
    background: rgba(240, 247, 255, 0.84);
}

.hero-visual-frame {
    margin-bottom: 1rem;
}

.hero-visual-frame img,
.inline-visual img,
.visual-card img,
.project-visual img,
.service-visual-card img,
.feature-visual-image img,
.showcase-image img,
.contact-profile img {
    width: 100%;
    height: auto;
    display: block;
}

.media-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-poster {
    min-height: 27rem;
}

.media-landscape {
    min-height: 18rem;
}

.panel-window,
.feature-card,
.insight-card,
.value-card,
.capability-card,
.service-band,
.project-card,
.faq-card,
.contact-form-wrap,
.contact-panel,
.cta-banner,
.story-panel {
    background: var(--card-bg);
    border: 1px solid rgba(19, 32, 45, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.panel-window {
    overflow: hidden;
}

.panel-top {
    display: flex;
    gap: 0.45rem;
    padding: 1rem 1.25rem;
    background: rgba(7, 18, 34, 0.95);
}

.panel-top span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
}

.panel-top span:first-child {
    background: #178dff;
}

.panel-top span:nth-child(2) {
    background: #4fb9ff;
}

.panel-top span:nth-child(3) {
    background: #64e1ff;
}

.panel-body {
    padding: 1.4rem;
    background:
        linear-gradient(180deg, rgba(7, 18, 34, 1) 0%, rgba(10, 28, 52, 0.98) 100%);
    color: var(--text-inverse);
}

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

.signal-card {
    padding: 1.2rem;
    border-radius: 1.45rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-strong);
}

.signal-card strong,
.timeline-item h3,
.feature-card h3,
.insight-card h3,
.value-card h3,
.capability-card h3,
.faq-card h3,
.project-card h2,
.service-band h2,
.contact-info h2,
.story-panel h2,
.cta-banner h2 {
    display: block;
    margin: 0.3rem 0 0.5rem;
    font-size: 1.3rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.accent-card {
    background: linear-gradient(135deg, rgba(23, 141, 255, 0.2), rgba(100, 225, 255, 0.18));
}

.signal-card p,
.signal-card small {
    color: rgba(238, 245, 251, 0.8);
}

.floating-note {
    max-width: 17rem;
    padding: 1rem 1.1rem;
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    background: rgba(244, 249, 255, 0.96);
    border-radius: 1.3rem;
    border: 1px solid rgba(19, 32, 45, 0.08);
    box-shadow: 0 20px 40px rgba(7, 18, 34, 0.14);
}

.floating-note p {
    margin: 0.35rem 0 0;
    color: var(--text-soft);
    line-height: 1.55;
}

.section-heading {
    max-width: 46rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin: 0.6rem 0 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.card-grid,
.timeline,
.capability-grid,
.project-grid,
.faq-grid,
.footer-grid,
.visual-grid,
.form-grid {
    display: grid;
    gap: 1.25rem;
}

.three-up,
.capability-grid,
.project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.insight-card,
.value-card,
.capability-card,
.faq-card,
.project-card,
.story-panel,
.contact-panel,
.service-band,
.contact-form-wrap {
    padding: 1.7rem;
}

.feature-card,
.insight-card,
.value-card,
.capability-card,
.faq-card,
.project-card,
.story-panel,
.contact-panel,
.service-band,
.contact-form-wrap,
.visual-card,
.service-visual-card,
.feature-visual-band,
.showcase-banner,
.app-console,
.app-visual,
.cta-banner {
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card:hover,
.insight-card:hover,
.value-card:hover,
.capability-card:hover,
.faq-card:hover,
.project-card:hover,
.story-panel:hover,
.contact-panel:hover,
.service-band:hover,
.contact-form-wrap:hover,
.visual-card:hover,
.service-visual-card:hover,
.feature-visual-band:hover,
.showcase-banner:hover,
.app-console:hover,
.app-visual:hover,
.cta-banner:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(7, 38, 94, 0.16);
    border-color: rgba(23, 141, 255, 0.18);
}

.feature-card a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-deep);
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: var(--accent-deep);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.text-link::after {
    content: '->';
    transition: transform 180ms ease;
}

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

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

.visual-card {
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(19, 32, 45, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.poster-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
}

.visual-copy {
    padding: 1.3rem 1.4rem 1.5rem;
}

.visual-copy h3,
.feature-visual-copy h3,
.showcase-copy h2 {
    margin: 0 0 0.65rem;
    font-size: 1.32rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: var(--font-display);
}

.visual-copy p,
.feature-visual-copy p,
.service-visual-copy p,
.showcase-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.72;
}

.section-cta {
    margin-top: 1.6rem;
}

.split-section,
.split-story,
.contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.stacked-cards,
.value-list {
    display: grid;
    gap: 1rem;
}

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

.timeline-item {
    padding: 1.5rem;
    border-top: 1px solid rgba(19, 32, 45, 0.1);
}

.timeline-item span {
    display: inline-grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    background: rgba(23, 141, 255, 0.14);
    color: var(--accent-deep);
    font-weight: 800;
}

.section-contrast .timeline-item,
.section-contrast .insight-card,
.section-contrast .section-heading,
.section-contrast .feature-card,
.section-contrast .faq-card,
.section-contrast .value-card,
.section-contrast .capability-card {
    border-color: rgba(255, 255, 255, 0.08);
}

.section-contrast .insight-card,
.section-contrast .feature-card,
.section-contrast .faq-card {
    background: rgba(255, 255, 255, 0.05);
}

.section-contrast .feature-card p,
.section-contrast .insight-card p,
.section-contrast .faq-card p,
.section-contrast .section-heading .eyebrow,
.section-contrast .timeline-item p {
    color: rgba(238, 245, 251, 0.78);
}

.section-contrast .app-content p,
.section-contrast .app-list li {
    color: rgba(238, 245, 251, 0.82);
}

.section-contrast .eyebrow {
    color: #9fefff;
}

.service-stack {
    display: grid;
    gap: 1rem;
}

.service-visual-layout,
.feature-visual-band,
.showcase-banner,
.app-hero-grid,
.app-showcase,
.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.4rem;
    align-items: center;
}

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

.app-showcase.reverse {
    direction: rtl;
}

.app-showcase.reverse > * {
    direction: ltr;
}

.service-band {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
    align-items: start;
}

.service-index,
.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(23, 141, 255, 0.12);
    color: var(--accent-deep);
    font-size: 0.84rem;
    font-weight: 800;
}

.product-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(23, 141, 255, 0.12);
    color: var(--accent-deep);
    font-family: var(--font-display);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.project-card ul,
.app-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.inline-visual {
    margin-bottom: 1.2rem;
}

.feature-visual-band,
.showcase-banner {
    margin-bottom: 2rem;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    background: var(--card-bg-strong);
    border: 1px solid rgba(19, 32, 45, 0.08);
    box-shadow: var(--shadow);
}

.feature-visual-copy h3 {
    font-size: 1.8rem;
}

.service-visual-copy h2,
.showcase-copy h2 {
    margin: 0.55rem 0 0.8rem;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-family: var(--font-display);
}

.service-visual-card {
    background: var(--card-bg-soft);
    box-shadow: var(--shadow);
}

.service-highlights {
    margin-top: 1.4rem;
}

.project-visual {
    margin-bottom: 1.2rem;
}

.project-card li,
.app-list li,
.footer-links li {
    position: relative;
    padding-left: 1.1rem;
    margin-top: 0.8rem;
    color: var(--text-soft);
}

.project-card li::before,
.app-list li::before,
.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--accent-cool);
}

.app-content h3 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.app-content p {
    color: var(--text-soft);
    line-height: 1.78;
}

.app-visual,
.detail-grid .story-panel,
.detail-grid .app-console {
    align-self: stretch;
}

.app-console {
    background: linear-gradient(160deg, rgba(7, 18, 34, 0.98), rgba(10, 30, 58, 0.96));
    color: var(--text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.console-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.console-header span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.console-header span:first-child {
    background: #178dff;
}

.console-header span:nth-child(2) {
    background: #4fb9ff;
}

.console-header span:nth-child(3) {
    background: #64e1ff;
}

.console-body {
    padding: 1.3rem;
}

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

.console-stats article,
.console-route span,
.console-badges span,
.console-filters span,
.console-log div {
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.console-stats article {
    padding: 1rem;
}

.console-stats small,
.console-log span {
    display: block;
    color: rgba(238, 245, 251, 0.72);
}

.console-stats strong,
.console-log strong {
    display: block;
    margin-top: 0.45rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.console-route {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.console-route span,
.console-badges span,
.console-filters span {
    padding: 0.95rem 1rem;
    font-family: var(--font-display);
}

.console-badges,
.console-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.console-log {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.console-log div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
}

.app-hero-grid h1 {
    margin-top: 0.65rem;
}

.faq-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    align-items: start;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 2rem;
}

.contact-info {
    padding-right: 1rem;
}

.contact-panel {
    display: grid;
    gap: 0.35rem;
    margin-top: 1rem;
}

.contact-profile {
    margin-bottom: 1.1rem;
    box-shadow: var(--shadow);
}

.contact-panel strong,
.footer-grid h3 {
    font-size: 1rem;
    font-family: var(--font-display);
}

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

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

.form-full {
    grid-column: 1 / -1;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--text);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid rgba(19, 32, 45, 0.12);
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    background: rgba(249, 252, 255, 0.96);
    color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 2px solid rgba(23, 141, 255, 0.24);
    border-color: rgba(23, 141, 255, 0.38);
}

.honeypot-field {
    position: absolute;
    left: -9999px;
}

.form-status {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    font-weight: 700;
}

.form-success {
    background: rgba(100, 225, 255, 0.16);
    color: #0b5fa2;
}

.form-error {
    background: rgba(18, 63, 149, 0.12);
    color: #123f95;
}

.narrow {
    max-width: 52rem;
}

.inner-hero {
    padding-top: 5rem;
}

.site-footer {
    padding: 2rem 0 2.5rem;
}

.footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(19, 32, 45, 0.08);
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-copy {
    max-width: 28rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(19, 32, 45, 0.08);
    color: var(--text-soft);
    font-size: 0.95rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem 0.8rem 0.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(7, 18, 34, 0.96), rgba(10, 30, 58, 0.96));
    color: var(--text-inverse);
    border: 1px solid rgba(100, 225, 255, 0.22);
    box-shadow: 0 20px 50px rgba(7, 18, 34, 0.28);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 58px rgba(7, 18, 34, 0.34);
}

.floating-whatsapp-mark {
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #178dff, #64e1ff);
    color: #071222;
    font-family: var(--font-display);
    font-weight: 700;
}

.floating-whatsapp-copy {
    display: grid;
    line-height: 1.05;
}

.floating-whatsapp-copy strong,
.floating-whatsapp-copy small {
    font-family: var(--font-display);
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

.has-js .nav-toggle {
    display: none;
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-section,
    .split-story,
    .contact-layout,
    .service-band,
    .service-visual-layout,
    .feature-visual-band,
    .showcase-banner,
    .app-hero-grid,
    .app-showcase,
    .detail-grid,
    .faq-grid,
    .three-up,
    .capability-grid,
    .project-grid,
    .visual-grid,
    .spec-grid,
    .footer-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 1rem;
    }

    .contact-info {
        padding-right: 0;
    }

    .console-stats,
    .console-route {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .has-js .nav-toggle {
        display: inline-block;
    }

    .has-js .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(240, 247, 255, 0.99);
        border: 1px solid rgba(19, 32, 45, 0.08);
        box-shadow: var(--shadow);
    }

    .has-js .site-nav.is-open {
        display: flex;
    }

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

    .cta-banner,
    .footer-bottom,
    .product-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .section-pad {
        padding: 3.8rem 0;
    }

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

    .hero-copy h1,
    .inner-hero h1 {
        font-size: clamp(2.4rem, 13vw, 3.5rem);
    }

    .brand-logo {
        width: 12.8rem;
    }

    .brand-logo-footer {
        width: 12rem;
    }

    .feature-card,
    .insight-card,
    .value-card,
    .capability-card,
    .faq-card,
    .project-card,
    .story-panel,
    .contact-panel,
    .service-band,
    .contact-form-wrap,
    .cta-banner {
        padding: 1.35rem;
    }

    .floating-note {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }

    .floating-whatsapp {
        right: 0.8rem;
        bottom: 0.8rem;
        padding: 0.75rem 0.85rem;
    }

    .floating-whatsapp-copy small {
        font-size: 0.76rem;
    }

    .media-poster,
    .media-landscape {
        min-height: auto;
    }

    .hero-highlights span {
        width: 100%;
        justify-content: center;
    }
}
