@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@600;700&display=swap");

:root {
    --primary-navy: #071720;
    --secondary-blue: #0d4652;
    --accent-cyan: #19d8c6;
    --accent-hover: #e89a2f;
    --text-dark: #10242a;
    --text-muted: #60717a;
    --bg-light: #eef7f4;
    --bg-white: #ffffff;
    --border-color: rgba(16, 36, 42, 0.12);
    --abyss: #061217;
    --ocean: #0a3845;
    --kelp: #1a7c66;
    --copper: #d88a36;
    --foam: #e9fff9;
    --glass: rgba(255, 255, 255, 0.78);
    --glass-dark: rgba(7, 23, 32, 0.68);
    --shadow-soft: 0 18px 50px rgba(6, 18, 23, 0.12);
    --shadow-hard: 0 26px 80px rgba(6, 18, 23, 0.22);
}

* {
    letter-spacing: 0 !important;
}

html {
    background: var(--abyss);
}

body {
    min-height: 100vh;
    font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background:
        linear-gradient(180deg, rgba(238, 247, 244, 0.98), rgba(247, 251, 250, 0.98) 34%, rgba(232, 246, 242, 0.98)),
        repeating-linear-gradient(90deg, rgba(13, 70, 82, 0.04) 0, rgba(13, 70, 82, 0.04) 1px, transparent 1px, transparent 84px);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(115deg, transparent 0 22%, rgba(25, 216, 198, 0.09) 22.5%, transparent 23.5% 58%, rgba(216, 138, 54, 0.08) 59%, transparent 60%),
        linear-gradient(rgba(7, 23, 32, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 23, 32, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 72px 72px, 72px 72px;
    mask-image: linear-gradient(180deg, transparent, black 12%, black 88%, transparent);
}

.et-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    z-index: 5000;
    background: linear-gradient(90deg, var(--accent-cyan), var(--copper), #f4d26c);
    box-shadow: 0 0 24px rgba(25, 216, 198, 0.58);
}

.top-bar {
    background:
        linear-gradient(90deg, rgba(6, 18, 23, 0.98), rgba(10, 56, 69, 0.96)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 56px);
    color: rgba(233, 255, 249, 0.78);
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.top-bar-info span,
.top-bar > div:last-child span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-right: 0 !important;
}

.top-bar i {
    color: var(--accent-cyan);
    margin-right: 0;
    filter: drop-shadow(0 0 8px rgba(25, 216, 198, 0.45));
}

header {
    top: 0;
    background: rgba(248, 255, 252, 0.84);
    border-bottom: 1px solid rgba(7, 23, 32, 0.08);
    box-shadow: 0 16px 40px rgba(6, 18, 23, 0.08);
    backdrop-filter: blur(20px);
}

header::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 216, 198, 0.6), rgba(216, 138, 54, 0.48), transparent);
}

.nav-container {
    max-width: 1320px;
    padding: 12px 5%;
    gap: 24px;
}

.logo {
    min-width: 0;
    color: var(--text-dark) !important;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1.14rem;
    line-height: 1;
    gap: 11px;
}

.brand-mark {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 8px;
    filter: drop-shadow(0 12px 20px rgba(7, 23, 32, 0.2));
}

.brand-copy {
    display: grid;
    gap: 3px;
}

.brand-copy strong {
    color: var(--text-dark);
    font-size: 1.08rem;
    font-weight: 800;
}

.brand-copy small {
    color: var(--secondary-blue);
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

nav ul {
    align-items: center;
    gap: 8px;
}

nav a {
    position: relative;
    gap: 9px;
    padding: 11px 13px;
    color: rgba(16, 36, 42, 0.78);
    border: 1px solid transparent;
    border-radius: 999px;
    overflow: hidden;
}

nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 216, 198, 0.14), rgba(216, 138, 54, 0.12));
    opacity: 0;
    transition: opacity 0.25s ease;
}

nav a i,
nav a span {
    position: relative;
    z-index: 1;
}

nav a i {
    width: 18px;
    color: var(--secondary-blue);
}

nav a:hover,
nav a.active {
    color: var(--abyss);
    border-color: rgba(25, 216, 198, 0.26);
}

nav a:hover::before,
nav a.active::before {
    opacity: 1;
}

nav a.active i,
nav a:hover i {
    color: var(--accent-cyan);
}

.mobile-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(25, 216, 198, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--abyss);
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(6, 18, 23, 0.1);
}

