:root {
    --night-980: #030503;
    --night-960: #070a07;
    --night-940: #0b100b;
    --night-900: #111810;
    --green-700: #5f8f25;
    --green-500: #8fbd3f;
    --green-300: #c4ef6a;
    --white: #f4f7f2;
    --muted-dark: #a8b1a6;
    --ink: #f4f7f2;
    --muted: #9aa397;
    --line: rgba(143, 189, 63, 0.18);
    --surface: #0c110c;
    --surface-soft: #101710;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--night-980);
    font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px clamp(20px, 5vw, 72px);
    background: rgba(3, 5, 3, 0.92);
    border-bottom: 1px solid rgba(143, 189, 63, 0.18);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 168px;
    height: 50px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(244, 247, 242, 0.72);
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: rgba(143, 189, 63, 0.12);
    color: var(--white);
}

.site-nav .nav-login {
    background: linear-gradient(135deg, #b7e654, var(--green-700));
    color: #050805;
}

.hero,
.page-hero,
.section,
.site-footer {
    padding-left: clamp(20px, 5vw, 72px);
    padding-right: clamp(20px, 5vw, 72px);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: center;
    min-height: min(790px, calc(100vh - 92px));
    padding-top: 72px;
    padding-bottom: 78px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 28%, rgba(143, 189, 63, 0.18), transparent 26%),
        radial-gradient(circle at 22% 14%, rgba(196, 239, 106, 0.08), transparent 28%),
        linear-gradient(135deg, #030503 0%, #080c08 45%, #0f180e 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(143, 189, 63, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 189, 63, 0.22) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-bg-loop {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-frame {
    position: absolute;
    inset: -8% -4% -6% 36%;
    opacity: 0;
    background-position: center;
    background-size: cover;
    filter: saturate(1.08) contrast(1.08);
    mix-blend-mode: screen;
    animation: bgLoop 18s infinite;
}

.bg-frame::after {
    position: absolute;
    inset: 0;
    content: "";
        background: linear-gradient(90deg, #030503 0%, rgba(3, 5, 3, 0.86) 25%, rgba(3, 5, 3, 0.18) 58%, rgba(3, 5, 3, 0.4) 100%);
}

.bg-frame.atom {
    background-image: url("/assets/img/generated/nucleus-atom-bg.png");
}

.bg-frame.brain {
    background-image: url("/assets/img/generated/nucleus-brain-bg.png");
    animation-delay: 6s;
}

.bg-frame.data {
    background-image: url("/assets/img/generated/nucleus-data-bg.png");
    animation-delay: 12s;
}

.data-orbit {
    position: absolute;
    inset: auto 8vw 68px auto;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(143, 189, 63, 0.22);
    border-radius: 50%;
    animation: orbitSpin 18s linear infinite;
}

.data-orbit span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--green-500);
    box-shadow: 0 0 22px rgba(143, 189, 63, 0.75);
    animation: dotPulse 2.8s ease-in-out infinite;
}

.data-orbit span:nth-child(1) {
    left: 16%;
    top: 12%;
}

.data-orbit span:nth-child(2) {
    right: 6%;
    top: 48%;
    background: var(--green-300);
    animation-delay: 0.7s;
}

.data-orbit span:nth-child(3) {
    left: 45%;
    bottom: 2%;
    background: #d6bd55;
    animation-delay: 1.25s;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green-500);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1 {
    margin: 0;
    color: inherit;
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(3.25rem, 6.2vw, 5.65rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: 0.01em;
}

.brand-title {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28em;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(3.8rem, 6.4vw, 6.4rem);
    line-height: 1;
    letter-spacing: 0.01em;
}

.brand-title span {
    display: block;
}

.brand-title span:first-child {
    color: var(--white);
}

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

h2 {
    margin: 0;
    color: var(--white);
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 3.7vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: 0.01em;
}

h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: 0.005em;
    font-size: 1.16rem;
}

.hero-text,
.page-hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.02rem, 1.55vw, 1.2rem);
}

.hero-dynamic {
    max-width: 760px;
    min-height: 2.7em;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.55rem, 2.65vw, 2.8rem);
    font-weight: 700;
    line-height: 1.08;
}

.hero-dynamic .type-gradient {
    min-width: 0;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
    background: linear-gradient(135deg, #b7e654, var(--green-700));
    color: #050805;
    box-shadow: 0 14px 34px rgba(143, 189, 63, 0.22);
}

.button.secondary {
    border-color: rgba(244, 247, 242, 0.18);
    background: rgba(244, 247, 242, 0.045);
    color: var(--white);
    min-width: 178px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
    margin-top: 30px;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof div {
    min-height: 86px;
    padding: 14px 16px;
    border: 1px solid rgba(143, 189, 63, 0.16);
    border-radius: 8px;
    background: rgba(244, 247, 242, 0.035);
    backdrop-filter: blur(10px);
}

.hero-proof strong {
    color: var(--green-500);
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0;
}

.hero-proof span {
    margin-top: 8px;
    color: rgba(244, 247, 242, 0.7);
    font-size: 0.88rem;
    line-height: 1.25;
}

.hero-system {
    position: relative;
    z-index: 1;
    min-height: 480px;
    pointer-events: none;
}

.hero-motion {
    display: flex;
    align-items: center;
    min-height: 560px;
    pointer-events: auto;
}

.hero-motion .nucleus-motion {
    width: min(58vw, 820px);
    transform: translateX(2vw);
}

.hero-motion .motion-window {
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35), 0 0 80px rgba(143, 189, 63, 0.12);
}

.hero-motion .motion-window-bar {
    min-height: 44px;
}

.hero-motion .motion-window-bar strong {
    font-size: 0.7rem;
}

.hero-motion .motion-stage {
    min-height: 440px;
}

.hero-motion .motion-node {
    min-width: 172px;
    padding: 10px 11px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    border-radius: 12px;
}

.hero-motion .motion-node strong {
    font-size: 0.84rem;
}

.hero-motion .motion-node small,
.hero-motion .motion-node em {
    font-size: 0.62rem;
}

.hero-motion .motion-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    font-size: 0.68rem;
}

.hero-motion .motion-core {
    width: 138px;
    border-radius: 24px;
}

.hero-motion .motion-core-glyph {
    width: 30px;
    height: 30px;
    border-width: 4px;
}

.hero-motion .motion-core strong {
    font-size: 1.45rem;
}

.hero-motion .motion-core span {
    font-size: 0.63rem;
}

.hero-motion .motion-node:nth-of-type(1) {
    left: 24%;
}

.hero-motion .motion-node:nth-of-type(2) {
    left: 23%;
}

.hero-motion .motion-node:nth-of-type(3) {
    left: 24%;
}

.hero-motion .motion-node:nth-of-type(4) {
    left: 35%;
}

.hero-motion .motion-node:nth-of-type(5) {
    left: 72%;
}

.hero-motion .motion-node:nth-of-type(6) {
    left: 80%;
}

.hero-motion .motion-node:nth-of-type(7) {
    left: 77%;
}

.hero-motion .motion-node:nth-of-type(8) {
    left: 68%;
}

