:root {
    --ink: #f5f7f5;
    --muted: rgba(239, 244, 241, 0.72);
    --line: rgba(255, 255, 255, 0.18);
    --panel: rgba(4, 12, 18, 0.52);
    --accent: #d9ff72;
    --accent-cool: #79e8ff;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #071018;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #071018;
    letter-spacing: -0.015em;
}

a {
    color: inherit;
}

.backdrop {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: #071018;
}

.backdrop__image {
    position: absolute;
    inset: -3%;
    width: 106%;
    height: 106%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.1s var(--ease), transform 12s linear;
}

.backdrop__image.is-active {
    opacity: 1;
    transform: scale(1.09);
}

.backdrop__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(74, 174, 209, 0.16), transparent 34%),
        linear-gradient(112deg, rgba(2, 9, 14, 0.89) 4%, rgba(2, 11, 18, 0.72) 44%, rgba(4, 16, 24, 0.32) 78%),
        linear-gradient(0deg, rgba(2, 8, 12, 0.76), transparent 52%);
}

.backdrop__grain {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
    pointer-events: none;
}

.customer-atmosphere {
    --scene-top: #071421;
    --scene-bottom: #02070c;
    --scene-accent: 121 232 255;
    --scene-secondary: 217 255 114;
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgb(var(--scene-accent) / 0.11), transparent 32%),
        radial-gradient(circle at 18% 82%, rgb(var(--scene-secondary) / 0.07), transparent 38%),
        linear-gradient(145deg, var(--scene-top), var(--scene-bottom) 72%);
    transition: background 1.2s var(--ease);
}

.customer-atmosphere.theme-midnight {
    --scene-top: #071827;
    --scene-bottom: #02070d;
    --scene-accent: 121 232 255;
    --scene-secondary: 217 255 114;
}

.customer-atmosphere.theme-wine {
    --scene-top: #2a0d18;
    --scene-bottom: #090307;
    --scene-accent: 255 145 119;
    --scene-secondary: 255 189 221;
}

.customer-atmosphere.theme-forest {
    --scene-top: #0c291e;
    --scene-bottom: #030a07;
    --scene-accent: 133 236 184;
    --scene-secondary: 215 255 145;
}

.atmosphere__geometry,
.atmosphere__particles,
.atmosphere__veil {
    position: absolute;
    inset: 0;
}