.hero-slider-wrapper {
    min-height: 660px;
    height: 86vh;
    isolation: isolate;
    background: var(--abyss);
}

.hero-slider-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 13;
    pointer-events: none;
    opacity: 0.36;
    mix-blend-mode: screen;
    background:
        linear-gradient(90deg, rgba(25, 216, 198, 0.24) 1px, transparent 1px),
        linear-gradient(rgba(25, 216, 198, 0.16) 1px, transparent 1px),
        linear-gradient(115deg, transparent 0 48%, rgba(25, 216, 198, 0.34) 49%, transparent 50% 100%);
    background-size: 110px 110px, 110px 110px, 100% 100%;
    animation: gridDrift 18s linear infinite;
}

.hero-slider-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 14;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 56%, rgba(6, 18, 23, 0.82)),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 5px);
}

.slide {
    justify-content: flex-start;
    text-align: left;
}

.slide img {
    filter: saturate(0.96) contrast(1.12);
    transform: scale(1.04);
}

.slide.active img {
    animation: slowSurvey 9s ease-out both;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(6, 18, 23, 0.93) 0%, rgba(6, 18, 23, 0.72) 43%, rgba(6, 18, 23, 0.2) 100%),
        linear-gradient(180deg, rgba(6, 18, 23, 0.3), rgba(6, 18, 23, 0.88)) !important;
}

.hero-content {
    position: relative;
    z-index: 16;
    max-width: 760px;
    margin-left: max(5%, calc((100vw - 1320px) / 2));
    padding: 0 5% 0 0;
}

.hero-content::before {
    content: "";
    position: absolute;
    top: -18px;
    bottom: -18px;
    left: -24px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--copper), transparent);
    box-shadow: 0 0 28px rgba(25, 216, 198, 0.54);
}

.hero-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border: 1px solid rgba(25, 216, 198, 0.42);
    border-radius: 8px;
    color: var(--accent-cyan);
    background: rgba(6, 18, 23, 0.42);
    box-shadow: inset 0 0 24px rgba(25, 216, 198, 0.12), 0 0 34px rgba(25, 216, 198, 0.18);
    animation: instrumentPulse 2.8s ease-in-out infinite;
}

.hero-content h1,
h1.hero {
    max-width: 12ch;
    margin-bottom: 22px;
    color: white;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 4.25rem;
    line-height: 0.96;
    font-weight: 700;
    text-shadow: 0 18px 55px rgba(0, 0, 0, 0.54);
}

.hero-content p,
p.hero {
    max-width: 670px;
    margin-bottom: 34px;
    color: rgba(233, 255, 249, 0.9);
    font-size: 1.16rem;
    line-height: 1.75;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.64);
}

.btn,
.btn-light,
.btn-submit {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    isolation: isolate;
}

.btn::before,
.btn-light::before,
.btn-submit::before {
    content: "";
    position: absolute;
    inset: -60% auto -60% -30%;
    width: 46%;
    transform: rotate(18deg);
    background: rgba(255, 255, 255, 0.42);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.25s ease;
    z-index: -1;
}

.btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--kelp));
    box-shadow: 0 18px 40px rgba(25, 216, 198, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn:hover,
.btn-light:hover,
.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(6, 18, 23, 0.24);
}

.btn:hover::before,
.btn-light:hover::before,
.btn-submit:hover::before {
    opacity: 1;
    transform: translateX(260%) rotate(18deg);
}

.slider-arrow {
    z-index: 25;
    border-radius: 8px;
    border-color: rgba(233, 255, 249, 0.28);
    background: rgba(6, 18, 23, 0.5);
    backdrop-filter: blur(12px);
}

.slider-arrow:hover {
    background: rgba(25, 216, 198, 0.92);
    color: var(--abyss);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 28;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 36px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 54px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--copper));
}

.depth-console {
    position: absolute;
    right: max(5%, calc((100vw - 1320px) / 2));
    bottom: 92px;
    z-index: 26;
    width: 330px;
    padding: 20px;
    color: var(--foam);
    border: 1px solid rgba(25, 216, 198, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(7, 23, 32, 0.82), rgba(10, 56, 69, 0.62)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 36px);
    box-shadow: var(--shadow-hard);
    backdrop-filter: blur(18px);
}

.console-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--accent-cyan);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.console-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-top: 1px solid rgba(233, 255, 249, 0.1);
}

