:root {
    --bg: #050805;
    --bg-soft: #080d08;
    --card: #0b120b;
    --green: #39ff14;
    --green-deep: #00b050;
    --white: #f5f5f5;
    --muted: #a8b3a8;
    --line: rgba(168, 179, 168, 0.14);
    --display: "Space Grotesk", sans-serif;
    --body: "Inter", sans-serif;
    --page: min(1240px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--white);
    background:
        radial-gradient(circle at 86% 15%, rgba(0, 176, 80, 0.055), transparent 26rem),
        var(--bg);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    color: var(--bg);
    background: var(--green);
}

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-shell {
    overflow: clip;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1320px, calc(100% - 32px));
    height: 76px;
    padding: 0 22px;
    border: 1px solid transparent;
    transform: translateX(-50%);
    transition: .3s ease;
}

.site-header.is-scrolled {
    top: 12px;
    height: 64px;
    border-color: var(--line);
    background: rgba(5, 8, 5, .82);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-family: var(--display);
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.brand > span:last-child > span {
    color: var(--green);
}

.brand-mark {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
}

.brand-mark svg {
    width: 100%;
    fill: none;
    stroke: var(--green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
    filter: drop-shadow(0 0 7px rgba(57, 255, 20, .5));
}

.brand-mark svg circle {
    fill: var(--green);
    stroke: none;
}

.desktop-nav {
    display: flex;
    gap: 35px;
}

.desktop-nav a,
.footer-links a {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
    color: var(--green);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 10px 16px;
    border: 1px solid rgba(57, 255, 20, .35);
    color: var(--green);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .25s ease;
}

.header-cta:hover {
    background: var(--green);
    color: var(--bg);
    box-shadow: 0 0 24px rgba(57, 255, 20, .22);
}

.hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 100svh;
    padding: 126px max(24px, calc((100vw - 1240px) / 2)) 90px;
    isolation: isolate;
}

.particle-canvas,
.hero-grid {
    position: absolute;
    z-index: -4;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(57, 255, 20, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, .035) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 82%);
}

.hero::before {
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg) 0%, rgba(5,8,5,.92) 37%, rgba(5,8,5,.28) 69%, var(--bg) 100%),
        linear-gradient(0deg, var(--bg), transparent 25%);
    content: "";
}

.smoke {
    position: absolute;
    z-index: -2;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(57, 255, 20, .14);
    filter: blur(100px);
    opacity: .55;
    animation: smoke 9s ease-in-out infinite alternate;
}

.smoke-one {
    top: 12%;
    right: 2%;
}

.smoke-two {
    right: 23%;
    bottom: 4%;
    width: 250px;
    height: 250px;
    opacity: .28;
    animation-delay: -3s;
}