.atmosphere__geometry::before,
.atmosphere__geometry::after {
    content: '';
    position: absolute;
    inset: -20%;
    opacity: 0;
    transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.atmosphere__particles span {
    --x: 50%;
    --y: 50%;
    --size: 3px;
    --delay: 0s;
    --duration: 22s;
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    opacity: 0;
    background: rgb(var(--scene-accent));
    box-shadow: 0 0 1rem rgb(var(--scene-accent) / 0.5);
    transition: opacity 1.1s var(--ease), background 1.1s var(--ease);
}

.atmosphere__particles span:nth-child(1)  { --x: 7%;  --y: 18%; --size: 2px; --delay: -2s;  --duration: 21s; }
.atmosphere__particles span:nth-child(2)  { --x: 14%; --y: 72%; --size: 4px; --delay: -9s;  --duration: 29s; }
.atmosphere__particles span:nth-child(3)  { --x: 21%; --y: 38%; --size: 2px; --delay: -15s; --duration: 24s; }
.atmosphere__particles span:nth-child(4)  { --x: 28%; --y: 88%; --size: 3px; --delay: -5s;  --duration: 31s; }
.atmosphere__particles span:nth-child(5)  { --x: 35%; --y: 12%; --size: 5px; --delay: -18s; --duration: 27s; }
.atmosphere__particles span:nth-child(6)  { --x: 42%; --y: 58%; --size: 2px; --delay: -11s; --duration: 23s; }
.atmosphere__particles span:nth-child(7)  { --x: 49%; --y: 26%; --size: 3px; --delay: -7s;  --duration: 30s; }
.atmosphere__particles span:nth-child(8)  { --x: 56%; --y: 78%; --size: 4px; --delay: -22s; --duration: 34s; }
.atmosphere__particles span:nth-child(9)  { --x: 63%; --y: 44%; --size: 2px; --delay: -13s; --duration: 26s; }
.atmosphere__particles span:nth-child(10) { --x: 70%; --y: 9%;  --size: 3px; --delay: -3s;  --duration: 28s; }
.atmosphere__particles span:nth-child(11) { --x: 77%; --y: 66%; --size: 5px; --delay: -17s; --duration: 32s; }
.atmosphere__particles span:nth-child(12) { --x: 84%; --y: 34%; --size: 2px; --delay: -8s;  --duration: 25s; }
.atmosphere__particles span:nth-child(13) { --x: 91%; --y: 84%; --size: 3px; --delay: -20s; --duration: 30s; }
.atmosphere__particles span:nth-child(14) { --x: 11%; --y: 48%; --size: 3px; --delay: -12s; --duration: 33s; }
.atmosphere__particles span:nth-child(15) { --x: 18%; --y: 7%;  --size: 2px; --delay: -24s; --duration: 28s; }
.atmosphere__particles span:nth-child(16) { --x: 31%; --y: 62%; --size: 4px; --delay: -6s;  --duration: 35s; }
.atmosphere__particles span:nth-child(17) { --x: 45%; --y: 91%; --size: 2px; --delay: -19s; --duration: 27s; }
.atmosphere__particles span:nth-child(18) { --x: 53%; --y: 43%; --size: 3px; --delay: -10s; --duration: 31s; }
.atmosphere__particles span:nth-child(19) { --x: 61%; --y: 17%; --size: 4px; --delay: -14s; --duration: 29s; }
.atmosphere__particles span:nth-child(20) { --x: 73%; --y: 92%; --size: 2px; --delay: -4s;  --duration: 24s; }
.atmosphere__particles span:nth-child(21) { --x: 81%; --y: 52%; --size: 3px; --delay: -21s; --duration: 36s; }
.atmosphere__particles span:nth-child(22) { --x: 88%; --y: 14%; --size: 4px; --delay: -16s; --duration: 30s; }
.atmosphere__particles span:nth-child(23) { --x: 95%; --y: 61%; --size: 2px; --delay: -1s;  --duration: 26s; }
.atmosphere__particles span:nth-child(24) { --x: 39%; --y: 31%; --size: 3px; --delay: -23s; --duration: 32s; }

.atmosphere__veil {
    background:
        linear-gradient(112deg, rgba(1, 5, 8, 0.72) 4%, rgba(1, 7, 11, 0.48) 46%, rgba(2, 9, 13, 0.12) 82%),
        linear-gradient(0deg, rgba(1, 5, 8, 0.52), transparent 55%);
}

.scene-network .atmosphere__geometry::before {
    opacity: 0.14;
    background-image:
        linear-gradient(rgb(var(--scene-accent) / 0.26) 1px, transparent 1px),
        linear-gradient(90deg, rgb(var(--scene-accent) / 0.26) 1px, transparent 1px);
    background-size: 7rem 7rem;
    transform: rotate(-10deg) scale(1.18);
    animation: geometry-drift 34s ease-in-out infinite alternate;
}

.scene-network .atmosphere__geometry::after {
    inset: 8% 5%;
    opacity: 0.24;
    background: linear-gradient(114deg, transparent 12%, rgb(var(--scene-secondary) / 0.34) 12.1%, transparent 12.4%, transparent 58%, rgb(var(--scene-accent) / 0.22) 58.1%, transparent 58.4%);
    animation: geometry-breathe 13s ease-in-out infinite alternate;
}

.scene-network .atmosphere__particles span {
    opacity: 0.48;
    animation: node-drift var(--duration) ease-in-out var(--delay) infinite alternate;
}

.scene-bokeh .atmosphere__geometry::before {
    inset: 10% 0 0 42%;
    opacity: 0.22;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(var(--scene-accent) / 0.35), transparent 62%);
    filter: blur(36px);
    animation: bokeh-breathe 18s ease-in-out infinite alternate;
}