.console-row span {
    color: rgba(233, 255, 249, 0.72);
    font-size: 0.86rem;
}

.console-row strong {
    color: white;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1.26rem;
}

.console-meter {
    height: 7px;
    margin-top: 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.console-meter span {
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-cyan), var(--copper));
    animation: meterFlow 2.5s ease-in-out infinite alternate;
}

.page-banner {
    min-height: 320px;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.48;
    background:
        linear-gradient(90deg, rgba(25, 216, 198, 0.24) 1px, transparent 1px),
        linear-gradient(rgba(25, 216, 198, 0.18) 1px, transparent 1px),
        linear-gradient(115deg, transparent 0 46%, rgba(216, 138, 54, 0.24) 47%, transparent 48% 100%);
    background-size: 96px 96px, 96px 96px, 100% 100%;
    animation: gridDrift 20s linear infinite;
}

.page-banner::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--copper), transparent);
}

.page-banner h1 {
    position: relative;
    max-width: 980px;
    font-family: "Space Grotesk", "Inter", sans-serif;
    line-height: 1.02;
    text-shadow: 0 14px 48px rgba(0, 0, 0, 0.55);
}

.breadcrumb {
    margin-top: 18px;
    padding: 9px 14px;
    border: 1px solid rgba(233, 255, 249, 0.18);
    border-radius: 999px;
    background: rgba(6, 18, 23, 0.26);
    backdrop-filter: blur(12px);
}

.section-tag {
    color: var(--kelp);
    font-weight: 900;
    text-transform: uppercase;
}

.section-header h2,
.section-intro h2,
.overview-text h2,
.leadership-text h2,
.ceo-bio h2,
.ceo-details h2,
.contact-info h2,
.contact-form-card h3,
.solution-text h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    color: var(--text-dark);
    line-height: 1.05;
}

.highlights {
    max-width: 1320px;
    margin-top: -74px;
    gap: 18px;
}

.highlight-card,
.service-card,
.mission-box,
.stat-card,
.comp-card,
.workflow-step,
.pillar-card,
.team-card,
.contact-form-card,
.contact-info,
.quote-box,
.ceo-quote-box {
    border-radius: 8px !important;
}

.highlight-card,
.service-card,
.stat-card,
.team-card,
.contact-form-card {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 249, 246, 0.82)),
        linear-gradient(135deg, rgba(25, 216, 198, 0.08), rgba(216, 138, 54, 0.08));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.highlight-card,
.service-card,
.team-card,
.comp-card,
.workflow-step,
.pillar-card,
.mission-box {
    transform-style: preserve-3d;
    will-change: transform;
}

.highlight-card {
    position: relative;
    overflow: hidden;
    text-align: left;
    border-bottom: 0;
}

.highlight-card::before,
.service-card::after,
.team-card::after,
.comp-card::after,
.workflow-step::after,
.pillar-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(25, 216, 198, 0.24), transparent 42%, rgba(216, 138, 54, 0.22));
    opacity: 0;
    transition: opacity 0.28s ease;
}

.highlight-card:hover::before,
.service-card:hover::after,
.team-card:hover::after,
.comp-card:hover::after,
.workflow-step:hover::after,
.pillar-card:hover::after {
    opacity: 1;
}

.highlight-icon,
.service-icon,
.comp-icon,
.team-icon,
.info-icon,
.step-number {
    position: relative;
    border-radius: 8px !important;
    color: var(--abyss) !important;
    background: linear-gradient(135deg, var(--accent-cyan), rgba(216, 138, 54, 0.9)) !important;
    box-shadow: 0 16px 32px rgba(25, 216, 198, 0.22);
}

.highlight-icon::after,
.service-icon::after,
.comp-icon::after,
.team-icon::after,
.info-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(25, 216, 198, 0.3);
    border-radius: inherit;
    opacity: 0.78;
}

.leadership-section,
.ceo-spotlight,
.team-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 249, 246, 0.96)),
        repeating-linear-gradient(135deg, rgba(13, 70, 82, 0.04) 0, rgba(13, 70, 82, 0.04) 1px, transparent 1px, transparent 40px);
}

.leadership-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 55%, rgba(25, 216, 198, 0.12) 55.5%, transparent 56.5%),
        linear-gradient(180deg, transparent 0, rgba(216, 138, 54, 0.08) 100%);
    pointer-events: none;
}

