* {
    font-family: 'Outfit', 'Noto Sans SC', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: var(--color-bg-deep);
    --surface: rgba(255, 255, 255, 0.055);
    --surface-strong: rgba(255, 255, 255, 0.1);
    --line: var(--color-border-strong);
    --line-soft: var(--color-border);
    --text: var(--color-text);
    --muted: rgba(243, 240, 232, 0.66);
    --faint: rgba(243, 240, 232, 0.43);
    --gold: var(--color-gold);
    --olive: #8d9271;
    --moss: #455244;
    --ink: var(--color-bg-deep);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 16% 8%, rgba(141, 146, 113, 0.16), transparent 27rem),
        radial-gradient(circle at 88% 14%, rgba(200, 164, 93, 0.12), transparent 26rem),
        linear-gradient(180deg, #0d0f0d 0%, var(--bg) 46%, #0f100d 100%);
    min-height: 100vh;
    color: var(--text);
    overflow-x: hidden;
}

button {
    font: inherit;
}

.arch-canvas-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.24;
    mix-blend-mode: screen;
}

.arch-grid-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

.hero-glow {
    position: fixed;
    inset: -20% -10% auto;
    height: 58vh;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 48% 16%, rgba(200, 164, 93, 0.18), transparent 46%),
        radial-gradient(ellipse at 70% 22%, rgba(69, 82, 68, 0.2), transparent 42%);
    filter: blur(4px);
}

#landingContent {
    position: relative;
    z-index: 5;
    width: 100%;
    overflow: hidden;
    --btn-radius: var(--radius-pill);
}

.landing-nav,
.hero-section,
.capabilities-section,
.workflow-section,
.pricing-section,
.cta-section,
footer {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
}

.landing-nav {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-nav .brand-logo-xl {
    height: 62px;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.32));
}

.nav-actions,
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    min-height: 46px;
    border-radius: var(--btn-radius);
    padding: 0 22px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--btn-transition);
}

.btn-primary {
    background: var(--text);
    color: var(--ink);
    font-weight: 650;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.045);
    border-color: var(--line);
    color: var(--text);
    font-weight: 520;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.085);
}

.btn-compact {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
}

.hero-section {
    min-height: calc(100dvh - 108px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: center;
    padding: 18px 0 64px;
    position: relative;
}

.hero-copy {
    grid-area: 1 / 1;
    position: relative;
    z-index: 3;
    width: min(100%, 1220px);
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eyebrow,
.section-kicker,
.cta-section span,
.motion-caption span {
    color: var(--gold);
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 650;
}

.hero-copy h1 {
    margin-top: 24px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 700;
    width: 100%;
    max-width: 1220px;
    text-shadow: 0 26px 90px rgba(0, 0, 0, 0.72);
}

.hero-copy p {
    margin-top: 28px;
    max-width: 760px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.72;
    text-shadow: 0 18px 56px rgba(0, 0, 0, 0.86);
}

.hero-copy p strong {
    color: var(--gold);
    font-weight: 650;
}

.hero-actions {
    margin-top: 36px;
    justify-content: center;
}

.motion-showcase {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 100vw;
    height: min(560px, calc(100dvh - 190px));
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 0;
    opacity: 0.72;
    pointer-events: none;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
}

.motion-showcase::before,
.motion-showcase::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 4;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 16% 14% 18%;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%, rgba(8, 9, 8, 0.72) 0%, rgba(8, 9, 8, 0.52) 34%, rgba(8, 9, 8, 0) 72%);
}

.motion-showcase::before {
    top: 0;
    height: 30%;
    background: linear-gradient(180deg, var(--bg), rgba(8, 9, 8, 0));
}

.motion-showcase::after {
    bottom: 0;
    height: 34%;
    background: linear-gradient(0deg, var(--bg), rgba(8, 9, 8, 0));
}

.motion-card {
    position: relative;
    overflow: hidden;
    min-height: 0;
    border-radius: 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        #11130f;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow: none;
    transform: translateZ(0);
}

.home-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.has-home-media .panel-scene,
.solution-visual.has-home-media > span {
    display: none;
}

.capability-preview.has-home-media::after {
    display: none;
}

.cta-section .home-media {
    opacity: 0.42;
    filter: saturate(0.85) contrast(1.05);
}

.motion-card:first-child {
    border-left: 0;
}

.motion-card-large {
    grid-column: auto;
    grid-row: auto;
}

.motion-card:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    transform: none;
}

.motion-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    transform: none;
}

.motion-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    transform: none;
}