.hero-logo-bg {
    position: absolute;
    right: -18vw;
    top: 50%;
    width: min(78vw, 1040px);
    height: auto;
    opacity: 0.44;
    border-radius: 0;
    transform: translateY(-50%);
    filter: saturate(1.08) contrast(1.08);
    animation: floatLogo 7s ease-in-out infinite;
    mix-blend-mode: screen;
    mask-image: radial-gradient(ellipse at 62% 50%, #000 0%, rgba(0, 0, 0, 0.9) 34%, rgba(0, 0, 0, 0.45) 58%, transparent 80%);
}

.section {
    padding-top: 76px;
    padding-bottom: 76px;
    background: var(--night-980);
}

.section-heading {
    max-width: 1120px;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.modules-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.product-card,
.module-card,
.blog-card {
    position: relative;
    min-height: 232px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(244, 247, 242, 0.055), rgba(244, 247, 242, 0.025));
    box-shadow: 0 10px 30px rgba(4, 20, 31, 0.055);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    animation: cardRise 700ms ease both;
    animation-delay: calc(var(--delay) * 70ms);
}

.service-card h3,
.product-card h3,
.module-card h3,
.blog-card h3 {
    font-size: 1.08rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    color: inherit;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(183, 230, 84, 0.12), rgba(244, 247, 242, 0.025) 46%),
        linear-gradient(180deg, rgba(244, 247, 242, 0.06), rgba(244, 247, 242, 0.025));
}

.product-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    border: 1px solid rgba(183, 230, 84, 0.3);
    border-radius: 8px;
    background:
        radial-gradient(circle at 70% 25%, rgba(214, 189, 85, 0.18), transparent 42%),
        linear-gradient(135deg, rgba(183, 230, 84, 0.18), rgba(244, 247, 242, 0.035));
    box-shadow: 0 18px 42px rgba(143, 189, 63, 0.08);
}

.product-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--green-300);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.4;
    filter: drop-shadow(0 0 14px rgba(143, 189, 63, 0.4));
}

.module-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card {
    min-height: 220px;
}

.service-card::after,
.product-card::after,
.module-card::after,
.blog-card::after {
    position: absolute;
    inset: auto -30% -55% 18%;
    height: 150px;
    content: "";
    background: radial-gradient(circle, rgba(143, 189, 63, 0.2), transparent 62%);
}

.service-card:hover,
.product-card:hover,
.module-card:hover,
.blog-card:hover {
    border-color: rgba(143, 189, 63, 0.55);
    box-shadow: 0 18px 42px rgba(4, 20, 31, 0.11);
    transform: translateY(-4px);
}

.product-card small,
.module-card small {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 18px;
    color: var(--green-500);
    font-weight: 750;
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-card small {
    margin-top: auto;
}

.product-label {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 10px;
    border: 1px solid rgba(183, 230, 84, 0.26);
    border-radius: 999px;
    background: rgba(183, 230, 84, 0.1);
    color: var(--green-300);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.card-mark {
    display: block;
    width: 48px;
    height: 6px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green-500), var(--green-300));
}

.service-card p,
.product-card p,
.module-card p,
.blog-card p,
.feature-list p,
.text-content p,
.contact-panel p {
    margin: 0;
    color: var(--muted);
}

.product-section {
    background:
        radial-gradient(circle at 82% 24%, rgba(214, 189, 85, 0.08), transparent 32%),
        var(--night-980);
}

.product-hero {
    background:
        radial-gradient(circle at 76% 28%, rgba(214, 189, 85, 0.12), transparent 30%),
        radial-gradient(circle at 20% 18%, rgba(143, 189, 63, 0.14), transparent 34%),
        linear-gradient(135deg, #030503, #111810);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.product-detail-grid .feature-list {
    margin-top: 24px;
}

.product-metrics {
    display: grid;
    gap: 14px;
}

.product-metrics article {
    min-height: 112px;
    padding: 24px;
    border: 1px solid rgba(183, 230, 84, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(183, 230, 84, 0.12), rgba(244, 247, 242, 0.03)),
        rgba(244, 247, 242, 0.035);
}

.product-metrics span {
    display: block;
    color: var(--white);
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-section {
    background:
        radial-gradient(circle at 78% 18%, rgba(143, 189, 63, 0.12), transparent 34%),
        var(--night-980);
}

.pricing-carousel {
    display: grid;
    grid-auto-columns: minmax(280px, 31%);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(183, 230, 84, 0.72) rgba(244, 247, 242, 0.08);
}

.pricing-carousel::-webkit-scrollbar {
    height: 10px;
}

.pricing-carousel::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(244, 247, 242, 0.08);
}

.pricing-carousel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green-300), var(--green-700));
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    padding: 26px;
    scroll-snap-align: start;
    border: 1px solid rgba(143, 189, 63, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(244, 247, 242, 0.06), rgba(244, 247, 242, 0.025));
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.pricing-card.recommended {
    border-color: rgba(183, 230, 84, 0.8);
    box-shadow: 0 0 0 1px rgba(183, 230, 84, 0.25), 0 24px 60px rgba(143, 189, 63, 0.12);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 10px 14px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(135deg, #b7e654, #5f8f25);
    color: #050805;
    text-align: center;
    font-weight: 850;
}

.pricing-card.recommended h3 {
    margin-top: 34px;
}

.pricing-card h3 {
    font-size: 1.45rem;
}

.plan-label {
    margin: 4px 0 0;
    color: var(--white);
    font-weight: 750;
}

.plan-description {
    min-height: 54px;
    margin: 14px 0 0;
    color: var(--muted);
}

.plan-price {
    margin: 26px 0 18px;
    color: var(--green-500);
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
}

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

.plan-features {
    display: grid;
    gap: 12px;
    padding: 22px 0 0;
    margin: 22px 0 0;
    border-top: 1px solid rgba(143, 189, 63, 0.14);
    list-style: none;
}

.plan-features li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
}

.plan-features li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-500);
    content: "✓";
    font-weight: 850;
}

.hour-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: -4px 0 18px;
}

.hour-option,
.hour-custom {
    display: grid;
    place-items: center;
    min-height: 42px;
    border: 1px solid rgba(183, 230, 84, 0.34);
    border-radius: 8px;
    background: rgba(183, 230, 84, 0.08);
    color: var(--white);
    font: inherit;
    font-weight: 850;
}

.hour-option {
    cursor: pointer;
}

.hour-option.active,
.hour-option:hover,
.hour-custom:focus {
    border-color: rgba(183, 230, 84, 0.72);
    background: linear-gradient(135deg, rgba(183, 230, 84, 0.22), rgba(95, 143, 37, 0.2));
    color: var(--green-300);
}

.hour-custom {
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    outline: 0;
    text-align: center;
    caret-color: var(--green-300);
    animation: inputPulse 1.4s ease-in-out infinite;
}

.hour-custom::placeholder {
    color: rgba(244, 247, 242, 0.56);
}

@keyframes inputPulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(183, 230, 84, 0);
    }
    50% {
        box-shadow: 0 0 22px rgba(183, 230, 84, 0.24);
    }
}

.hour-note {
    margin: -8px 0 18px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.35;
}

