/* =========================================================
   01. RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(193, 255, 114, 0.08), transparent 22%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 24%),
        linear-gradient(180deg, #050505 0%, #0b0b0c 46%, #0d0d0f 100%);
    color: #f3f5f7;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

/* =========================================================
   02. LAYOUT
========================================================= */

.container {
    width: min(1240px, calc(100% - 96px));
    margin: 0 auto;
}

.container.narrow {
    width: min(860px, calc(100% - 96px));
    margin: 0 auto;
}

.page-section {
    padding: 110px 0 100px;
}

.content-block {
    max-width: 760px;
}

.content-spacer {
    margin-top: 18px !important;
}

/* =========================================================
   03. HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 9, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 28px;
    position: relative;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 3;
}

.site-brand-mark {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #c1ff72;
    box-shadow: 0 0 20px rgba(193, 255, 114, 0.45);
    flex: 0 0 11px;
}

.site-brand-text {
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f8fafc;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.025);
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.68);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.main-nav a:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================================================
   04. SHARED TYPOGRAPHY
========================================================= */

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c1ff72;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h1,
.section-heading h2,
.content-block h1 {
    margin: 0 0 14px;
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-size: 3.2rem;
    line-height: 0.96;
    letter-spacing: -0.065em;
    font-weight: 500;
    color: #f8fafc;
}

.section-heading p,
.content-block p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
}

/* =========================================================
   05. HERO
========================================================= */

.hero-section {
    padding: 108px 0 86px;
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(430px, 1.02fr);
    gap: 48px;
    align-items: stretch;
    row-gap: 18px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 8px 0;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(240, 245, 238, 0.92);
}

.hero-eyebrow-sweep {
    position: relative;
    width: fit-content;
    overflow: hidden;
}

.hero-eyebrow-sweep::after {
    content: "";
    position: absolute;
    top: -26%;
    bottom: -26%;
    left: -18%;
    width: 16%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(193, 255, 114, 0.04) 24%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(193, 255, 114, 0.05) 76%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    filter: blur(1px);
    animation: eyebrowSweep 6.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes eyebrowSweep {
    0% {
        left: -18%;
        opacity: 0;
    }
    12% {
        opacity: 0.8;
    }
    42% {
        left: 104%;
        opacity: 0.8;
    }
    56% {
        left: 108%;
        opacity: 0;
    }
    100% {
        left: 108%;
        opacity: 0;
    }
}

.hero-title-shimmer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 20px;
    font-family: "Sora", Arial, Helvetica, sans-serif;
    color: #ffffff;
}

.hero-title-line {
    position: relative;
    display: inline-block;
    width: fit-content;
}

.hero-title-line-one {
    font-size: 4.5rem;
    line-height: 0.94;
    letter-spacing: -0.1em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.98);
}

.hero-title-line-two {
    font-size: 4.6rem;
    line-height: 0.9;
    letter-spacing: -0.105em;
    font-weight: 600;
    background: linear-gradient(90deg, #c1ff72 0%, #eef7e8 48%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title-line-three {
    font-size: 4.5rem;
    line-height: 0.94;
    letter-spacing: -0.1em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.98);
}

.hero-subdescription {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.hero-subdescription-inline {
    display: inline;
    font-size: 0.98rem;
    line-height: 1.95;
}

.hero-subdescription-prefix {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 300;
}

.hero-inline-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0 6px 0 6px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(23,23,26,0.96), rgba(10,10,12,0.96));
    border-radius: 12px;
    color: #e9f4e4;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.71rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    vertical-align: middle;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-inline-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(193, 255, 114, 0.22);
    color: #c1ff72;
    box-shadow:
        0 12px 22px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.07);
}

.hero-subdescription-text {
    color: rgba(255,255,255,0.68);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

/* RIGHT NOTE GRID AREA */

.hero-visual {
    display: flex;
    align-self: stretch;
    padding-top: 10px;
}

.hero-visual-frame {
    position: relative;
    width: 100%;
    max-width: 580px;
    min-height: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
        radial-gradient(circle at 72% 16%, rgba(193, 255, 114, 0.12), rgba(193, 255, 114, 0) 30%),
        radial-gradient(circle at 24% 78%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 32%);
    overflow: hidden;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 22px;
}

.hero-visual-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.64) 100%);
    pointer-events: none;
}

.hero-visual-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(28px);
    pointer-events: none;
}

.hero-visual-glow-one {
    top: 44px;
    right: 62px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(193, 255, 114, 0.17), rgba(193, 255, 114, 0) 72%);
}