@keyframes smoke {
    to { transform: translate3d(-30px, 24px, 0) scale(1.13); opacity: .38; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 65%);
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 8px 13px;
    border: 1px solid rgba(57, 255, 20, .18);
    background: rgba(57, 255, 20, .045);
    color: #c9d1c9;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.availability span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    50% { opacity: .45; box-shadow: 0 0 2px var(--green); }
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1 {
    margin-bottom: 25px;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(3.4rem, 6.25vw, 6.3rem);
    font-weight: 700;
    letter-spacing: -.065em;
    line-height: .89;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 7px 0 rgba(255,255,255,.025), 0 20px 40px rgba(0,0,0,.5);
}

.hero h1 span,
.section-heading h2 span,
.why-content h2 span,
.center-heading h2 span,
.contact-copy h2 span {
    color: transparent;
    background: linear-gradient(115deg, #f5f5f5 0%, var(--green) 38%, #0ab343 76%, #dfffda 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 200% auto;
    filter: drop-shadow(0 0 18px rgba(57, 255, 20, .13));
    animation: textFlow 8s linear infinite;
}

@keyframes textFlow {
    to { background-position: 200% center; }
}

.hero-copy {
    width: min(560px, 100%);
    margin-bottom: 32px;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    letter-spacing: -.015em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 1px;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border .2s ease;
}

.button:hover {
    transform: translateY(-2px) scale(1.015);
}

.button-primary {
    border-color: var(--green);
    color: #031003;
    background: var(--green);
    box-shadow: 0 0 26px rgba(57, 255, 20, .22), inset 0 -8px 18px rgba(0, 80, 30, .2);
}

.button-primary:hover {
    box-shadow: 0 0 38px rgba(57, 255, 20, .4), inset 0 -8px 18px rgba(0, 80, 30, .12);
}

.button-secondary {
    border-color: var(--line);
    color: var(--white);
    background: rgba(11, 18, 11, .66);
    backdrop-filter: blur(12px);
}

.button-secondary:hover {
    border-color: rgba(57, 255, 20, .45);
    color: var(--green);
    background: rgba(57, 255, 20, .05);
}

.hero-proof {
    display: flex;
    gap: 0;
    margin-top: 48px;
}

.hero-proof div {
    display: grid;
    min-width: 125px;
    padding-right: 26px;
    border-right: 1px solid var(--line);
}

.hero-proof div + div {
    padding-left: 26px;
}

.hero-proof div:last-child {
    border-right: 0;
}

.hero-proof strong {
    font-family: var(--display);
    font-size: 1.15rem;
}

.hero-proof span {
    color: #758075;
    font-size: .66rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-visual {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: max(3vw, calc((100vw - 1370px) / 2));
    width: min(47vw, 630px);
    aspect-ratio: 1;
    transform: translateY(-47%);
}

.hero-visual.is-visible {
    transform: translateY(-50%);
}

.mascot-frame {
    position: absolute;
    inset: 9%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(57, 255, 20, .12);
    background:
        radial-gradient(circle, rgba(57, 255, 20, .13), transparent 62%),
        rgba(5, 8, 5, .22);
    clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

.mascot-frame::before,
.mascot-frame::after {
    position: absolute;
    border: 1px solid rgba(57, 255, 20, .11);
    content: "";
    inset: 8%;
    clip-path: inherit;
}

.mascot-frame::after {
    border-color: rgba(255, 255, 255, .05);
    inset: 16%;
}

.mascot {
    z-index: 1;
    width: 88%;
    overflow: visible;
    filter: drop-shadow(0 25px 45px #000);
    animation: mascotFloat 4.5s ease-in-out infinite;
}

@keyframes mascotFloat {
    50% { transform: translateY(-8px); }
}

.mascot-shadow {
    fill: rgba(0, 0, 0, .8);
    filter: blur(20px);
    transform: translateY(20px);
}

.mascot-head {
    fill: url("#frogFill");
    stroke: rgba(130, 255, 105, .85);
    stroke-width: 2;
    filter: url("#frogGlow");
}

.mascot-panel {
    fill: rgba(3, 12, 4, .92);
    stroke: rgba(57, 255, 20, .5);
    stroke-width: 2;
}

.mascot-brow,
.mascot-mouth,
.mascot-detail {
    fill: none;
    stroke: #39ff14;
    stroke-linecap: round;
    stroke-width: 5;
}

.mascot-eye {
    fill: #39ff14;
    filter: drop-shadow(0 0 10px #39ff14);
}

.mascot-pupil {
    fill: #eaffea;
}

.mascot-detail {
    opacity: .45;
    stroke-width: 2;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(57, 255, 20, .13);
    border-radius: 50%;
    inset: 2%;
    animation: orbit 20s linear infinite;
}

.orbit::before {
    position: absolute;
    top: 8%;
    left: 18%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px var(--green);
    content: "";
}

.orbit-two {
    inset: 17%;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 14s;
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

.energy-line {
    position: absolute;
    width: 1px;
    height: 25%;
    background: linear-gradient(transparent, var(--green), transparent);
    opacity: .45;
}

.line-one {
    top: 2%;
    left: 44%;
    transform: rotate(38deg);
}

.line-two {
    right: 11%;
    bottom: 5%;
    transform: rotate(-50deg);
}

.visual-tag {
    position: absolute;
    z-index: 3;
    padding: 7px 10px;
    border: 1px solid rgba(57, 255, 20, .2);
    color: var(--green);
    background: rgba(5, 8, 5, .8);
    font-family: monospace;
    font-size: .62rem;
    letter-spacing: .12em;
}

.tag-top {
    top: 12%;
    right: 1%;
}

.tag-bottom {
    bottom: 9%;
    left: 4%;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #667066;
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue span {
    position: relative;
    display: block;
    width: 1px;
    height: 28px;
    background: var(--line);
    overflow: hidden;
}

.scroll-cue span::after {
    position: absolute;
    width: 100%;
    height: 50%;
    background: var(--green);
    content: "";
    animation: scroll 1.8s ease infinite;
}

@keyframes scroll {
    from { top: -50%; }
    to { top: 100%; }
}

.logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 48px);
    min-height: 82px;
    padding: 15px 24px;
    border-block: 1px solid var(--line);
    color: #5e685e;
    background: #060a06;
    font-family: var(--display);
    font-size: clamp(.65rem, 1vw, .82rem);
    font-weight: 700;
    letter-spacing: .16em;
}

.logo-strip i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(57, 255, 20, .45);
}

.section {
    width: var(--page);
    margin-inline: auto;
    padding-block: clamp(100px, 11vw, 160px);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .55fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 68px;
}

.section-heading.compact {
    grid-template-columns: 1fr 420px;
}

.eyebrow {
    margin-bottom: 17px;
    color: var(--green);
    font-family: monospace;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .15em;
}

.section-heading h2,
.why-content h2,
.center-heading h2,
.contact-copy h2 {
    margin-bottom: 0;
    font-family: var(--display);
    font-size: clamp(2.65rem, 5vw, 5rem);
    letter-spacing: -.06em;
    line-height: .98;
    text-transform: uppercase;
}

.section-heading > p,
.center-heading > p,
.why-content > p,
.contact-copy > p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .97rem;
}

.services-section {
    padding-bottom: 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 27px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(11,18,11,.8), rgba(5,8,5,.7));
    overflow: hidden;
    transition: .35s ease;
}

.service-card::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 110%, rgba(57,255,20,.12), transparent 60%);
    content: "";
    opacity: 0;
    transition: opacity .35s ease;
}

.service-card:hover {
    z-index: 2;
    border-color: rgba(57, 255, 20, .34);
    box-shadow: 0 0 35px rgba(57, 255, 20, .08), inset 0 0 45px rgba(57, 255, 20, .025);
    transform: translateY(-5px);
}

.service-card:hover::before {
    opacity: 1;
}

.card-topline {
    display: flex;
    justify-content: space-between;
    color: #5f695f;
    font-family: monospace;
    font-size: .68rem;
}

.card-arrow {
    transition: .25s ease;
}

.service-card:hover .card-arrow {
    color: var(--green);
    transform: translate(2px, -2px);
}

.service-icon {
    position: relative;
    display: grid;
    width: 51px;
    height: 51px;
    margin-block: 45px 27px;
    border: 1px solid rgba(57, 255, 20, .28);
    color: var(--green);
    background: rgba(57, 255, 20, .045);
    font-size: 1.25rem;
    place-items: center;
    box-shadow: inset 0 0 20px rgba(57, 255, 20, .025);
}

.service-card h3 {
    position: relative;
    margin-bottom: 10px;
    font-family: var(--display);
    font-size: 1.22rem;
    letter-spacing: -.025em;
}

.service-card p {
    position: relative;
    margin-bottom: 0;
    color: #7e897e;
    font-size: .84rem;
    line-height: 1.65;
}

.card-scanline {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transform: translateX(-100%);
}

.service-card:hover .card-scanline {
    opacity: .5;
    transition: transform .7s ease;
    transform: translateX(100%);
}

.service-cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(145deg, rgba(57,255,20,.1), rgba(5,8,5,.82)),
        var(--card);
}