.demo-section {
    background:
        radial-gradient(circle at 18% 28%, rgba(143, 189, 63, 0.14), transparent 34%),
        #030503;
}

.demo-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(143, 189, 63, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(244, 247, 242, 0.07), rgba(244, 247, 242, 0.025)),
        radial-gradient(circle at 88% 20%, rgba(143, 189, 63, 0.18), transparent 30%);
    box-shadow: var(--shadow);
}

.demo-panel p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.process-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 22%, rgba(143, 189, 63, 0.16), transparent 32%),
        linear-gradient(135deg, #030503, #10170f);
    color: #fff;
}

.process-band::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.16;
    background-image: linear-gradient(120deg, transparent 0 48%, rgba(143, 189, 63, 0.28) 49% 50%, transparent 51% 100%);
    background-size: 90px 90px;
}

.process-band > * {
    position: relative;
}

.process-band h2,
.process-band .eyebrow {
    color: #fff;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: steps;
}

.process-list li {
    min-height: 174px;
    padding: 20px;
    border: 1px solid rgba(143, 189, 63, 0.22);
    border-radius: 8px;
    background: rgba(244, 247, 242, 0.045);
}

.process-list li::before {
    display: block;
    margin-bottom: 22px;
    color: var(--green-500);
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-weight: 700;
    counter-increment: steps;
    content: "0" counter(steps);
}

.process-list strong,
.process-list span {
    display: block;
}

.process-list span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
}

.split-section,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-list p {
    position: relative;
    padding: 18px 0 18px 28px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
}

.feature-list p::before {
    position: absolute;
    left: 0;
    top: 24px;
    width: 10px;
    height: 10px;
    content: "";
    border-radius: 999px;
    background: var(--green-500);
    box-shadow: 0 0 16px rgba(143, 189, 63, 0.7);
    animation: dotPulse 2.6s ease-in-out infinite;
}

.feature-list p:nth-child(2)::before {
    animation-delay: 0.45s;
}

.feature-list p:nth-child(3)::before {
    animation-delay: 0.9s;
}

.page-hero {
    padding-top: 96px;
    padding-bottom: 72px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 28%, rgba(143, 189, 63, 0.18), transparent 30%),
        linear-gradient(135deg, #030503, #111810);
}

.page-hero h1 {
    max-width: 1120px;
    font-size: clamp(2.8rem, 5.7vw, 5rem);
    line-height: 1.08;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-panel,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(244, 247, 242, 0.06), rgba(244, 247, 242, 0.03));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.contact-panel {
    padding: 26px;
}

.contact-panel h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 1.8rem;
}

.contact-panel p + p {
    margin-top: 12px;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 26px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--white);
    font-weight: 850;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(9, 45, 62, 0.2);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(244, 247, 242, 0.06);
    border-color: rgba(244, 247, 242, 0.14);
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(143, 189, 63, 0.22);
    border-color: var(--green-500);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .button.secondary {
    color: var(--white);
    background: rgba(244, 247, 242, 0.04);
    border-color: var(--line);
}

.text-content {
    max-width: 860px;
}

.text-content h2 {
    margin: 28px 0 10px;
    color: var(--white);
    font-size: 1.5rem;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 34px;
    border-top: 1px solid rgba(143, 189, 63, 0.16);
    background: #030503;
    color: #fff;
}

.site-footer p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.62);
}

.footer-logo {
    display: block;
    width: 190px;
    height: auto;
}

.site-footer nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer a {
    color: var(--green-500);
    font-weight: 850;
    text-decoration: none;
}

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

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-54%) translateX(-10px);
    }
}

@keyframes cardRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 0.58;
        transform: scale(0.82);
        box-shadow: 0 0 0 0 rgba(143, 189, 63, 0.32), 0 0 14px rgba(143, 189, 63, 0.42);
    }

    48% {
        opacity: 1;
        transform: scale(1.14);
        box-shadow: 0 0 0 12px rgba(143, 189, 63, 0), 0 0 30px rgba(143, 189, 63, 0.9);
    }
}

@keyframes bgLoop {
    0% {
        opacity: 0;
        transform: scale(1.04) translateX(18px);
    }

    8%,
    30% {
        opacity: 0.42;
    }

    38% {
        opacity: 0;
        transform: scale(1.12) translateX(-12px);
    }

    100% {
        opacity: 0;
        transform: scale(1.12) translateX(-12px);
    }
}

@keyframes cursorBlink {
    0%,
    48% {
        opacity: 1;
    }

    49%,
    100% {
        opacity: 0;
    }
}

@keyframes dashFlow {
    to {
        stroke-dashoffset: -36;
    }
}

@keyframes coreFloat {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@keyframes glowBreath {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(0.94);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes nodeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -44%) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes nodeFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -8px;
    }
}

body.mitra-preview-page {
    color: #11140f;
    background: #f7f7f0;
}

body.animation-preview-page {
    color: #11140f;
    background: #f6f7fb;
}

body.mitra-preview-page .site-header,
body.mitra-preview-page .site-footer,
body.animation-preview-page .site-header,
body.animation-preview-page .site-footer {
    display: none;
}

.animation-preview-shell {
    min-height: 100vh;
    padding: clamp(38px, 5vw, 70px) clamp(18px, 5vw, 84px);
    background:
        radial-gradient(circle at 16% 88%, rgba(116, 66, 245, 0.12), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(20, 174, 214, 0.14), transparent 32%),
        #f7f8fc;
}

.animation-preview-copy {
    max-width: 1060px;
    margin: 0 auto 34px;
    text-align: center;
}

.animation-preview-copy h1 {
    color: #121626;
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(2.5rem, 5vw, 5.25rem);
    font-weight: 700;
    line-height: 1.02;
}

.animation-preview-copy p:not(.mitra-eyebrow) {
    max-width: 860px;
    margin: 20px auto 0;
    color: #565d72;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 650;
}

.type-gradient {
    display: inline-block;
    min-width: min(100%, 12ch);
    background: linear-gradient(100deg, #7a3ff2 0%, #2d7ff9 48%, #13b9c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.type-gradient::after {
    display: inline-block;
    width: 0.08em;
    height: 0.95em;
    margin-left: 0.05em;
    background: #20a9d5;
    content: "";
    transform: translateY(0.12em);
    animation: cursorBlink 780ms steps(1) infinite;
}

.nucleus-motion {
    width: min(100%, 1680px);
    margin: 0 auto;
}

.motion-window {
    overflow: hidden;
    border: 1px solid rgba(41, 47, 66, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 26px 80px rgba(44, 50, 71, 0.12);
    backdrop-filter: blur(18px);
}

.motion-window-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(41, 47, 66, 0.1);
    background: rgba(255, 255, 255, 0.68);
}

.motion-window-bar span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
}

.motion-window-bar span:nth-child(1) {
    background: #ff6357;
}

.motion-window-bar span:nth-child(2) {
    background: #ffbd2e;
}

.motion-window-bar span:nth-child(3) {
    background: #27c840;
}

.motion-window-bar strong {
    margin-left: auto;
    padding: 9px 16px;
    border: 1px solid rgba(41, 47, 66, 0.08);
    border-radius: 8px;
    color: #8790a7;
    background: rgba(255, 255, 255, 0.78);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9rem;
    font-weight: 600;
}