.hero-visual-glow-two {
    bottom: 34px;
    left: 40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 72%);
}

.hero-visual-noise {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0)),
        radial-gradient(circle at 18% 22%, rgba(255,255,255,0.02), transparent 14%),
        radial-gradient(circle at 80% 66%, rgba(193,255,114,0.025), transparent 18%);
    pointer-events: none;
}

.hero-typing-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.hero-typing-node {
    position: absolute;
    z-index: 2;
    opacity: 0;
    transform: translateY(8px) scale(0.985);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-typing-node.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-typing-node.is-hovered {
    z-index: 5;
}

.hero-typing-node-a {
    top: 18px;
    left: 18px;
}

.hero-typing-node-b {
    top: 72px;
    right: 18px;
}

.hero-typing-node-c {
    bottom: 134px;
    left: 26px;
}

.hero-typing-node-d {
    right: 18px;
    bottom: 84px;
}

.hero-typing-anchor {
    display: inline-flex;
    align-items: flex-start;
    gap: 11px;
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: inherit;
}

.hero-node-dot {
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1d1d21 0%, #09090b 100%);
    box-shadow:
        0 10px 16px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    flex: 0 0 15px;
    margin-top: 5px;
}

.hero-typing-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    color: #c1ff72;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-typing-label .typed-cursor {
    display: inline-block;
    width: 9px;
    margin-left: 2px;
    color: rgba(193, 255, 114, 0.92);
    animation: typedCursorBlink 0.9s step-end infinite;
}

@keyframes typedCursorBlink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.hero-hover-panel {
    position: absolute;
    top: -10px;
    left: -12px;
    width: 304px;
    max-width: min(304px, calc(100vw - 56px));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(22, 22, 24, 0.98), rgba(10, 10, 12, 0.985));
    box-shadow:
        0 26px 46px rgba(0, 0, 0, 0.42),
        0 10px 18px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.985);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
    overflow: hidden;
}

.hero-typing-node-b .hero-hover-panel,
.hero-typing-node-d .hero-hover-panel {
    left: auto;
    right: -10px;
}

.hero-hover-panel-top {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 34px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.014));
}

.hero-hover-close {
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #09090a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-hover-tab-title {
    color: rgba(255, 255, 255, 0.62);
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-hover-panel-body {
    padding: 15px 16px 17px;
}

.hero-hover-panel-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1.82;
    letter-spacing: 0.01em;
}

.hero-typing-node.is-hovered .hero-typing-label,
.hero-typing-node.is-hovered .hero-node-dot {
    opacity: 0;
    transform: translateY(-4px);
}

.hero-typing-node.is-hovered .hero-hover-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.hero-bottom-micro {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
    text-align: center;
}

.hero-bottom-micro span {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.38);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.54rem;
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1.65;
    text-transform: uppercase;
}

/* =========================================================
   06. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary-dark {
    position: relative;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, #202024 0%, #111115 54%, #08080a 100%);
    color: #f7f9fb;
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.34),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    overflow: hidden;
}

.btn-primary-dark::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 11px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
    pointer-events: none;
}

.btn-primary-dark-text {
    position: relative;
    z-index: 2;
}

.btn-primary-dark:hover {
    background: #ffffff;
    color: #070709;
    border-color: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.22),
        0 10px 20px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-primary-green {
    position: relative;
    padding: 0 24px;
    border: 1px solid rgba(193, 255, 114, 0.22);
    border-radius: 12px;
    background: #c1ff72;
    color: #0a0a0a;
    box-shadow:
        0 16px 30px rgba(121, 181, 28, 0.18),
        0 8px 16px rgba(121, 181, 28, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn-primary-green-text {
    position: relative;
    z-index: 2;
}

.btn-primary-green:hover {
    background: #0a0a0a;
    color: #f5f7fa;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.36),
        0 10px 20px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* =========================================================
   07. SERVICES
========================================================= */

.services-section {
    padding: 18px 0 110px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 24px 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(193, 255, 114, 0.45), rgba(193, 255, 114, 0), rgba(193, 255, 114, 0));
    opacity: 0.65;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(193, 255, 114, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 28px;
}

.service-index {
    display: inline-block;
    color: rgba(193, 255, 114, 0.88);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0 0 12px;
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-size: 1.42rem;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 500;
    color: #ffffff;
}

.service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
}