.motion-card-wide {
    grid-column: auto;
}

.motion-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.42;
}

.motion-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 9, 8, 0.28) 0%, transparent 26%, rgba(0, 0, 0, 0.68) 100%),
        linear-gradient(90deg, rgba(8, 9, 8, 0.48), transparent 16%, transparent 84%, rgba(8, 9, 8, 0.48));
}

.panel-scene {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.motion-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-section .motion-caption {
    display: none;
}

.motion-caption strong {
    color: var(--text);
    font-size: 18px;
    font-weight: 640;
}

.tower,
.variant,
.frame,
.source-plane,
.ground-line,
.option-line,
.room-wall,
.sofa-line,
.camera-track,
.light-beam,
.play-mark,
.render-sweep {
    position: absolute;
    display: block;
}

.facade-scene {
    background: linear-gradient(145deg, rgba(33, 45, 38, 0.82), rgba(17, 18, 15, 0.94));
}

.source-plane {
    left: 10%;
    top: 20%;
    width: 23%;
    height: 27%;
    border: 1px dashed rgba(200, 164, 93, 0.42);
    background:
        linear-gradient(135deg, rgba(200, 164, 93, 0.14), transparent),
        rgba(255, 255, 255, 0.035);
    transform: perspective(420px) rotateY(18deg) rotateZ(-2deg);
    opacity: 0.9;
}

.ground-line {
    left: 13%;
    right: 12%;
    bottom: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.tower {
    bottom: 72px;
    width: 22%;
    background:
        repeating-linear-gradient(90deg, transparent 0 15px, rgba(255, 255, 255, 0.12) 16px 17px),
        linear-gradient(180deg, rgba(234, 225, 203, 0.42), rgba(92, 102, 83, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: skewY(-6deg);
    animation: towerDrift 8s ease-in-out infinite;
}

.tower-a {
    left: 15%;
    height: 54%;
}

.tower-b {
    left: 38%;
    height: 68%;
    animation-delay: -1.7s;
}

.tower-c {
    left: 62%;
    height: 47%;
    animation-delay: -3.1s;
}

.render-sweep {
    top: 0;
    bottom: 0;
    width: 34%;
    left: -36%;
    background: linear-gradient(90deg, transparent, rgba(200, 164, 93, 0.22), transparent);
    animation: sweep 6.5s ease-in-out infinite;
}

.interior-scene {
    background: linear-gradient(120deg, rgba(30, 36, 31, 0.95), rgba(16, 16, 14, 0.95));
}

.room-wall {
    inset: 18% 12% 22%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left-color: rgba(200, 164, 93, 0.35);
    transform: perspective(420px) rotateY(-18deg);
}

.light-beam {
    display: none;
}

.sofa-line {
    left: 18%;
    right: 18%;
    bottom: 28%;
    height: 30px;
    border-radius: 999px 999px 10px 10px;
    background: rgba(238, 230, 210, 0.22);
}

.variation-scene {
    background: linear-gradient(135deg, rgba(38, 47, 41, 0.95), rgba(13, 14, 12, 0.94));
}

.option-line {
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(200, 164, 93, 0.16);
}

.option-line-a {
    top: 34%;
}

.option-line-b {
    top: 58%;
}

.variant {
    top: 25%;
    bottom: 26%;
    width: 26%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        repeating-linear-gradient(0deg, transparent 0 17px, rgba(255, 255, 255, 0.12) 18px 19px),
        rgba(255, 255, 255, 0.06);
    animation: variantFocus 6s ease-in-out infinite;
}

.variant-one {
    left: 12%;
}

.variant-two {
    left: 37%;
    animation-delay: -2s;
}

.variant-three {
    left: 62%;
    animation-delay: -4s;
}

.video-scene {
    background: linear-gradient(100deg, rgba(14, 16, 13, 0.96), rgba(44, 55, 46, 0.86));
}

.camera-track {
    left: 9%;
    right: 9%;
    top: 46%;
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
}

.frame {
    top: 20%;
    width: 28%;
    height: 42%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(200, 164, 93, 0.14), transparent),
        rgba(255, 255, 255, 0.045);
    animation: frameMove 7s ease-in-out infinite;
}

.frame-one {
    left: 16%;
}

.frame-two {
    right: 18%;
    animation-delay: -2.2s;
}

.play-mark {
    top: 38%;
    left: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%);
}

.play-mark::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 17px;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 16px solid var(--text);
}

.capabilities-section,
.workflow-section,
.pricing-section {
    padding: 92px 0 104px;
    border-top: 1px solid var(--line-soft);
}

.section-heading {
    max-width: 980px;
}

.pricing-section .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing-section .section-heading p {
    margin-left: auto;
    margin-right: auto;
}

.section-heading p {
    margin-top: 18px;
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

.section-heading h2,
.cta-section h2 {
    max-width: 980px;
    margin-top: 14px;
    font-size: clamp(30px, 3.25vw, 52px);
    line-height: 1.12;
    font-weight: 680;
}

.capability-grid,
.pricing-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-grid {
    gap: 18px;
}

.capability-showcase {
    margin-top: 0;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 42px;
    align-items: stretch;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 72% 22%, rgba(200, 164, 93, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.capability-copy {
    padding: 42px 0 42px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.capability-copy h3 {
    max-width: 460px;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.12;
    font-weight: 700;
}

.capability-copy p {
    max-width: 480px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.82;
}

.capability-previews {
    min-height: 520px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    padding: 24px;
}

.capability-preview {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(8, 9, 8, 0.68)),
        #151814;
}

.capability-preview::before,
.capability-preview::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.capability-preview::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.4;
}

.capability-preview::after {
    left: 16%;
    right: 16%;
    bottom: 24%;
    height: 42%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background:
        repeating-linear-gradient(90deg, transparent 0 15px, rgba(255, 255, 255, 0.12) 16px 17px),
        linear-gradient(180deg, rgba(237, 232, 218, 0.34), rgba(86, 99, 86, 0.16));
    transform: skewY(-5deg);
}

.capability-preview span,
.capability-preview strong {
    position: absolute;
    z-index: 2;
}

.capability-preview span {
    left: 22px;
    top: 20px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 720;
}

.capability-preview strong {
    left: 22px;
    right: 22px;
    bottom: 22px;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
}

.preview-image {
    grid-row: 1 / 3;
    background:
        radial-gradient(circle at 62% 22%, rgba(200, 164, 93, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(45, 58, 50, 0.88), rgba(9, 10, 9, 0.98));
}

.preview-image::after {
    left: 18%;
    right: 18%;
    bottom: 22%;
    height: 56%;
}

.preview-video {
    background:
        linear-gradient(135deg, rgba(29, 42, 43, 0.96), rgba(8, 9, 8, 0.98));
}

.preview-video::after {
    left: 13%;
    right: 13%;
    bottom: 32%;
    height: 28%;
    border-radius: 999px 999px 12px 12px;
    transform: none;
}

.preview-agent {
    background:
        radial-gradient(circle at 28% 24%, rgba(200, 164, 93, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(40, 43, 34, 0.94), rgba(8, 9, 8, 0.98));
}

.preview-agent::after {
    left: 24%;
    right: 24%;
    bottom: 34%;
    height: 24%;
    border-radius: 22px;
    transform: none;
}

.capability-panel {
    position: relative;
    min-height: 330px;
    padding: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        var(--bg);
    border: 1px solid var(--line);
    overflow: hidden;
}

.capability-panel::after {
    content: attr(data-index);
    position: absolute;
    right: 20px;
    bottom: -12px;
    color: rgba(255, 255, 255, 0.045);
    font-size: 128px;
    line-height: 1;
    font-weight: 720;
}

.capability-panel:nth-child(2) {
    transform: translateY(28px);
}

.capability-panel:nth-child(3) {
    transform: translateY(56px);
}

.capability-panel span,
.pricing-panel span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 650;
    text-transform: uppercase;
}

.capability-panel h3 {
    margin-top: 94px;
    font-size: 32px;
    font-weight: 670;
}

.capability-panel p,
.pricing-panel p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.capability-tags span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 16px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.025);
    font-size: 14px;
}

.workflow-section {
    width: min(1440px, calc(100% - 48px));
    max-width: 1440px;
    padding: 92px 0 104px;
    background: transparent;
    color: var(--text);
    border-top: 1px solid var(--line-soft);
}

.workflow-heading {
    max-width: 980px;
    margin: 0;
    text-align: left;
}

.workflow-heading h2 {
    max-width: 980px;
    font-size: clamp(30px, 3.25vw, 52px);
    line-height: 1.12;
    font-weight: 680;
}

.workflow-heading p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
    font-weight: 400;
}

.solution-stage {
    position: relative;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 48px;
    align-items: stretch;
}

.solution-visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(200, 164, 93, 0.1), rgba(9, 23, 26, 0.24)),
        linear-gradient(135deg, #1b2623 0%, #5d5d4f 48%, #111817 100%);
    border: 1px solid var(--line);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.solution-visual::before,
.solution-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.solution-visual::before {
    background:
        radial-gradient(circle at 52% 18%, rgba(200, 164, 93, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(4, 13, 16, 0.66));
    z-index: 4;
}

.solution-visual::after {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: 0.2;
    mask-image: linear-gradient(180deg, transparent, #000 30%, #000 78%, transparent);
    z-index: 5;
}

.solution-skyline,
.solution-water,
.solution-bridge,
.solution-island,
.solution-panel {
    position: absolute;
    display: block;
}

.solution-skyline {
    bottom: 124px;
    width: 16%;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background:
        repeating-linear-gradient(90deg, transparent 0 13px, rgba(255, 255, 255, 0.22) 14px 15px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(31, 47, 50, 0.56));
    transform: skewY(-5deg);
    z-index: 1;
}

.skyline-one {
    left: 10%;
    height: 44%;
}

.skyline-two {
    left: 27%;
    height: 66%;
}

.skyline-three {
    left: 44%;
    height: 48%;
}

.solution-skyline::before,
.solution-skyline::after {
    content: "";
    position: absolute;
    background: inherit;
    border: inherit;
    inset: auto;
}

.solution-skyline::before {
    left: 112%;
    bottom: -8%;
    width: 78%;
    height: 62%;
}

.solution-skyline::after {
    left: 210%;
    bottom: 8%;
    width: 92%;
    height: 84%;
}

.solution-water {
    left: -8%;
    right: -8%;
    bottom: -18%;
    height: 38%;
    border-radius: 50% 50% 0 0;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 16px),
        linear-gradient(180deg, rgba(28, 71, 77, 0.42), rgba(7, 20, 23, 0.94));
    transform: rotate(-3deg);
    z-index: 2;
}

.solution-bridge {
    left: 9%;
    right: 17%;
    bottom: 23%;
    height: 2px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), rgba(200, 164, 93, 0.34), transparent);
    transform: rotate(-3deg);
}