.motion-stage {
    position: relative;
    min-height: clamp(500px, 46vw, 690px);
    overflow: hidden;
    background:
        linear-gradient(rgba(111, 126, 171, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 126, 171, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 49% 50%, rgba(122, 63, 242, 0.16), transparent 24%),
        linear-gradient(108deg, rgba(121, 75, 235, 0.08), rgba(13, 182, 205, 0.1));
    background-size: 48px 48px, 48px 48px, auto, auto;
}

.motion-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.motion-path {
    fill: none;
    stroke: rgba(93, 123, 255, 0.34);
    stroke-dasharray: 9 9;
    stroke-width: 2.2;
    animation: dashFlow 2.8s linear infinite;
}

.path-2,
.path-4,
.path-5,
.path-8 {
    stroke: rgba(21, 178, 210, 0.32);
}

.motion-pulse {
    fill: #743ff2;
    filter: drop-shadow(0 0 9px rgba(116, 63, 242, 0.72));
}

.pulse-2,
.pulse-5,
.pulse-8 {
    fill: #15b2d2;
}

.motion-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: clamp(150px, 13vw, 210px);
    aspect-ratio: 1;
    border-radius: 30px;
    background: linear-gradient(145deg, #7a3ff2 0%, #2b83f6 56%, #12b8c7 100%);
    color: #fff;
    box-shadow:
        0 22px 70px rgba(72, 99, 236, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.42) inset;
    transform: translate(-50%, -50%);
    animation: coreFloat 5.8s ease-in-out infinite;
}

.motion-core::before {
    position: absolute;
    inset: -30%;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(122, 63, 242, 0.34), transparent 62%);
    content: "";
    animation: glowBreath 3.8s ease-in-out infinite;
}

.motion-core-glyph {
    width: 38px;
    height: 38px;
    border: 5px solid rgba(255, 255, 255, 0.9);
    border-radius: 9px;
    transform: rotate(45deg);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.42);
}

.motion-core strong,
.motion-core span {
    display: block;
    line-height: 1;
}

.motion-core strong {
    margin-top: -8px;
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(1.55rem, 2.2vw, 2.3rem);
    font-weight: 700;
}

.motion-core span {
    margin-top: -12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.motion-node {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 4;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-width: clamp(170px, 14vw, 230px);
    padding: 13px 14px;
    border: 1px solid rgba(35, 41, 59, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(46, 54, 78, 0.12);
    transform: translate(-50%, -50%);
    animation: nodeIn 650ms ease both, nodeFloat 5s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 85ms), calc(var(--delay) * -340ms);
}

.motion-node strong,
.motion-node small {
    display: block;
}

.motion-node strong {
    color: #171b2a;
    font-size: 0.98rem;
    line-height: 1.1;
}

.motion-node small {
    margin-top: 3px;
    color: #687088;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.motion-node em {
    position: relative;
    color: #09ad7a;
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 900;
}

.motion-node em::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(9, 173, 122, 0.1);
    content: "";
}

.motion-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
}

.motion-icon.compras {
    background: #0486d1;
}

.motion-icon.preco {
    background: #57c85d;
}

.motion-icon.estoque {
    background: #05b9d5;
}

.motion-icon.distribuicao {
    background: #f32c26;
}

.motion-icon.vendas {
    background: #24aeea;
}

.motion-icon.varejo {
    background: #217346;
}

.motion-icon.financeiro {
    background: #6424bd;
}

.motion-icon.wms {
    background: #f0a81e;
}

.mitra-shell {
    min-height: 100vh;
    color: #11140f;
    background: #f7f7f0;
    font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mitra-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    min-height: 58px;
    padding: 8px clamp(18px, 4vw, 62px);
    border-bottom: 1px solid #171a14;
    background: rgba(247, 247, 240, 0.94);
    backdrop-filter: blur(18px);
}

.mitra-brand,
.mitra-nav a {
    color: #11140f;
    text-decoration: none;
}

.mitra-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 178px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.mitra-brand-word {
    color: #6ea820;
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mitra-nav nav,
.mitra-nav-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.mitra-nav nav {
    justify-content: center;
}

.mitra-nav a {
    font-size: 0.8rem;
    font-weight: 850;
    text-transform: uppercase;
}

.mitra-nav .mitra-brand,
.mitra-nav .mitra-brand-word {
    text-transform: none;
}

.mitra-menu-toggle {
    display: none;
}

.mitra-login {
    padding: 10px 0;
}

.mitra-nav-actions {
    justify-content: flex-end;
}

.mitra-cta {
    padding: 10px 14px;
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #c7ff2d;
}

.mitra-hero,
.mitra-build,
.mitra-pain,
.mitra-before-after,
.mitra-how,
.mitra-personas,
.mitra-modules,
.mitra-packages,
.mitra-contact-hero,
.mitra-contact-grid,
.mitra-contact-steps,
.mitra-final {
    padding: clamp(46px, 7vw, 100px) clamp(18px, 4vw, 62px);
}

.mitra-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
    gap: clamp(30px, 4vw, 64px);
    align-items: center;
    min-height: calc(100vh - 190px);
    padding-top: clamp(38px, 5vw, 68px);
    padding-bottom: clamp(18px, 3vw, 38px);
    overflow: hidden;
}

.mitra-hero-copy h1 {
    max-width: 980px;
    color: #10130f;
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(2.65rem, 3.9vw, 5.35rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 0;
}

.mitra-hero-copy h1 span {
    display: block;
}

.mitra-hero-copy h1 span:last-child {
    color: #73a21e;
}

.mitra-eyebrow {
    margin: 0 0 16px;
    color: #11140f;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mitra-hero-text {
    max-width: 720px;
    margin: 22px 0 0;
    color: #50534a;
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
    font-weight: 750;
}

.mitra-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.mitra-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid #11140f;
    border-radius: 8px;
    color: #11140f;
    font-weight: 850;
    text-decoration: none;
}

.mitra-button.primary {
    background: #c7ff2d;
    box-shadow: 6px 6px 0 #11140f;
}

.mitra-button.secondary {
    background: #fff;
}

.mitra-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
    margin-top: 30px;
}

.mitra-proof div {
    min-height: 86px;
    padding: 14px;
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #fffef8;
    box-shadow: 6px 6px 0 rgba(17, 20, 15, 0.12);
}

.mitra-proof strong,
.mitra-proof span {
    display: block;
}

.mitra-proof strong {
    color: #11140f;
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.95rem;
}

.mitra-proof span {
    margin-top: 8px;
    color: #62655c;
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.25;
}

.mitra-console {
    position: relative;
    min-height: 480px;
}

.mitra-chat,
.mitra-dashboard,
.mitra-worker,
.mitra-sheet,
.mitra-ai-card,
.mitra-persona-grid article {
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #fffef8;
    box-shadow: 12px 12px 0 rgba(17, 20, 15, 0.14);
}

.mitra-chat {
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 2;
    width: min(92%, 500px);
    padding: 20px;
}

.mitra-chat-top,
.mitra-screen-head,
.mitra-sheet-bar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.mitra-chat-top {
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d8ce;
    font-size: 0.82rem;
}