.service-card-line {
    width: 54px;
    height: 2px;
    margin-top: 24px;
    background: linear-gradient(90deg, #c1ff72 0%, rgba(193, 255, 114, 0) 100%);
    opacity: 0.85;
}

/* =========================================================
   08. CONTACT
========================================================= */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.contact-copy h1 {
    margin: 0 0 14px;
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-size: 3.2rem;
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.contact-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
}

.contact-meta-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-meta-item {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.contact-meta-label {
    display: block;
    margin-bottom: 6px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c1ff72;
}

.contact-form-shell {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row label {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    outline: none;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: rgba(193, 255, 114, 0.5);
}

.contact-submit {
    width: 100%;
    margin-top: 4px;
}

.form-alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.form-alert.is-success {
    border-color: rgba(193, 255, 114, 0.35);
    background: rgba(193, 255, 114, 0.08);
    color: #efffd7;
}

.form-alert.is-error {
    border-color: rgba(255, 120, 120, 0.28);
    background: rgba(255, 120, 120, 0.08);
    color: #ffd6d6;
}

/* =========================================================
   09. FOOTER
========================================================= */

.site-footer {
    padding: 28px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.94rem;
}

/* =========================================================
   10. TABLET
========================================================= */

@media (max-width: 1100px) {
    .container {
        width: min(100% - 64px, 1240px);
    }

    .container.narrow {
        width: min(100% - 64px, 860px);
    }

    .hero-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-title-line-one,
    .hero-title-line-three {
        font-size: 4rem;
    }

    .hero-title-line-two {
        font-size: 4.1rem;
    }

    .hero-visual {
        justify-content: stretch;
        padding-top: 0;
    }

    .hero-visual-frame {
        max-width: none;
        min-height: 320px;
    }

    .hero-visual-inner {
        min-height: 320px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   11. MOBILE
========================================================= */

@media (max-width: 767px) {
    .container,
    .container.narrow {
        width: calc(100% - 32px);
    }

    .header-inner {
        min-height: 72px;
        gap: 12px;
        padding: 14px 0;
        flex-wrap: wrap;
    }

    .site-brand {
        gap: 10px;
    }

    .site-brand-text {
        font-size: 0.96rem;
        letter-spacing: 0.12em;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px 0 0;
        border: 0;
        background: transparent;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 56px 0 42px;
    }

    .hero-layout {
        gap: 30px;
        row-gap: 18px;
    }

    .hero-eyebrow {
        margin-bottom: 16px;
        font-size: 0.68rem;
        letter-spacing: 0.22em;
    }

    .hero-title-line-one,
    .hero-title-line-three {
        font-size: 2.9rem;
        line-height: 0.96;
    }

    .hero-title-line-two {
        font-size: 2.9rem;
        line-height: 0.96;
    }

    .hero-subdescription-inline {
        font-size: 0.93rem;
        line-height: 1.9;
    }

    .hero-inline-pill {
        min-height: 32px;
        margin: 0 5px 0 5px;
        font-size: 0.65rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 24px;
    }

    .btn {
        width: 100%;
        min-height: 50px;
    }

    .hero-visual-frame {
        min-height: 320px;
    }

    .hero-visual-inner {
        min-height: 320px;
        padding: 16px;
    }

    .hero-typing-node-a {
        top: 14px;
        left: 14px;
    }

    .hero-typing-node-b {
        top: 62px;
        right: 14px;
    }

    .hero-typing-node-c {
        bottom: 98px;
        left: 14px;
    }

    .hero-typing-node-d {
        right: 14px;
        bottom: 54px;
    }

    .hero-node-dot {
        width: 13px;
        height: 13px;
        flex-basis: 13px;
    }

    .hero-typing-label {
        font-size: 0.8rem;
    }

    .hero-hover-panel {
        width: 234px;
        max-width: calc(100vw - 48px);
    }

    .hero-hover-panel-top {
        height: 32px;
    }

    .hero-hover-panel-body p {
        font-size: 0.65rem;
        line-height: 1.78;
    }

    .hero-bottom-micro span {
        font-size: 0.5rem;
        line-height: 1.65;
    }

    .page-section {
        padding: 72px 0 72px;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .section-heading h1,
    .section-heading h2,
    .content-block h1,
    .contact-copy h1 {
        font-size: 2.25rem;
        line-height: 1.02;
    }

    .services-section {
        padding: 24px 0 72px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        min-height: auto;
        padding: 20px 20px 22px;
    }

    .service-card-top {
        margin-bottom: 22px;
    }

    .service-card h3 {
        font-size: 1.22rem;
    }

    .contact-meta-list {
        margin-top: 22px;
    }

    .contact-form-shell {
        padding: 20px;
    }

    .site-footer {
        padding: 24px 0 32px;
    }

    .footer-inner p {
        font-size: 0.9rem;
    }
}