.leadership-container,
.overview-grid,
.ceo-container,
.ceo-grid,
.solution-block,
.contact-grid {
    max-width: 1320px;
}

.ceo-card,
.ceo-profile-card,
.overview-image,
.solution-image {
    position: relative;
    border-radius: 8px;
}

.ceo-card::before,
.ceo-profile-card::before,
.overview-image::before,
.solution-image::before {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: -1;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(25, 216, 198, 0.52), rgba(216, 138, 54, 0.45)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0.22) 1px, transparent 1px, transparent 16px);
    opacity: 0.54;
}

.ceo-card img,
.ceo-profile-card img,
.overview-image img,
.solution-image img {
    border-radius: 8px !important;
    filter: saturate(0.95) contrast(1.08);
}

.ceo-card,
.ceo-profile-card {
    overflow: hidden;
    box-shadow: var(--shadow-hard);
}

.ceo-badge,
.solution-badge,
.experience-badge {
    border-radius: 8px !important;
    background: linear-gradient(135deg, var(--accent-cyan), var(--copper)) !important;
    color: var(--abyss) !important;
    box-shadow: 0 18px 42px rgba(6, 18, 23, 0.24) !important;
}

.experience-badge {
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.services-section,
.overview-section,
.solutions-container,
.contact-container,
.ceo-hero {
    max-width: none;
    background:
        linear-gradient(180deg, rgba(238, 247, 244, 0.96), rgba(250, 253, 252, 0.96)),
        repeating-linear-gradient(90deg, rgba(13, 70, 82, 0.04) 0, rgba(13, 70, 82, 0.04) 1px, transparent 1px, transparent 84px);
}

.section-header,
.section-intro {
    position: relative;
}

.section-header i {
    width: 64px;
    height: 64px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    color: var(--abyss);
    background: linear-gradient(135deg, var(--accent-cyan), var(--copper));
}

.services-grid,
.competencies-grid,
.workflow-grid,
.pillars-grid,
.team-grid,
.mission-grid {
    max-width: 1320px;
}

.service-card {
    border-left: 0;
}

.service-card::before {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--copper));
}

.service-card:hover,
.highlight-card:hover,
.team-card:hover,
.comp-card:hover,
.workflow-step:hover,
.pillar-card:hover,
.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hard);
}

.service-card ul li,
.solution-features li {
    padding-left: 34px;
}

.service-card ul li i,
.solution-features li i {
    top: 2px;
    color: var(--kelp);
}

.mission-section,
.competencies-section,
.workflow-section,
.pillars-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(6, 18, 23, 0.98), rgba(10, 56, 69, 0.96)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 72px) !important;
}

.mission-section::before,
.competencies-section::before,
.workflow-section::before,
.pillars-section::before,
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.24;
    background:
        linear-gradient(115deg, transparent 0 48%, rgba(25, 216, 198, 0.44) 49%, transparent 50% 100%),
        linear-gradient(0deg, transparent 0 72%, rgba(216, 138, 54, 0.24));
    animation: gridDrift 22s linear infinite;
}

.mission-box,
.comp-card,
.workflow-step,
.pillar-card,
.contact-info {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(233, 255, 249, 0.16);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(14px);
}

.mission-box h3,
.comp-card h3,
.workflow-step h4,
.pillar-card h3,
.contact-info h2 {
    color: white !important;
}

.mission-box p,
.comp-card p,
.workflow-step p,
.pillar-card p,
.contact-info p,
.info-content p {
    color: rgba(233, 255, 249, 0.74) !important;
}

.mission-box i,
.pillar-card i {
    width: 66px;
    height: 66px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    color: var(--abyss);
    background: linear-gradient(135deg, var(--accent-cyan), var(--copper));
}

.workflow-step {
    text-align: left;
}

.step-number {
    margin-left: 0;
    color: var(--abyss) !important;
}

.cta-banner {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--kelp), var(--secondary-blue) 52%, var(--copper)) !important;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.32;
}

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

.btn-light {
    background: rgba(255, 255, 255, 0.92);
    color: var(--abyss);
}

.contact-grid {
    margin: 0 auto;
}

.contact-info {
    background:
        linear-gradient(145deg, rgba(7, 23, 32, 0.96), rgba(10, 56, 69, 0.9)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 36px);
}

.info-item {
    align-items: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 8px;
    border: 1px solid rgba(16, 36, 42, 0.12);
    background: rgba(238, 247, 244, 0.72);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(25, 216, 198, 0.72);
    box-shadow: 0 0 0 4px rgba(25, 216, 198, 0.14);
}