.mitra-chat h2 {
    margin-top: 28px;
    color: #11140f;
    font-size: clamp(1.7rem, 2.5vw, 2.45rem);
}

.mitra-chat p,
.mitra-persona-grid p,
.mitra-steps p {
    color: #62655c;
}

.mitra-prompt,
.mitra-file,
.mitra-formula {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #f7f7f0;
    color: #11140f;
    font-weight: 750;
}

.mitra-file {
    display: flex;
    justify-content: space-between;
    color: #45483f;
    font-size: 0.88rem;
}

.mitra-dashboard {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    width: min(100%, 720px);
    min-height: 360px;
    overflow: hidden;
    background: #fdfcf5;
}

.mitra-dashboard aside {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 18px;
    border-right: 1px solid #11140f;
    background: #11140f;
    color: #f8f8ee;
}

.mitra-dashboard aside strong {
    margin-bottom: 16px;
    color: #c7ff2d;
    font-family: Sora, Manrope, sans-serif;
    font-weight: 850;
}

.mitra-dashboard aside span {
    font-size: 0.84rem;
    font-weight: 750;
}

.mitra-screen {
    padding: 18px;
}

.mitra-screen-head h3 {
    margin: 6px 0 0;
    color: #11140f;
}

.mitra-screen-head span {
    padding: 7px 10px;
    border: 1px solid #11140f;
    border-radius: 999px;
    background: #c7ff2d;
    font-weight: 850;
}

.mitra-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.mitra-metrics article {
    padding: 14px;
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #fff;
}

.mitra-metrics small,
.mitra-metrics strong,
.mitra-metrics span {
    display: block;
}

.mitra-metrics strong {
    margin-top: 8px;
    color: #11140f;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.7rem;
}

.mitra-metrics span,
.mitra-table em {
    color: #2f8d2d;
    font-style: normal;
    font-weight: 850;
}

.mitra-table {
    display: grid;
    border: 1px solid #11140f;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    font-size: 0.78rem;
}

.mitra-table div {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 0.75fr);
}

.mitra-table div > * {
    padding: 10px;
    border-bottom: 1px solid #deddd2;
}

.mitra-table div:first-child {
    background: #11140f;
    color: #fff;
    text-transform: uppercase;
}

.mitra-integrations {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
    padding: 8px clamp(18px, 4vw, 62px) 56px;
}

.mitra-integrations span {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 13px 14px;
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #fff;
    color: #11140f;
    font-size: 0.78rem;
    font-weight: 850;
}

.mitra-integrations b {
    color: #2f8d2d;
}

.mitra-section-heading {
    max-width: 940px;
    margin-bottom: 34px;
}

.mitra-section-heading small,
.mitra-ai-card small,
.mitra-persona-grid span {
    color: #11140f;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mitra-section-heading h2,
.mitra-final h2 {
    margin-top: 10px;
    color: #11140f;
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(2.2rem, 4.4vw, 5rem);
    font-weight: 500;
    line-height: 1.02;
}

.mitra-pain {
    border-top: 1px solid #11140f;
    background: #11140f;
}

.mitra-pain .mitra-section-heading small,
.mitra-pain .mitra-section-heading h2 {
    color: #fff;
}

.mitra-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mitra-pain-grid article {
    min-height: 330px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.mitra-pain-grid span {
    display: block;
    margin-bottom: 44px;
    color: #c7ff2d;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
}

.mitra-pain-grid h3 {
    color: #fff;
}

.mitra-pain-grid p {
    color: rgba(255, 255, 255, 0.66);
}

.mitra-pain-grid strong {
    display: block;
    margin-top: 24px;
    color: #c7ff2d;
    font-weight: 850;
    line-height: 1.35;
}

.mitra-lab-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1.2fr) minmax(260px, 0.82fr);
    gap: 18px;
    align-items: stretch;
}

.mitra-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mitra-service-card {
    min-height: 260px;
    padding: 24px;
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #fffef8;
    box-shadow: 9px 9px 0 rgba(17, 20, 15, 0.12);
}

.mitra-service-card span {
    display: block;
    margin-bottom: 36px;
    color: #73a21e;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.mitra-service-card h3 {
    color: #11140f;
}

.mitra-service-card p {
    color: #62655c;
}

.mitra-before-after {
    background: #fffef8;
    border-top: 1px solid #11140f;
}

.mitra-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mitra-compare article {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #f7f7f0;
    box-shadow: 12px 12px 0 rgba(17, 20, 15, 0.12);
}

.mitra-compare article:last-child {
    background: #c7ff2d;
}

.mitra-compare span {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 12px;
    border: 1px solid #11140f;
    border-radius: 999px;
    background: #fff;
    color: #11140f;
    font-weight: 900;
    text-transform: uppercase;
}

.mitra-compare p {
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(17, 20, 15, 0.22);
    color: #11140f;
    font-size: 1.08rem;
    font-weight: 800;
}

.mitra-worker,
.mitra-sheet,
.mitra-ai-card {
    padding: 22px;
}

.mitra-worker h3,
.mitra-ai-card h3,
.mitra-persona-grid h3,
.mitra-steps h3 {
    color: #11140f;
}

.mitra-worker-tabs {
    display: inline-flex;
    padding: 4px;
    border: 1px solid #11140f;
    border-radius: 999px;
    background: #f7f7f0;
}

.mitra-worker-tabs span {
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 850;
}

.mitra-worker-tabs span:first-child {
    background: #c7ff2d;
}

.mitra-worker dl {
    display: grid;
    gap: 10px;
    margin: 24px 0;
}

.mitra-worker dl div {
    padding: 12px;
    border: 1px solid #d4d3c7;
    border-radius: 8px;
}