.service-cta .eyebrow {
    margin-bottom: auto;
    color: var(--green);
    font-size: .65rem;
}

.service-cta h3 {
    margin-bottom: 22px;
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
}

.service-cta a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--green);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.why-section {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
    width: 100%;
    padding-inline: max(24px, calc((100vw - 1240px) / 2));
    background:
        linear-gradient(90deg, rgba(5,8,5,.1), var(--bg)),
        radial-gradient(circle at 18% 50%, rgba(0,176,80,.09), transparent 32rem),
        #070b07;
}

.system-window {
    position: relative;
    padding: 8px;
    border: 1px solid rgba(57, 255, 20, .22);
    background: rgba(3, 8, 4, .84);
    box-shadow: 0 35px 80px rgba(0,0,0,.65), 0 0 70px rgba(57,255,20,.07);
    transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
}

.system-window::before {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(57, 255, 20, .1);
    content: "";
    inset: -20px 20px 20px -20px;
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding-inline: 10px;
    border-bottom: 1px solid var(--line);
}

.window-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #243024;
}

.window-bar span:first-child {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.window-bar em {
    margin-left: auto;
    color: #566056;
    font-family: monospace;
    font-size: .55rem;
    font-style: normal;
    letter-spacing: .12em;
}

.status-content {
    padding: clamp(25px, 5vw, 55px);
    background-image: linear-gradient(rgba(57,255,20,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(57,255,20,.03) 1px, transparent 1px);
    background-size: 28px 28px;
}

.status-content > p {
    color: #687368;
    font-family: monospace;
    font-size: .63rem;
    letter-spacing: .17em;
}

.status-content > strong {
    display: block;
    margin-block: 25px 45px;
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.5vw, 3.3rem);
    letter-spacing: -.055em;
    line-height: .95;
}

.status-content > strong span {
    color: var(--green);
    text-shadow: 0 0 24px rgba(57,255,20,.3);
}

.status-graph {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(57,255,20,.22);
}

.status-graph i {
    flex: 1;
    background: linear-gradient(to top, rgba(57,255,20,.12), var(--green));
    box-shadow: 0 0 8px rgba(57,255,20,.12);
}

.status-row {
    display: flex;
    justify-content: space-between;
    padding-block: 10px;
    border-bottom: 1px solid var(--line);
    color: #778277;
    font-family: monospace;
    font-size: .7rem;
}

.status-row b {
    color: var(--green);
}

.why-content h2 {
    margin-bottom: 27px;
}

.why-content > p {
    max-width: 620px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 45px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.benefit-grid > div {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit-grid > div > span {
    grid-row: span 2;
    color: var(--green);
}

.benefit-grid strong {
    font-family: var(--display);
    font-size: .9rem;
}

.benefit-grid p {
    margin: 2px 0 0;
    color: #697469;
    font-size: .73rem;
}

.process-section {
    padding-bottom: 80px;
}

.process-list {
    position: relative;
}

.process-list::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 36px;
    width: 1px;
    background: linear-gradient(var(--green), rgba(57,255,20,.05));
    content: "";
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 38px;
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

.process-step:last-child {
    border-bottom: 1px solid var(--line);
}

.step-marker {
    position: relative;
    z-index: 1;
    display: grid;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(57, 255, 20, .25);
    color: var(--green);
    background: var(--bg);
    font-family: monospace;
    font-size: .7rem;
    place-items: center;
    transform: rotate(45deg) scale(.72);
    transition: .3s ease;
}

.step-marker span {
    transform: rotate(-45deg) scale(1.35);
}

.process-step:hover .step-marker {
    color: var(--bg);
    background: var(--green);
    box-shadow: 0 0 30px rgba(57,255,20,.25);
}

.step-label {
    color: #5f695f;
    font-family: monospace;
    font-size: .62rem;
    letter-spacing: .15em;
}

.process-step h3 {
    margin: 5px 0 8px;
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    letter-spacing: -.035em;
}

.process-step p {
    max-width: 650px;
    margin: 0;
    color: #7e897e;
    font-size: .88rem;
}

.pricing-section {
    width: 100%;
    padding-inline: max(24px, calc((100vw - 1240px) / 2));
    background:
        radial-gradient(circle at 50% 50%, rgba(57,255,20,.055), transparent 34rem),
        #070b07;
}

.center-heading {
    max-width: 700px;
    margin: 0 auto 65px;
    text-align: center;
}

.center-heading h2 {
    margin-bottom: 20px;
}

.center-heading > p {
    max-width: 590px;
    margin-inline: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 16px;
}

.pricing-card {
    position: relative;
    padding: 36px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(13,21,13,.96), rgba(7,11,7,.95));
    box-shadow: 0 28px 55px rgba(0,0,0,.2);
    transition: .3s ease;
}

.pricing-card:hover {
    border-color: rgba(57,255,20,.38);
    box-shadow: 0 28px 65px rgba(0,0,0,.35), 0 0 35px rgba(57,255,20,.07);
    transform: translateY(-5px);
}

.pricing-card.featured {
    min-height: 560px;
    padding-top: 49px;
    border-color: rgba(57,255,20,.5);
    background:
        linear-gradient(160deg, rgba(57,255,20,.075), transparent 42%),
        #0a110a;
    box-shadow: 0 30px 75px rgba(0,0,0,.45), 0 0 45px rgba(57,255,20,.075);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 13px;
    color: var(--bg);
    background: var(--green);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pricing-name {
    margin-bottom: 10px;
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 700;
}

.pricing-description {
    min-height: 52px;
    margin-bottom: 28px;
    color: #7b867b;
    font-size: .82rem;
}

.price {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.price span {
    padding-top: 8px;
    color: #647064;
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.price strong {
    font-family: var(--display);
    font-size: clamp(2.7rem, 4vw, 3.5rem);
    letter-spacing: -.06em;
    line-height: 1;
}

.featured .price strong {
    color: var(--green);
    text-shadow: 0 0 28px rgba(57,255,20,.15);
}

.pricing-card ul {
    display: grid;
    gap: 14px;
    min-height: 192px;
    margin: 29px 0 26px;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a7b1a7;
    font-size: .82rem;
}

.pricing-card li span {
    color: var(--green);
}

.pricing-card .button {
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
}

.project-card {
    padding: 12px;
    border: 1px solid var(--line);
    background: #080d08;
    transition: .3s ease;
}

.project-card:hover {
    border-color: rgba(57,255,20,.35);
    transform: translateY(-4px);
}

.project-large {
    grid-row: span 2;
}

.mock-dashboard,
.mock-chat,
.mock-ai {
    min-height: 245px;
    background:
        linear-gradient(rgba(57,255,20,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57,255,20,.025) 1px, transparent 1px),
        #050905;
    background-size: 30px 30px;
    overflow: hidden;
}

.mock-dashboard {
    display: grid;
    grid-template-columns: 55px 1fr;
    min-height: 540px;
    padding: 28px;
}

.mock-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    padding-block: 10px;
    border-right: 1px solid var(--line);
}

.mock-sidebar b {
    display: grid;
    width: 26px;
    height: 26px;
    color: var(--bg);
    background: var(--green);
    font-family: var(--display);
    place-items: center;
}

.mock-sidebar i {
    width: 15px;
    height: 15px;
    border: 1px solid #3e493e;
}

.mock-main {
    padding: 35px;
}

.mock-main > span,
.project-meta span,
.mock-ai small {
    color: #687368;
    font-family: monospace;
    font-size: .6rem;
    letter-spacing: .14em;
}

.mock-main > strong {
    display: block;
    margin-top: 40px;
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    letter-spacing: -.06em;
}

.mock-main > strong small {
    color: #778277;
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: 0;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 170px;
    margin-top: 35px;
    border-bottom: 1px solid rgba(57,255,20,.2);
}

.mock-chart i {
    flex: 1;
    background: linear-gradient(to top, rgba(57,255,20,.05), var(--green));
    opacity: .8;
}

.mock-chart i:nth-child(1) { height: 20%; }
.mock-chart i:nth-child(2) { height: 45%; }
.mock-chart i:nth-child(3) { height: 35%; }
.mock-chart i:nth-child(4) { height: 66%; }
.mock-chart i:nth-child(5) { height: 52%; }
.mock-chart i:nth-child(6) { height: 84%; }
.mock-chart i:nth-child(7) { height: 100%; }

.mock-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.mock-boxes div {
    height: 45px;
    border: 1px solid var(--line);
    background: rgba(57,255,20,.025);
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 15px 12px;
}

.project-meta h3 {
    margin: 4px 0 0;
    font-family: var(--display);
    font-size: 1.1rem;
}

.project-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    color: var(--green) !important;
    font-size: 1rem !important;
    place-items: center;
}

.mock-chat {
    padding: 23px;
}

.chat-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    color: #9aa49a;
    font-family: monospace;
    font-size: .62rem;
    letter-spacing: .1em;
}

.chat-head > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.chat-head b {
    margin-left: auto;
    color: var(--green);
}

.chat-line {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.chat-line i {
    flex: 0 0 27px;
    height: 27px;
    border: 1px solid rgba(57,255,20,.2);
    background: rgba(57,255,20,.07);
}

.chat-line p {
    margin: 0;
    color: #778277;
    font-size: .67rem;
    line-height: 1.5;
}

.chat-line b {
    color: var(--green);
    font-weight: 600;
}

.chat-input {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    color: #505a50;
    font-size: .65rem;
}

.chat-input span {
    color: var(--green);
}

.mock-ai {
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.ai-core {
    position: relative;
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    border: 1px solid var(--green);
    color: var(--green);
    background: rgba(57,255,20,.05);
    font-family: var(--display);
    font-weight: 700;
    place-items: center;
    box-shadow: 0 0 35px rgba(57,255,20,.12);
    transform: rotate(45deg);
}

.ai-core > * {
    transform: rotate(-45deg);
}

.ai-core span {
    position: absolute;
    inset: -9px;
    border: 1px dashed rgba(57,255,20,.22);
    animation: orbit 8s linear infinite;
}

.mock-ai p {
    margin: 6px 0 0;
    color: #6e796e;
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mock-ai strong {
    margin-block: 4px -2px;
    font-family: var(--display);
    font-size: 2.2rem;
}

.contact-section {
    display: grid;
    grid-template-columns: .83fr 1.17fr;
    gap: clamp(60px, 9vw, 130px);
    width: 100%;
    padding-inline: max(24px, calc((100vw - 1240px) / 2));
    background:
        radial-gradient(circle at 15% 45%, rgba(57,255,20,.07), transparent 27rem),
        #070b07;
}

.contact-copy h2 {
    margin-bottom: 27px;
}

.contact-copy > p {
    margin-bottom: 42px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 17px;
    padding-block: 17px;
    border-top: 1px solid var(--line);
}

.contact-detail:last-child {
    border-bottom: 1px solid var(--line);
}

.contact-detail > span {
    color: var(--green);
    font-family: monospace;
    font-size: .66rem;
}

.contact-detail div {
    display: grid;
}

.contact-detail small {
    color: #5d675d;
    font-size: .58rem;
    letter-spacing: .13em;
}

.contact-detail strong {
    font-size: .8rem;
    font-weight: 500;
}

.contact-form-wrap {
    min-height: 580px;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(57,255,20,.16);
    background: rgba(10,17,10,.8);
    box-shadow: 0 35px 80px rgba(0,0,0,.34), inset 0 0 50px rgba(57,255,20,.018);
    backdrop-filter: blur(14px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field-wide {
    grid-column: 1 / -1;
}

.field label {
    margin-bottom: 8px;
    color: #a8b2a8;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    outline: none;
    color: var(--white);
    background: rgba(4,8,4,.82);
    transition: .2s ease;
}

.field input {
    height: 52px;
    padding: 0 15px;
}

.field textarea {
    min-height: 145px;
    padding: 15px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #455045;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(57,255,20,.55);
    box-shadow: 0 0 0 3px rgba(57,255,20,.04), inset 0 0 18px rgba(57,255,20,.02);
}

.field .invalid {
    border-color: #ff6464;
}

.validation-message {
    margin-top: 5px;
    color: #ff7777;
    font-size: .66rem;
}

.submit-button {
    width: 100%;
    margin-top: 29px;
}

.submit-button:disabled {
    cursor: wait;
    opacity: .65;
}

.form-note {
    margin: 13px 0 0;
    color: #566056;
    font-size: .63rem;
    text-align: center;
}

.form-note span {
    margin-right: 5px;
    color: var(--green);
}

.success-state {
    display: grid;
    min-height: 480px;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.success-icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 1.8rem;
    place-items: center;
    box-shadow: 0 0 40px rgba(57,255,20,.12);
    transform: rotate(45deg);
}

.success-icon span {
    transform: rotate(-45deg);
}

.success-state h3 {
    margin-bottom: 12px;
    font-family: var(--display);
    font-size: 2rem;
}

.success-state > p:not(.eyebrow) {
    max-width: 400px;
    color: var(--muted);
}

.text-button {
    border: 0;
    border-bottom: 1px solid rgba(57,255,20,.45);
    color: var(--green);
    background: transparent;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 30px;
    width: var(--page);
    margin-inline: auto;
    padding-block: 50px;
}

.site-footer > div:first-child p {
    margin: 8px 0 0;
    color: #596359;
    font-size: .72rem;
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.copyright {
    margin: 0;
    color: #4e584e;
    font-size: .65rem;
    text-align: right;
}

.not-found {
    display: grid;
    min-height: 80vh;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.not-found h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -.06em;
}

.error-copy {
    max-width: 480px;
    margin: -15px 0 28px;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1080px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        width: 68%;
    }

    .hero-visual {
        right: -10vw;
        width: 58vw;
        opacity: .78;
    }

    .why-section,
    .contact-section {
        gap: 60px;
    }

    .pricing-card {
        padding: 28px;
    }
}

@media (max-width: 820px) {
    :root {
        --page: min(100% - 36px, 680px);
    }

    .desktop-nav {
        display: none;
    }

    .hero {
        display: block;
        min-height: 900px;
        padding-top: 135px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(3rem, 10.5vw, 5.4rem);
    }

    .hero-visual {
        top: auto;
        right: 50%;
        bottom: 55px;
        width: min(65vw, 510px);
        transform: translateX(50%);
        opacity: .62;
    }

    .hero-visual.is-visible {
        transform: translateX(50%);
    }

    .hero::before {
        background: linear-gradient(180deg, var(--bg) 5%, rgba(5,8,5,.94) 43%, rgba(5,8,5,.35) 77%, var(--bg) 100%);
    }

    .hero-proof {
        margin-top: 35px;
    }

    .scroll-cue {
        display: none;
    }

    .section-heading,
    .section-heading.compact {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-heading > p {
        max-width: 570px;
    }

    .why-section {
        grid-template-columns: 1fr;
    }

    .why-visual {
        order: 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: min(100%, 530px);
        margin-inline: auto;
    }

    .pricing-card.featured {
        min-height: 0;
    }

    .pricing-card ul {
        min-height: 0;
    }

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

    .project-large {
        grid-row: auto;
    }

    .mock-dashboard {
        min-height: 460px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        max-width: 650px;
    }

    .site-footer {
        grid-template-columns: 1fr auto;
    }

    .copyright {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 560px) {
    :root {
        --page: calc(100% - 28px);
    }

    .site-header,
    .site-header.is-scrolled {
        top: 0;
        width: 100%;
        height: 65px;
        padding-inline: 15px;
        border-width: 0 0 1px;
        background: rgba(5,8,5,.85);
    }

    .header-cta {
        gap: 8px;
        padding: 8px 10px;
        font-size: .62rem;
    }

    .brand {
        gap: 7px;
        font-size: .92rem;
    }

    .brand-mark {
        width: 29px;
        height: 29px;
    }

    .hero {
        min-height: 820px;
        padding: 112px 16px 50px;
    }

    .availability {
        margin-bottom: 23px;
        font-size: .58rem;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
        line-height: .94;
    }

    .hero-copy {
        font-size: .93rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .button {
        gap: 15px;
        padding-inline: 14px;
        font-size: .67rem;
    }

    .hero-proof {
        justify-content: space-between;
    }

    .hero-proof div {
        min-width: 0;
        padding-right: 12px;
    }

    .hero-proof div + div {
        padding-left: 12px;
    }

    .hero-proof strong {
        font-size: .95rem;
    }

    .hero-proof span {
        font-size: .52rem;
    }

    .hero-visual {
        bottom: 55px;
        width: 87vw;
    }

    .visual-tag {
        font-size: .5rem;
    }

    .logo-strip {
        justify-content: flex-start;
        overflow: hidden;
        white-space: nowrap;
    }

    .logo-strip span:nth-of-type(n+4),
    .logo-strip i:nth-of-type(n+4) {
        display: none;
    }

    .section {
        padding-block: 90px;
    }

    .section-heading h2,
    .why-content h2,
    .center-heading h2,
    .contact-copy h2 {
        font-size: clamp(2.35rem, 12vw, 3.3rem);
    }

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

    .service-card {
        min-height: 275px;
    }

    .why-section,
    .pricing-section,
    .contact-section {
        padding-inline: 14px;
    }

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

    .process-step {
        grid-template-columns: 55px 1fr;
        gap: 20px;
    }

    .process-list::before {
        left: 27px;
    }

    .step-marker {
        width: 54px;
        height: 54px;
    }

    .pricing-card {
        padding: 28px 23px;
    }

    .mock-dashboard {
        grid-template-columns: 36px 1fr;
        min-height: 390px;
        padding: 14px;
    }

    .mock-main {
        padding: 22px 15px;
    }

    .mock-chart {
        height: 120px;
    }

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

    .field-wide {
        grid-column: auto;
    }

    .contact-form-wrap {
        padding: 22px 18px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

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

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

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