.solution-bridge::before,
.solution-bridge::after {
    content: "";
    position: absolute;
    top: -38px;
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.42);
}

.solution-bridge::before {
    left: 28%;
}

.solution-bridge::after {
    right: 22%;
}

.solution-island {
    right: 10%;
    bottom: 15%;
    width: 28%;
    height: 12%;
    z-index: 3;
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 38%, rgba(200, 164, 93, 0.24), transparent 26%),
        linear-gradient(135deg, rgba(231, 226, 207, 0.2), rgba(32, 68, 67, 0.36));
    border: 1px solid rgba(255, 255, 255, 0.22);
    transform: rotate(-8deg);
}

.solution-panel {
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.panel-one {
    right: 13%;
    top: 18%;
    width: 24%;
    height: 24%;
}

.panel-two {
    right: 21%;
    top: 47%;
    width: 30%;
    height: 18%;
}

.panel-three {
    right: 8%;
    bottom: 18%;
    width: 22%;
    height: 22%;
}

.solution-copy {
    display: grid;
    align-content: center;
    gap: 12px;
}

.solution-copy .workflow-heading {
    padding: 0 0 12px;
}

.solution-copy .workflow-heading h2 {
    max-width: 520px;
}

.solution-copy .workflow-heading p {
    max-width: 520px;
}

.solution-copy article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 18px;
    padding: 19px 20px 20px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(8, 9, 8, 0.28);
}