.mitra-worker dt {
    color: #62655c;
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.mitra-worker dd {
    margin: 5px 0 0;
    font-weight: 850;
}

.mitra-worker button {
    width: 100%;
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #11140f;
    color: #fff;
}

.mitra-sheet-bar {
    margin: -22px -22px 0;
    padding: 14px 16px;
    border-bottom: 1px solid #11140f;
    background: #11140f;
    color: #fff;
    font-weight: 850;
}

.mitra-sheet-bar span {
    color: #c7ff2d;
}

.mitra-grid-table {
    display: grid;
    grid-template-columns: 0.72fr 0.75fr 1.25fr repeat(3, 0.8fr);
    margin-top: 16px;
    border: 1px solid #11140f;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.76rem;
}

.mitra-grid-table span {
    min-height: 38px;
    padding: 10px;
    border-right: 1px solid #deddd2;
    border-bottom: 1px solid #deddd2;
    background: #fff;
}

.mitra-grid-table span:nth-child(-n+6) {
    background: #f0f0e6;
    font-weight: 900;
}

.mitra-ai-card {
    background: #11140f;
    color: #fff;
}

.mitra-ai-card small,
.mitra-ai-card h3,
.mitra-ai-card strong {
    color: #fff;
}

.mitra-ai-card strong {
    display: block;
    margin-top: 34px;
    font-family: Sora, Manrope, sans-serif;
    font-size: 2.8rem;
}

.mitra-ai-card p {
    color: #c7ff2d;
}

.mitra-ai-card div {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.mitra-ai-card span {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.mitra-how {
    background: #11140f;
}

.mitra-how .mitra-section-heading small,
.mitra-how .mitra-section-heading h2 {
    color: #fff;
}

.mitra-steps,
.mitra-persona-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.mitra-steps article {
    min-height: 250px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.mitra-steps span {
    display: block;
    margin-bottom: 42px;
    color: #c7ff2d;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.mitra-steps h3 {
    color: #fff;
}

.mitra-steps p {
    color: rgba(255, 255, 255, 0.66);
}

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

.mitra-persona-grid article {
    min-height: 300px;
    padding: 26px;
}

.mitra-persona-grid h3 {
    margin-top: 40px;
    font-size: 1.45rem;
}

.mitra-persona-grid a {
    display: inline-flex;
    margin-top: 22px;
    color: #11140f;
    font-weight: 900;
}

.mitra-product-showcase {
    display: grid;
    gap: 18px;
}

.mitra-product-showcase article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: 24px;
    align-items: stretch;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #fffef8;
    box-shadow: 12px 12px 0 rgba(17, 20, 15, 0.12);
}

.mitra-product-showcase span {
    color: #11140f;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mitra-product-showcase h3 {
    margin-top: 36px;
    color: #11140f;
    font-size: clamp(1.8rem, 3vw, 3.4rem);
}

.mitra-product-showcase p {
    max-width: 760px;
    color: #62655c;
}

.mitra-product-showcase ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.mitra-product-showcase li {
    padding: 12px 14px;
    border: 1px solid #d4d3c7;
    border-radius: 8px;
    color: #11140f;
    font-weight: 800;
}

.mitra-product-showcase a {
    display: inline-flex;
    margin-top: 24px;
    color: #11140f;
    font-weight: 900;
}

.mitra-product-mock {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 100%;
    padding: 22px;
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #11140f;
    color: #fff;
}

.mitra-product-mock strong {
    margin-bottom: 18px;
    color: #c7ff2d;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.2rem;
}

.mitra-product-mock span {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.92rem;
    text-transform: none;
}

.mitra-modules {
    border-top: 1px solid #11140f;
    background: #f7f7f0;
}

.mitra-module-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.mitra-module-strip a {
    min-height: 160px;
    padding: 18px;
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #fffef8;
    color: #11140f;
    text-decoration: none;
    box-shadow: 7px 7px 0 rgba(17, 20, 15, 0.1);
}

.mitra-module-strip span,
.mitra-module-strip small {
    display: block;
}

.mitra-module-strip span {
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.06rem;
    font-weight: 700;
}

.mitra-module-strip small {
    margin-top: 28px;
    color: #62655c;
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.35;
}

.mitra-packages {
    border-top: 1px solid #d8d9cf;
    background: #f7f7f0;
}

.mitra-packages .mitra-section-heading {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.mitra-packages .mitra-section-heading small {
    color: #5f8f25;
}

.mitra-packages .mitra-section-heading h2 {
    color: #11140f;
    font-size: clamp(2.2rem, 3.6vw, 4.1rem);
}

.mitra-package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1240px;
    margin: 0 auto;
}

.mitra-package-grid::-webkit-scrollbar {
    height: 8px;
}

.mitra-package-grid::-webkit-scrollbar-track {
    background: #e4e5d9;
    border-radius: 999px;
}

.mitra-package-grid::-webkit-scrollbar-thumb {
    background: #9fce4b;
    border-radius: 999px;
}

.mitra-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #d9dacd;
    border-radius: 12px;
    background: #fffef8;
    color: #11140f;
    box-shadow: 0 10px 28px rgba(17, 20, 15, 0.06);
}

.mitra-package-card.recommended {
    border-color: #8fbd3f;
    box-shadow: 0 0 0 1px rgba(143, 189, 63, 0.18), 0 16px 38px rgba(95, 143, 37, 0.12);
}

.mitra-package-badge {
    margin: -22px -22px 20px;
    padding: 11px 16px;
    background: #e9f7d0;
    color: #315a0c;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 900;
}

.mitra-package-card h3 {
    margin: 0;
    color: #11140f;
    font-size: clamp(1.28rem, 1.7vw, 1.75rem);
}

.mitra-package-label {
    margin: 14px 0 0;
    color: #11140f;
    font-size: 0.94rem;
    font-weight: 900;
}

.mitra-package-description {
    min-height: 72px;
    margin: 12px 0 0;
    color: #62655c;
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.45;
}

.mitra-package-card > strong {
    display: block;
    margin: 18px 0 16px;
    color: #5f8f25;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.12rem;
}

.mitra-package-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #c9cbbd;
    border-radius: 8px;
    background: #fff;
    color: #11140f;
    font-weight: 900;
    font-size: 0.9rem;
    text-decoration: none;
}

.mitra-package-card.recommended .mitra-package-button {
    border-color: transparent;
    background: #8fbd3f;
    color: #11140f;
}

.mitra-package-card ul {
    display: grid;
    gap: 11px;
    padding: 16px 0 0;
    margin: 18px 0 0;
    border-top: 1px solid #e2e3d8;
    list-style: none;
}

.mitra-package-card li {
    position: relative;
    padding-left: 24px;
    color: #56594f;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.35;
}

.mitra-package-card li::before {
    position: absolute;
    left: 0;
    color: #5f8f25;
    content: "✓";
    font-weight: 900;
}

.mitra-hour-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: -2px 0 16px;
}

.mitra-hour-options .hour-option,
.mitra-hour-options .hour-custom {
    min-width: 0;
    min-height: 42px;
    border: 1px solid #c9cbbd;
    border-radius: 8px;
    background: #fff;
    color: #11140f;
    font: inherit;
    font-weight: 900;
    font-size: 0.88rem;
    text-align: center;
}

.mitra-hour-options .hour-option.active,
.mitra-hour-options .hour-option:hover,
.mitra-hour-options .hour-custom:focus {
    outline: 0;
    border-color: #5f8f25;
    background: #edf8d8;
    color: #315a0c;
}

.mitra-hour-options .hour-custom::placeholder {
    color: #8a8e82;
}

.mitra-positioning {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(46px, 7vw, 100px) clamp(18px, 4vw, 62px);
    border-top: 1px solid #11140f;
    background: #fffef8;
}

.mitra-positioning small {
    color: #11140f;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mitra-positioning h2 {
    margin: 10px 0 0;
    color: #11140f;
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(2rem, 3.6vw, 4.3rem);
    font-weight: 500;
    line-height: 1.04;
}

.mitra-positioning p {
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid #d4d3c7;
    color: #50534a;
    font-size: 1.08rem;
    font-weight: 750;
}

.mitra-contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: end;
    border-bottom: 1px solid #11140f;
    background: #f7f7f0;
}

.mitra-contact-hero h1 {
    max-width: 1080px;
    margin: 0;
    color: #11140f;
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(3rem, 5vw, 6.4rem);
    font-weight: 500;
    line-height: 0.98;
}

.mitra-contact-hero p:not(.mitra-eyebrow) {
    max-width: 760px;
    margin: 24px 0 0;
    color: #50534a;
    font-size: 1.08rem;
    font-weight: 750;
}