.scene-bokeh .atmosphere__particles span {
    width: 38px;
    height: 38px;
    opacity: 0.13;
    filter: blur(7px);
    background: radial-gradient(circle, rgb(var(--scene-accent) / 0.8), rgb(var(--scene-secondary) / 0.12) 55%, transparent 72%);
    box-shadow: none;
    animation: bokeh-float var(--duration) ease-in-out var(--delay) infinite alternate;
}

.scene-bokeh .atmosphere__particles span:nth-child(3n) {
    width: 68px;
    height: 68px;
}

.scene-bokeh .atmosphere__particles span:nth-child(5n) {
    width: 24px;
    height: 24px;
}

.scene-embers .atmosphere__geometry::before {
    inset: auto -10% -35% 20%;
    height: 72%;
    opacity: 0.21;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgb(var(--scene-accent) / 0.35), transparent 68%);
    filter: blur(50px);
    animation: geometry-breathe 11s ease-in-out infinite alternate;
}

.scene-embers .atmosphere__particles span {
    top: auto;
    bottom: -8%;
    opacity: 0;
    background: rgb(var(--scene-accent));
    animation: ember-rise var(--duration) linear var(--delay) infinite;
}

.scene-grid .atmosphere__geometry::before {
    inset: 35% -18% -36%;
    opacity: 0.2;
    background-image:
        linear-gradient(rgb(var(--scene-accent) / 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgb(var(--scene-accent) / 0.35) 1px, transparent 1px);
    background-size: 5rem 4rem;
    transform: perspective(520px) rotateX(64deg) rotateZ(-4deg);
    transform-origin: center top;
    animation: grid-travel 22s linear infinite;
}

.scene-grid .atmosphere__geometry::after {
    inset: 12% 4% 10% 36%;
    opacity: 0.25;
    background:
        linear-gradient(90deg, transparent 11%, rgb(var(--scene-accent) / 0.42) 11.2%, transparent 11.5%),
        linear-gradient(0deg, transparent 68%, rgb(var(--scene-secondary) / 0.28) 68.2%, transparent 68.5%);
    animation: geometry-drift 28s ease-in-out infinite alternate;
}

.scene-grid .atmosphere__particles span {
    width: 14px;
    height: 5px;
    border-radius: 1px;
    opacity: 0.2;
    box-shadow: 0 0 1.4rem rgb(var(--scene-accent) / 0.32);
    animation: block-pulse 12s ease-in-out var(--delay) infinite alternate;
}

.scene-stars .atmosphere__geometry::before {
    inset: 4% -20% 55% 30%;
    opacity: 0.2;
    background: linear-gradient(112deg, transparent 48%, rgb(var(--scene-accent) / 0.7) 50%, transparent 52%);
    filter: blur(1px);
    animation: distant-light 16s ease-in-out infinite;
}

.scene-stars .atmosphere__particles span {
    opacity: 0.44;
    animation: star-twinkle 8s ease-in-out var(--delay) infinite alternate;
}

.scene-stars .atmosphere__particles span:nth-child(3n) {
    background: rgb(var(--scene-secondary));
}

@keyframes geometry-drift {
    from { transform: rotate(-10deg) scale(1.18) translate3d(-1%, -1%, 0); }
    to { transform: rotate(-7deg) scale(1.22) translate3d(2%, 1.5%, 0); }
}

@keyframes geometry-breathe {
    from { opacity: 0.12; transform: scale(0.96); }
    to { opacity: 0.3; transform: scale(1.04); }
}

@keyframes node-drift {
    from { transform: translate3d(-8px, 6px, 0); opacity: 0.18; }
    to { transform: translate3d(14px, -12px, 0); opacity: 0.62; }
}

@keyframes bokeh-breathe {
    from { transform: translate3d(-4%, 2%, 0) scale(0.92); }
    to { transform: translate3d(5%, -3%, 0) scale(1.08); }
}

@keyframes bokeh-float {
    from { transform: translate3d(-12px, 10px, 0) scale(0.82); opacity: 0.05; }
    to { transform: translate3d(18px, -22px, 0) scale(1.16); opacity: 0.2; }
}

@keyframes ember-rise {
    0% { transform: translate3d(0, 0, 0) scale(0.65); opacity: 0; }
    12% { opacity: 0.45; }
    72% { opacity: 0.18; }
    100% { transform: translate3d(28px, -108vh, 0) scale(0.1); opacity: 0; }
}

@keyframes grid-travel {
    from { background-position: 0 0; }
    to { background-position: 0 8rem; }
}

@keyframes block-pulse {
    from { transform: translate3d(-6px, 4px, 0); opacity: 0.06; }
    to { transform: translate3d(10px, -8px, 0); opacity: 0.28; }
}

@keyframes distant-light {
    0%, 35% { transform: translate3d(-34%, 12%, 0); opacity: 0; }
    48%, 58% { opacity: 0.26; }
    72%, 100% { transform: translate3d(38%, -8%, 0); opacity: 0; }
}

@keyframes star-twinkle {
    from { transform: scale(0.55); opacity: 0.12; }
    to { transform: scale(1.35); opacity: 0.58; }
}

@keyframes contact-grid-travel {
    from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    to { background-position: 3rem -2rem, -2rem 3rem, 2rem 2rem, 0 6rem, 6rem 0; }
}

@keyframes contact-glow {
    from { transform: translate3d(-4%, 2%, 0) scale(0.92); opacity: 0.35; }
    to { transform: translate3d(5%, -3%, 0) scale(1.08); opacity: 0.72; }
}

@keyframes contact-dots-drift {
    from { background-position: 0 0, 0 0, 0 0; transform: rotate(-7deg) scale(1.16) translate3d(-1%, 0, 0); }
    to { background-position: 4rem -3rem, -3rem 5rem, 2rem 3rem; transform: rotate(-4deg) scale(1.2) translate3d(2%, -1%, 0); }
}

@keyframes contact-rings-breathe {
    from { transform: scale(0.98) translate3d(-1%, 1%, 0); opacity: 0.1; }
    to { transform: scale(1.08) translate3d(2%, -2%, 0); opacity: 0.2; }
}

.site-header,
footer {
    position: fixed;
    z-index: 10;
    left: clamp(1.25rem, 4vw, 4rem);
    right: clamp(1.25rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 320ms var(--ease);
}

.site-header {
    top: 1.4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand__mark {
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--accent);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.brand--powered {
    gap: 0.42rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 560;
}

.brand--powered strong {
    color: var(--accent);
    font-size: 0.84rem;
    letter-spacing: 0.1em;
}

.time-chip {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0.62rem 0.82rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.74rem;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    transition: color 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
}

.time-chip__dot {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 1rem var(--accent);
}

.hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
    padding: clamp(7rem, 15vh, 10rem) clamp(1.25rem, 7vw, 7.5rem) clamp(6rem, 12vh, 8rem);
}

.hero__copy {
    max-width: 70rem;
}

.eyebrow {
    margin: 0 0 1.1rem;
    color: var(--accent);
    font-size: clamp(0.72rem, 1vw, 0.86rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(4rem, 13vw, 11rem);
    font-weight: 620;
    line-height: 0.82;
    letter-spacing: -0.075em;
    text-wrap: balance;
}

.lead {
    margin: 2rem 0 2.3rem;
    max-width: 39rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.45rem, 3vw, 2.75rem);
    font-weight: 350;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.primary-link,
.powered-by {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    text-decoration: none;
    background: rgba(2, 11, 16, 0.32);
    backdrop-filter: blur(16px);
    transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.primary-link:hover,
.primary-link:focus-visible,
.powered-by:hover,
.powered-by:focus-visible {
    border-color: rgba(217, 255, 114, 0.7);
    background: rgba(2, 11, 16, 0.62);
    transform: translateY(-2px);
    outline: none;
}

.powered-by span {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.powered-by strong {
    color: var(--accent);
}

.hero__note {
    margin: 0 0 0.2rem;
    color: var(--muted);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.services {
    min-height: 100svh;
    padding: clamp(6rem, 12vw, 11rem) clamp(1.25rem, 7vw, 7.5rem);
    background: rgba(3, 10, 15, 0.76);
    backdrop-filter: blur(22px);
}

.services__intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(2rem, 9vw, 10rem);
    align-items: end;
    margin-bottom: clamp(4rem, 8vw, 7.5rem);
}

.services__intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -0.2rem;
}

.services h2,
.statement h2,
.contact h2 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 6.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.services__intro > p,
.statement > p {
    max-width: 37rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.55;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.service-grid article {
    min-height: 21rem;
    padding: 1.4rem clamp(1rem, 2.5vw, 2.4rem) 2rem;
    border-right: 1px solid var(--line);
}

.service-grid article:first-child {
    padding-left: 0;
}

.service-grid article:last-child {
    border-right: 0;
    padding-right: 0;
}

.service-grid span {
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.service-grid h3 {
    margin: 5.5rem 0 1rem;
    font-size: clamp(1.45rem, 2.6vw, 2.25rem);
    font-weight: 520;
    letter-spacing: -0.04em;
}

.service-grid p {
    max-width: 29rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.statement {
    min-height: 90svh;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(2rem, 9vw, 10rem);
    align-items: center;
    padding: clamp(6rem, 12vw, 11rem) clamp(1.25rem, 7vw, 7.5rem);
    background:
        linear-gradient(115deg, rgba(5, 14, 20, 0.88), rgba(5, 20, 28, 0.62)),
        url('assets/architecture-pinnacle.jpg') center / cover fixed;
}

.statement .eyebrow {
    grid-column: 1 / -1;
    align-self: end;
    margin-bottom: -2rem;
}

.contact {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 78svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(6rem, 12vw, 11rem) clamp(1.25rem, 7vw, 7.5rem) 9rem;
    background: #d9ff72;
    color: #071018;
}

.contact__atmosphere {
    position: absolute;
    inset: -25%;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 14% 24%, rgba(7, 16, 24, 0.78) 0 2px, transparent 3px),
        radial-gradient(circle at 77% 66%, rgba(7, 16, 24, 0.64) 0 3px, transparent 4px),
        radial-gradient(circle at 42% 83%, rgba(7, 16, 24, 0.5) 0 2px, transparent 3px),
        linear-gradient(rgba(7, 16, 24, 0.24) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 16, 24, 0.24) 1px, transparent 1px);
    background-size: 17rem 14rem, 23rem 19rem, 13rem 17rem, 6rem 6rem, 6rem 6rem;
    transform: perspective(720px) rotateX(58deg) rotateZ(-5deg) scale(1.24);
    transform-origin: center 38%;
    animation: contact-grid-travel 30s linear infinite;
}

.contact__atmosphere::after {
    content: '';
    position: absolute;
    inset: 18% 8% 12% 42%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 16, 24, 0.22), transparent 66%);
    filter: blur(32px);
    animation: contact-glow 15s ease-in-out infinite alternate;
}

.contact.contact-dots .contact__atmosphere {
    opacity: 0.2;
    background-image:
        radial-gradient(circle, rgba(7, 16, 24, 0.68) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(7, 16, 24, 0.42) 0 4px, transparent 6px),
        radial-gradient(circle, rgba(7, 16, 24, 0.28) 0 1px, transparent 3px);
    background-size: 9rem 9rem, 17rem 17rem, 5rem 5rem;
    transform: rotate(-7deg) scale(1.16);
    animation: contact-dots-drift 26s ease-in-out infinite alternate;
}

.contact.contact-rings .contact__atmosphere {
    opacity: 0.16;
    background-image:
        repeating-radial-gradient(circle at 72% 38%, transparent 0 4.8rem, rgba(7, 16, 24, 0.28) 4.9rem 5rem),
        linear-gradient(118deg, transparent 18%, rgba(7, 16, 24, 0.24) 18.1%, transparent 18.35%, transparent 64%, rgba(7, 16, 24, 0.2) 64.1%, transparent 64.35%);
    background-size: auto;
    transform: scale(1.04);
    animation: contact-rings-breathe 18s ease-in-out infinite alternate;
}

.contact__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.contact .eyebrow {
    color: rgba(7, 16, 24, 0.62);
}

.contact h2 {
    max-width: none;
    font-size: clamp(4rem, 12vw, 11rem);
}

.contact__content > a {
    align-self: flex-start;
    margin-top: clamp(2.5rem, 6vw, 5rem);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(7, 16, 24, 0.38);
    text-decoration: none;
    font-size: clamp(1.15rem, 2.5vw, 2rem);
}

.scene-toggle {
    position: fixed;
    z-index: 11;
    right: clamp(1.25rem, 4vw, 4rem);
    bottom: 4.5rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    font-size: 1.05rem;
    background: rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
    cursor: pointer;
    opacity: 1;
    transition: transform 300ms var(--ease), border-color 200ms ease, color 320ms var(--ease), background 320ms var(--ease), opacity 240ms var(--ease);
}

.domian-view {
    isolation: isolate;
}

.domian-view.header-on-light .site-header {
    color: #071018;
}

.domian-view.header-on-light .brand__mark {
    color: #071018;
    border-color: rgba(7, 16, 24, 0.28);
    background: rgba(255, 255, 255, 0.2);
}

.domian-view.header-on-light .time-chip {
    color: rgba(7, 16, 24, 0.72);
    border-color: rgba(7, 16, 24, 0.28);
    background: rgba(255, 255, 255, 0.2);
}

.domian-view.header-on-light .time-chip__dot {
    background: #071018;
    box-shadow: 0 0 1rem rgba(7, 16, 24, 0.45);
}

.domian-view.footer-on-light footer {
    color: rgba(7, 16, 24, 0.64);
}

.domian-view.toggle-on-light .scene-toggle {
    color: #071018;
    border-color: rgba(7, 16, 24, 0.28);
    background: rgba(7, 16, 24, 0.1);
}

.domian-view.toggle-hidden .scene-toggle {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.82);
}

.scene-toggle:hover,
.scene-toggle:focus-visible {
    transform: rotate(35deg);
    border-color: var(--accent);
    outline: none;
}

footer {
    bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

footer a {
    text-underline-offset: 0.25em;
}

.customer-view {
    overflow: hidden;
    isolation: isolate;
}

.customer-view main {
    position: relative;
    z-index: 1;
}

.customer-view .hero {
    align-items: center;
}

.customer-view h1 {
    font-size: clamp(3.5rem, 10vw, 9rem);
}

.customer-view .lead {
    max-width: 34rem;
}

@media (max-width: 720px) {
    .site-header {
        top: 1rem;
    }

    .time-chip [data-greeting],
    .time-chip__dot {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        align-items: end;
        padding-top: 8rem;
    }

    h1 {
        font-size: clamp(3.25rem, 19vw, 6rem);
        line-height: 0.88;
    }

    .customer-view h1 {
        font-size: clamp(2.8rem, 10vw, 4.75rem);
    }

    .lead {
        margin-top: 1.5rem;
    }

    .hero__note {
        display: none;
    }

    .services {
        min-height: 100svh;
    }

    .services__intro,
    .statement {
        grid-template-columns: 1fr;
    }

    .services__intro .eyebrow,
    .statement .eyebrow {
        grid-column: auto;
        margin-bottom: 0;
    }

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

    .service-grid article,
    .service-grid article:first-child,
    .service-grid article:last-child {
        min-height: 0;
        padding: 1.4rem 0 2.8rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-grid article:last-child {
        border-bottom: 0;
    }

    .service-grid h3 {
        margin-top: 2.5rem;
    }

    .statement {
        background-attachment: scroll;
    }

    .scene-toggle {
        bottom: 3.6rem;
    }
}

@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;
    }
}