.solution-copy span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 164, 93, 0.34);
    border-radius: 50%;
    background: rgba(200, 164, 93, 0.08);
    color: var(--gold);
    font-size: 13px;
    font-weight: 720;
}

.solution-copy h3 {
    font-size: 24px;
    line-height: 1.18;
    font-weight: 720;
}

.solution-copy p {
    grid-column: 2;
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

.pricing-panel {
    min-height: 190px;
    padding: 26px 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
        var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.pricing-panel + .pricing-panel {
    border-left: 1px solid var(--line);
}

.pricing-panel strong {
    display: block;
    margin-top: 24px;
    color: var(--text);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 690;
}

.pricing-panel.featured {
    background:
        linear-gradient(145deg, rgba(200, 164, 93, 0.13), rgba(255, 255, 255, 0.025)),
        var(--bg);
}

.cta-section {
    position: relative;
    margin-bottom: 92px;
    padding: 54px 34px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    text-align: center;
    border: 1px solid rgba(200, 164, 93, 0.22);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 0%, rgba(200, 164, 93, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(200, 164, 93, 0.16), rgba(255, 255, 255, 0.028)),
        rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.cta-section h2 {
    margin-left: auto;
    margin-right: auto;
}

.cta-section > div,
.cta-section > button {
    position: relative;
    z-index: 2;
}

.cta-section p {
    max-width: 640px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}

footer {
    position: relative;
    z-index: 10;
    padding-bottom: 32px;
    color: var(--faint);
}

footer a {
    color: var(--faint);
}

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

@keyframes towerDrift {
    0%, 100% {
        transform: skewY(-6deg) translateY(0);
        opacity: 0.72;
    }
    50% {
        transform: skewY(-6deg) translateY(-9px);
        opacity: 1;
    }
}

@keyframes sweep {
    0%, 18% {
        left: -38%;
    }
    58%, 100% {
        left: 106%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.55;
    }
    50% {
        opacity: 0.95;
    }
}

@keyframes variantFocus {
    0%, 100% {
        transform: translateY(0);
        background-color: rgba(255, 255, 255, 0.055);
    }
    50% {
        transform: translateY(-8px);
        background-color: rgba(200, 164, 93, 0.14);
    }
}

@keyframes frameMove {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.72;
    }
    50% {
        transform: translateX(16px) scale(1.04);
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

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

    .motion-showcase {
        width: 100vw;
        height: min(500px, calc(100dvh - 210px));
    }

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

@media (max-width: 720px) {
    .landing-nav,
    .hero-section,
    .capabilities-section,
    .workflow-section,
    .pricing-section,
    .cta-section,
    footer {
        width: min(100% - 32px, 1440px);
    }

    .landing-nav {
        min-height: 92px;
    }

    .landing-nav .brand-logo-xl {
        height: 48px;
        max-width: 152px;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        padding: 0 16px;
    }

    .hero-section {
        min-height: calc(100dvh - 92px);
        padding: 18px 0 52px;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .hero-copy p {
        font-size: 17px;
        line-height: 1.72;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 260px;
    }

    .motion-showcase {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 980px;
        height: 360px;
        transform: translate(-50%, -50%);
        margin-left: 0;
        grid-template-columns: repeat(4, 1fr);
        opacity: 0.34;
        filter: blur(0.2px);
    }

    .motion-card-large {
        grid-column: auto;
        grid-row: auto;
    }

    .motion-card:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
        transform: none;
    }

    .motion-card:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
        transform: none;
    }

    .motion-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        transform: none;
    }

    .motion-caption {
        display: none;
    }

    .capabilities-section,
    .workflow-section,
    .pricing-section {
        padding: 68px 0 78px;
    }

    .capability-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .capability-showcase {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 0;
        border: 1px solid var(--line);
    }

    .capability-copy {
        padding: 28px 24px 10px;
    }

    .capability-copy h3 {
        font-size: 30px;
    }

    .capability-previews {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        padding: 18px;
    }

    .capability-preview,
    .preview-image {
        grid-row: auto;
        min-height: 220px;
    }

    .capability-panel:nth-child(2),
    .capability-panel:nth-child(3) {
        transform: none;
    }

    .capability-panel::after {
        font-size: 96px;
    }

    .capability-panel,
    .pricing-panel {
        min-height: 210px;
        padding: 24px;
    }

    .capability-panel h3,
    .pricing-panel strong {
        margin-top: 34px;
        font-size: 25px;
    }

    .workflow-section {
        padding: 72px 24px 82px;
    }

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

    .workflow-heading h2 {
        font-size: 42px;
    }

    .workflow-heading p {
        margin-left: 0;
        font-size: 17px;
    }

    .solution-stage {
        margin-top: 42px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solution-copy {
        order: -1;
    }

    .solution-copy .workflow-heading {
        padding-bottom: 24px;
    }

    .solution-visual {
        min-height: 360px;
        border-radius: 24px;
    }

    .solution-copy article {
        grid-template-columns: 36px minmax(0, 1fr);
        column-gap: 14px;
        padding: 18px 18px 19px;
    }

    .solution-copy span {
        width: 36px;
        height: 36px;
    }

    .solution-copy h3 {
        font-size: 24px;
    }

    .pricing-panel + .pricing-panel {
        border-left: 0;
        border-top: 0;
    }

    .cta-section {
        align-items: center;
        flex-direction: column;
    }

    .cta-section {
        padding: 28px;
        min-height: 220px;
    }
}

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

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

    .arch-canvas-bg {
        display: none;
    }
}