.mitra-contact-summary,
.mitra-contact-panel,
.mitra-contact-form,
.mitra-contact-steps article {
    border: 1px solid #11140f;
    border-radius: 8px;
    background: #fffef8;
    box-shadow: 10px 10px 0 rgba(17, 20, 15, 0.1);
}

.mitra-contact-summary {
    padding: 24px;
}

.mitra-contact-summary span,
.mitra-contact-panel > span,
.mitra-contact-form > span {
    display: block;
    color: #5f8f25;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mitra-contact-summary strong {
    display: block;
    margin-top: 22px;
    color: #11140f;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.5rem;
}

.mitra-contact-summary .mitra-button {
    width: 100%;
    margin-top: 24px;
}

.mitra-contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: 18px;
    background: #fffef8;
}

.mitra-contact-panel,
.mitra-contact-form {
    padding: clamp(24px, 4vw, 42px);
}

.mitra-contact-panel h2,
.mitra-contact-form h2 {
    margin: 12px 0 0;
    color: #11140f;
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.05;
}

.mitra-contact-links {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.mitra-contact-links a {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid #d9dacd;
    border-radius: 8px;
    color: #11140f;
    text-decoration: none;
}

.mitra-contact-links strong,
.mitra-contact-links small {
    display: block;
}

.mitra-contact-links small {
    color: #62655c;
    font-weight: 750;
}

.mitra-contact-form {
    display: grid;
    gap: 18px;
}

.mitra-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.mitra-contact-form label {
    display: grid;
    gap: 8px;
    color: #11140f;
    font-weight: 900;
}

.mitra-contact-form input,
.mitra-contact-form select,
.mitra-contact-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #c9cbbd;
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: #11140f;
    font: inherit;
}

.mitra-contact-form textarea {
    resize: vertical;
}

.mitra-contact-form input:focus,
.mitra-contact-form select:focus,
.mitra-contact-form textarea:focus {
    outline: 3px solid rgba(143, 189, 63, 0.22);
    border-color: #5f8f25;
}

.mitra-contact-form button {
    width: fit-content;
    min-width: 180px;
}

.mitra-contact-steps {
    border-top: 1px solid #11140f;
    background: #f7f7f0;
}