.btn-submit {
    background: linear-gradient(135deg, var(--secondary-blue), var(--kelp), var(--copper));
}

.et-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 6000;
    max-width: 360px;
    padding: 15px 17px;
    border: 1px solid rgba(25, 216, 198, 0.3);
    border-radius: 8px;
    color: var(--foam);
    background: rgba(7, 23, 32, 0.9);
    box-shadow: var(--shadow-hard);
    transform: translateY(18px);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.et-toast.show {
    transform: translateY(0);
    opacity: 1;
}

footer {
    position: relative;
    overflow: hidden;
    background: var(--abyss);
}

footer > * {
    position: relative;
    z-index: 1;
}

.footer-grid {
    max-width: 1320px;
}

.footer-brand .logo {
    color: white !important;
}

.footer-brand .brand-copy strong {
    color: white;
}

.footer-brand .brand-copy small {
    color: var(--accent-cyan);
}

.footer-col ul li {
    align-items: flex-start;
}

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

.reveal-ready.reveal-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes gridDrift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 110px 70px, 110px 70px, 0 0; }
}

@keyframes slowSurvey {
    0% { transform: scale(1.04) translateX(0); }
    100% { transform: scale(1.1) translateX(-1.5%); }
}

@keyframes instrumentPulse {
    0%, 100% { box-shadow: inset 0 0 24px rgba(25, 216, 198, 0.12), 0 0 24px rgba(25, 216, 198, 0.15); }
    50% { box-shadow: inset 0 0 32px rgba(25, 216, 198, 0.2), 0 0 44px rgba(25, 216, 198, 0.32); }
}

@keyframes meterFlow {
    0% { width: 62%; }
    100% { width: 88%; }
}

@media (max-width: 1100px) {
    .depth-console {
        width: 290px;
        right: 5%;
    }

    .hero-content h1,
    h1.hero {
        font-size: 3.35rem;
    }
}

@media (max-width: 900px) {
    .top-bar {
        display: none;
    }

    .nav-container {
        position: relative;
    }

    .mobile-nav-toggle {
        display: inline-grid;
        place-items: center;
        flex: 0 0 44px;
    }

    nav {
        margin-left: auto;
    }

    nav ul {
        position: absolute;
        top: calc(100% + 12px);
        right: 5%;
        left: 5%;
        display: none !important;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border: 1px solid rgba(25, 216, 198, 0.22);
        border-radius: 8px;
        background: rgba(248, 255, 252, 0.96);
        box-shadow: var(--shadow-hard);
        backdrop-filter: blur(18px);
    }

    header.nav-open nav ul {
        display: flex !important;
    }

    nav a {
        justify-content: flex-start;
    }

    .hero-slider-wrapper {
        min-height: 720px;
        height: auto;
    }

    .slide {
        align-items: flex-start;
        padding-top: 92px;
    }

    .hero-content {
        margin-left: 9%;
        padding-right: 8%;
    }

    .hero-content::before {
        left: -16px;
    }

    .depth-console {
        left: 9%;
        right: 9%;
        bottom: 78px;
        width: auto;
    }

    .highlights {
        margin-top: 0;
        padding-top: 44px;
    }

    .page-banner {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .brand-copy strong {
        font-size: 0.94rem;
    }

    .brand-copy small {
        font-size: 0.64rem;
    }

    .hero-content h1,
    h1.hero {
        max-width: none;
        font-size: 2.62rem;
        line-height: 1.02;
    }

    .hero-content p,
    p.hero {
        font-size: 1rem;
    }

    .hero-icon {
        width: 58px;
        height: 58px;
        font-size: 1.55rem;
    }

    .depth-console {
        display: none;
    }

    .slider-arrow {
        top: auto;
        bottom: 28px;
        width: 42px;
        height: 42px;
    }

    .prev-arrow {
        left: 22px;
    }

    .next-arrow {
        right: 22px;
    }

    .hero-dots {
        bottom: 42px;
    }

    .page-banner h1 {
        font-size: 2.32rem !important;
    }

    .breadcrumb {
        flex-wrap: wrap;
        border-radius: 8px;
    }

    .highlight-card,
    .service-card,
    .mission-box,
    .contact-form-card,
    .contact-info {
        padding: 28px 22px;
    }

    .experience-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }
}

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

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