.mitra-contact-steps > div:last-child {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mitra-contact-steps article {
    min-height: 220px;
    padding: 24px;
}

.mitra-contact-steps article span {
    display: block;
    margin-bottom: 42px;
    color: #5f8f25;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.mitra-contact-steps h3 {
    color: #11140f;
}

.mitra-contact-steps p {
    color: #62655c;
}

.mitra-final {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    border-top: 1px solid #11140f;
    background: #c7ff2d;
}

.mitra-final h2 {
    max-width: 980px;
    margin: 0;
}

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

    .hero-system {
        min-height: 340px;
    }

    .hero-motion {
        justify-content: center;
        min-height: 520px;
    }

    .hero-motion .nucleus-motion {
        width: min(100%, 860px);
        transform: none;
    }

    .hero-logo-bg {
        right: -120px;
        width: 680px;
        opacity: 0.48;
    }

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

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

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

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

    .demo-panel {
        grid-template-columns: 1fr;
    }

    .split-section,
    .contact-layout,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .mitra-hero,
    .mitra-lab-grid,
    .mitra-card-grid,
    .mitra-pain-grid,
    .mitra-compare,
    .mitra-product-showcase article,
    .mitra-module-strip,
    .mitra-steps,
    .mitra-persona-grid,
    .mitra-final,
    .mitra-positioning,
    .mitra-contact-hero,
    .mitra-contact-grid,
    .mitra-form-grid,
    .mitra-contact-steps > div:last-child {
        grid-template-columns: 1fr;
    }

    .mitra-nav nav,
    .mitra-nav-actions {
        justify-content: flex-start;
    }

    .mitra-nav {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px 18px;
    }

    .mitra-nav nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .mitra-nav nav::-webkit-scrollbar {
        display: none;
    }

    .mitra-nav nav a {
        white-space: nowrap;
    }

    .mitra-nav-actions {
        justify-self: end;
    }

    .mitra-nav-actions > a:not(.mitra-cta) {
        display: inline-flex;
    }

    .mitra-console {
        min-height: 760px;
    }

    .mitra-chat,
    .mitra-dashboard {
        right: auto;
        left: 0;
    }

    .mitra-dashboard {
        width: 100%;
    }

    .mitra-packages {
        overflow: hidden;
    }

    .mitra-package-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        max-width: none;
        margin: 0 calc(clamp(18px, 4vw, 62px) * -1);
        padding: 2px clamp(18px, 4vw, 62px) 18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-padding-inline: clamp(18px, 4vw, 62px);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .mitra-package-card {
        flex: 0 0 min(390px, 76vw);
        min-height: 500px;
        scroll-snap-align: center;
    }

    .mitra-integrations {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .motion-node {
        min-width: 168px;
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .motion-node em {
        grid-column: 2;
    }

    .motion-icon {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 680px) {
    .site-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
        padding-top: 14px;
    }

    .brand img {
        width: 166px;
        height: 50px;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .site-nav a {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero {
        min-height: auto;
        padding-top: 56px;
        padding-bottom: 56px;
    }

    h1 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .brand-title {
        font-size: clamp(3.8rem, 15vw, 5rem);
        gap: 0.18em;
    }

    .page-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.65rem);
    }

    .hero-proof {
        grid-template-columns: 1fr;
        max-width: 310px;
        gap: 10px;
    }

    .hero-proof div {
        min-height: auto;
    }

    .hero-system {
        display: none;
    }

    .hero-motion {
        display: flex;
        min-height: auto;
    }

    .hero-motion .motion-stage {
        min-height: 690px;
    }

    .bg-frame {
        inset: 16% -42% 0 10%;
        opacity: 0;
    }

    .bg-frame::after {
        background: linear-gradient(180deg, rgba(3, 5, 3, 0.34), rgba(3, 5, 3, 0.88));
    }

    .hero-logo-bg {
        right: -170px;
        width: 560px;
        opacity: 0.32;
    }

    .command-card {
        left: 0;
        bottom: 18px;
        width: min(100%, 300px);
    }

    .pulse-card {
        right: 0;
        top: 12px;
    }

    .data-orbit {
        right: -160px;
        bottom: 30px;
        width: 280px;
        height: 280px;
    }

    .services-grid,
    .products-grid,
    .modules-grid,
    .blog-grid,
    .process-list {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
    }

    .pricing-card {
        min-height: auto;
    }

    .mitra-nav {
        position: sticky;
        grid-template-columns: 1fr auto auto;
        min-height: 54px;
        padding: 8px 10px 9px;
        gap: 8px 6px;
    }

    .mitra-brand {
        width: auto;
        height: 34px;
    }

    .mitra-brand-word {
        font-size: 1.36rem;
    }

    .mitra-nav nav {
        display: none;
    }

    .mitra-nav a {
        font-size: 0.72rem;
    }

    .mitra-menu-toggle {
        position: relative;
        display: block;
        order: 2;
    }

    .mitra-menu-toggle summary {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 34px;
        height: 34px;
        border: 1px solid #11140f;
        border-radius: 8px;
        background: #fffef8;
        cursor: pointer;
        list-style: none;
    }

    .mitra-menu-toggle summary::-webkit-details-marker {
        display: none;
    }

    .mitra-menu-toggle summary span {
        display: block;
        width: 17px;
        height: 2px;
        border-radius: 999px;
        background: #11140f;
    }

    .mitra-menu-toggle[open] summary {
        background: #c7ff2d;
    }

    .mitra-menu-toggle div {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        z-index: 40;
        display: grid;
        width: min(78vw, 280px);
        padding: 8px;
        border: 1px solid #11140f;
        border-radius: 8px;
        background: #fffef8;
        box-shadow: 8px 8px 0 rgba(17, 20, 15, 0.16);
    }

    .mitra-menu-toggle div a {
        padding: 13px 12px;
        border-bottom: 1px solid #e1e1d5;
        color: #11140f;
        font-size: 0.82rem;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
    }

    .mitra-menu-toggle div a:last-child {
        border-bottom: 0;
    }

    .mitra-nav-actions {
        order: 3;
        gap: 6px;
        justify-self: end;
        flex-wrap: nowrap;
    }

    .mitra-nav-actions > a:not(.mitra-cta) {
        display: inline-flex;
    }

    .mitra-login {
        min-height: 34px;
        padding: 7px 8px;
        border: 1px solid #11140f;
        border-radius: 8px;
        background: #fffef8;
        color: #11140f;
        font-size: 0.66rem;
        font-weight: 900;
        white-space: nowrap;
    }

    .mitra-cta {
        min-height: 34px;
        padding: 7px 8px;
        font-size: 0.66rem;
        white-space: nowrap;
    }

    .mitra-hero {
        min-height: auto;
        gap: 22px;
        padding-top: 28px;
    }

    .mitra-hero-copy h1 {
        font-size: clamp(2.16rem, 10.5vw, 3.4rem);
        line-height: 1.02;
    }

    .mitra-hero-text {
        margin-top: 16px;
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .mitra-actions {
        margin-top: 22px;
    }

    .mitra-button {
        width: 100%;
        min-height: 44px;
        padding: 11px 14px;
    }

    .mitra-button.primary {
        box-shadow: 4px 4px 0 #11140f;
    }

    .mitra-console {
        min-height: auto;
    }

    .mitra-chat {
        display: none;
    }

    .mitra-dashboard {
        position: relative;
        width: 100%;
    }

    .mitra-dashboard {
        grid-template-columns: 1fr;
        margin-top: 16px;
        min-height: auto;
        box-shadow: 7px 7px 0 rgba(17, 20, 15, 0.12);
    }

    .mitra-dashboard aside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid #11140f;
    }

    .mitra-dashboard aside strong {
        grid-column: 1 / -1;
        margin-bottom: 4px;
    }

    .mitra-metrics,
    .mitra-integrations,
    .mitra-proof {
        grid-template-columns: 1fr;
    }

    .mitra-proof {
        margin-top: 22px;
    }

    .mitra-screen {
        padding: 14px;
    }

    .mitra-screen-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .mitra-metrics {
        margin: 16px 0;
    }

    .mitra-package-grid {
        margin-right: -14px;
        margin-left: -14px;
        padding-right: 14px;
        padding-left: 14px;
        scroll-padding-inline: 14px;
    }

    .mitra-package-card {
        flex-basis: min(330px, 86vw);
        min-height: auto;
        padding: 18px;
    }

    .mitra-package-badge {
        margin: -18px -18px 16px;
    }

    .mitra-package-description {
        min-height: auto;
    }

    .mitra-hour-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mitra-hour-options .hour-custom {
        grid-column: 1 / -1;
    }

    .mitra-proof,
    .mitra-pain-grid,
    .mitra-card-grid,
    .mitra-compare,
    .mitra-product-showcase,
    .mitra-module-strip,
    .mitra-steps,
    .mitra-contact-steps > div:last-child,
    .mitra-integrations {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        margin-right: -14px;
        margin-left: -14px;
        padding: 2px 14px 18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-padding-inline: 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .mitra-proof::-webkit-scrollbar,
    .mitra-pain-grid::-webkit-scrollbar,
    .mitra-card-grid::-webkit-scrollbar,
    .mitra-compare::-webkit-scrollbar,
    .mitra-product-showcase::-webkit-scrollbar,
    .mitra-module-strip::-webkit-scrollbar,
    .mitra-steps::-webkit-scrollbar,
    .mitra-contact-steps > div:last-child::-webkit-scrollbar,
    .mitra-integrations::-webkit-scrollbar {
        height: 7px;
    }

    .mitra-proof::-webkit-scrollbar-thumb,
    .mitra-pain-grid::-webkit-scrollbar-thumb,
    .mitra-card-grid::-webkit-scrollbar-thumb,
    .mitra-compare::-webkit-scrollbar-thumb,
    .mitra-product-showcase::-webkit-scrollbar-thumb,
    .mitra-module-strip::-webkit-scrollbar-thumb,
    .mitra-steps::-webkit-scrollbar-thumb,
    .mitra-contact-steps > div:last-child::-webkit-scrollbar-thumb,
    .mitra-integrations::-webkit-scrollbar-thumb {
        background: #9fce4b;
        border-radius: 999px;
    }

    .mitra-proof > div,
    .mitra-pain-grid > article,
    .mitra-card-grid > article,
    .mitra-compare > article,
    .mitra-product-showcase > article,
    .mitra-module-strip > a,
    .mitra-steps > article,
    .mitra-contact-steps > div:last-child > article,
    .mitra-integrations > span {
        flex: 0 0 min(330px, 86vw);
        scroll-snap-align: center;
    }

    .mitra-proof > div {
        min-height: auto;
    }

    .mitra-module-strip > a {
        min-height: 142px;
    }

    .mitra-table,
    .mitra-grid-table {
        overflow-x: auto;
    }

    .mitra-table div,
    .mitra-grid-table {
        min-width: 520px;
    }

    .animation-preview-shell {
        padding: 28px 12px;
    }

    .motion-window {
        border-radius: 16px;
    }

    .motion-window-bar strong {
        display: none;
    }

    .motion-stage {
        min-height: 720px;
    }

    .motion-lines {
        display: none;
    }

    .motion-core {
        top: 48%;
        width: 138px;
        border-radius: 24px;
    }

    .motion-node {
        left: 50%;
        min-width: min(88%, 300px);
    }

    .motion-node:nth-of-type(1) {
        top: 8%;
    }

    .motion-node:nth-of-type(2) {
        top: 17%;
    }

    .motion-node:nth-of-type(3) {
        top: 26%;
    }

    .motion-node:nth-of-type(4) {
        top: 35%;
    }

    .motion-node:nth-of-type(5) {
        top: 61%;
    }

    .motion-node:nth-of-type(6) {
        top: 70%;
    }

    .motion-node:nth-of-type(7) {
        top: 79%;
    }

    .motion-node:nth-of-type(8) {
        top: 88%;
    }
}
