:root {
    --ab-ink: #11102b;
    --ab-ink-soft: #4f4d68;
    --ab-purple: #5b21f4;
    --ab-purple-dark: #361099;
    --ab-violet: #8b5cf6;
    --ab-cyan: #2dd4bf;
    --ab-ice: #f3f5ff;
    --ab-white: #ffffff;
    --ab-line: rgba(17, 16, 43, 0.1);
    --ab-dark: #0d0b24;
    --ab-radius-sm: 14px;
    --ab-radius: 24px;
    --ab-radius-lg: 36px;
    --ab-shadow-sm: 0 12px 35px rgba(28, 20, 77, 0.08);
    --ab-shadow: 0 28px 70px rgba(36, 22, 102, 0.14);
    --ab-transition: 220ms ease;
}

html {
    scroll-behavior: smooth;
}

body.ab-site,
body.ab-home {
    margin: 0;
    overflow-x: hidden;
    color: var(--ab-ink);
    background: var(--ab-white) !important;
    font-family: "Manrope", "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.ab-site *,
.ab-home * {
    box-sizing: border-box;
}

.ab-site img,
.ab-home img {
    max-width: 100%;
}

.ab-site a,
.ab-home a {
    color: inherit;
    text-decoration: none;
}

.ab-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ab-section {
    position: relative;
    padding: 108px 0;
}

.ab-section-muted {
    background: linear-gradient(180deg, #f8f8ff 0%, #f1f4ff 100%);
}

.ab-section-dark {
    overflow: hidden;
    color: var(--ab-white);
    background: var(--ab-dark);
}

.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--ab-purple);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ab-eyebrow::before {
    width: 25px;
    height: 2px;
    border-radius: 5px;
    background: currentColor;
    content: "";
}

.ab-eyebrow-light {
    color: #c8bbff;
}

.ab-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 56px;
}

.ab-section-heading h2,
.ab-page-heading h2 {
    max-width: 780px;
    margin: 0;
    color: var(--ab-ink);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.ab-section-heading p {
    margin: 0;
    color: var(--ab-ink-soft);
    font-size: 17px;
    line-height: 1.8;
}

.ab-section-heading-light h2,
.ab-section-heading-light p {
    color: var(--ab-white);
}

.ab-section-heading-light p {
    color: rgba(255, 255, 255, 0.68);
}

.ab-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform var(--ab-transition), box-shadow var(--ab-transition), background var(--ab-transition), color var(--ab-transition);
}

.ab-button:hover,
.ab-button:focus-visible {
    transform: translateY(-2px);
}

.ab-button i {
    transition: transform var(--ab-transition);
}

.ab-button:hover i {
    transform: translateX(3px);
}

.ab-button-primary {
    color: var(--ab-white) !important;
    background: linear-gradient(135deg, var(--ab-purple), #7445ff);
    box-shadow: 0 14px 30px rgba(91, 33, 244, 0.26);
}

.ab-button-primary:hover {
    box-shadow: 0 18px 40px rgba(91, 33, 244, 0.34);
}

.ab-button-outline {
    border-color: rgba(91, 33, 244, 0.18);
    color: var(--ab-purple) !important;
    background: rgba(255, 255, 255, 0.82);
}

.ab-button-outline:hover {
    border-color: rgba(91, 33, 244, 0.35);
    background: var(--ab-white);
    box-shadow: var(--ab-shadow-sm);
}

.ab-button-light {
    color: var(--ab-purple-dark) !important;
    background: var(--ab-white);
    box-shadow: 0 15px 34px rgba(14, 10, 54, 0.18);
}

.ab-button-sm {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 13px;
}

.ab-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ab-purple) !important;
    font-size: 14px;
    font-weight: 800;
}

.ab-text-link i {
    transition: transform var(--ab-transition);
}

.ab-text-link:hover i {
    transform: translateX(4px);
}

.ab-skip-link {
    position: fixed;
    z-index: 99999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 10px;
    color: var(--ab-white) !important;
    background: var(--ab-purple);
    font-weight: 700;
}

.ab-skip-link:focus {
    transform: translateY(0);
}

.ab-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid var(--ab-line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    transition: box-shadow var(--ab-transition), transform var(--ab-transition);
}

.ab-header.is-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 14px 35px rgba(30, 20, 80, 0.09);
}

.ab-topbar {
    color: rgba(255, 255, 255, 0.76);
    background: var(--ab-dark);
    font-size: 12px;
}

.ab-topbar-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ab-topbar p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.ab-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ab-cyan);
    box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.12);
}

.ab-topbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ab-topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    transition: color var(--ab-transition);
}

.ab-topbar-links a:hover {
    color: var(--ab-white);
}

.ab-navbar {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ab-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.ab-brand img {
    width: auto;
    height: 44px;
    object-fit: contain;
}

.ab-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ab-navigation ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ab-navigation ul a {
    display: block;
    padding: 12px 11px;
    border-radius: 10px;
    color: #292641;
    font-size: 13px;
    font-weight: 750;
    transition: color var(--ab-transition), background var(--ab-transition);
}

.ab-navigation ul a:hover,
.ab-navigation ul a:focus-visible {
    color: var(--ab-purple);
    background: #f2efff;
}

.ab-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 14px;
    background: #f2efff;
}

.ab-menu-toggle span:not(.sr-only) {
    width: 21px;
    height: 2px;
    border-radius: 10px;
    background: var(--ab-purple-dark);
    transition: var(--ab-transition);
}

.ab-menu-toggle.is-open span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.ab-menu-toggle.is-open span:nth-child(3) {
    opacity: 0;
}

.ab-menu-toggle.is-open span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.ab-whatsapp {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    color: var(--ab-white) !important;
    background: #16b95a;
    box-shadow: 0 18px 40px rgba(20, 150, 75, 0.3);
    font-size: 13px;
    font-weight: 800;
    transition: transform var(--ab-transition);
}

.ab-whatsapp:hover {
    transform: translateY(-3px);
}

.ab-whatsapp i {
    font-size: 21px;
}

.ab-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 74px;
    background:
        radial-gradient(circle at 80% 12%, rgba(139, 92, 246, 0.17), transparent 27%),
        radial-gradient(circle at 12% 82%, rgba(45, 212, 191, 0.1), transparent 24%),
        linear-gradient(180deg, #fbfbff 0%, #f4f4ff 100%);
}

.ab-hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image: linear-gradient(rgba(91, 33, 244, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(91, 33, 244, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    content: "";
}

.ab-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 76px;
}

.ab-hero-copy h1 {
    max-width: 760px;
    margin: 0 0 26px;
    color: var(--ab-ink);
    font-size: clamp(48px, 6.3vw, 78px);
    font-weight: 850;
    letter-spacing: -0.06em;
    line-height: 0.99;
}

.ab-gradient-text {
    color: transparent;
    background: linear-gradient(100deg, var(--ab-purple) 12%, #8b5cf6 60%, #20b9ab 108%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ab-hero-copy > p {
    max-width: 640px;
    margin: 0;
    color: var(--ab-ink-soft);
    font-size: 18px;
    line-height: 1.85;
}

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

.ab-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid rgba(17, 16, 43, 0.09);
}

.ab-proof-item {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--ab-ink-soft);
    font-size: 12px;
    font-weight: 750;
}

.ab-proof-item i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--ab-purple);
    background: rgba(91, 33, 244, 0.09);
}

.ab-hero-visual {
    position: relative;
    min-height: 560px;
}

.ab-dashboard-card {
    position: absolute;
    inset: 26px 0 26px 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 34px;
    color: var(--ab-white);
    background: linear-gradient(145deg, #171139 0%, #271861 64%, #4826ad 100%);
    box-shadow: 0 40px 100px rgba(48, 25, 130, 0.3);
}

.ab-dashboard-card::before,
.ab-dashboard-card::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.ab-dashboard-card::before {
    top: -110px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.38), transparent 68%);
}

.ab-dashboard-card::after {
    bottom: -130px;
    left: -70px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.48), transparent 70%);
}

.ab-dashboard-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px 21px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.ab-dashboard-top > div {
    display: flex;
    gap: 6px;
}

.ab-dashboard-top > div span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.ab-dashboard-top > div span:first-child { background: #ff7b92; }
.ab-dashboard-top > div span:nth-child(2) { background: #ffd36b; }
.ab-dashboard-top > div span:nth-child(3) { background: #50e3c2; }

.ab-dashboard-top strong {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ab-dashboard-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.ab-dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.ab-dashboard-welcome span {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.ab-dashboard-welcome strong {
    display: block;
    margin-top: 5px;
    font-size: 22px;
}

.ab-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid rgba(45, 212, 191, 0.35);
    border-radius: 999px;
    color: #8ef1df;
    background: rgba(45, 212, 191, 0.11);
    font-size: 10px;
    font-weight: 800;
}

.ab-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.ab-dashboard-stat {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

.ab-dashboard-stat i {
    color: #a991ff;
    font-size: 18px;
}

.ab-dashboard-stat strong {
    display: block;
    margin: 12px 0 2px;
    font-size: 24px;
    line-height: 1;
}

.ab-dashboard-stat span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

.ab-dashboard-chart {
    position: relative;
    height: 128px;
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.ab-dashboard-chart::before {
    position: absolute;
    inset: 20px;
    opacity: 0.4;
    background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 100% 28px, 48px 100%;
    content: "";
}

.ab-chart-line {
    position: absolute;
    right: 25px;
    bottom: 30px;
    left: 25px;
    height: 65px;
    border-bottom: 4px solid var(--ab-cyan);
    border-radius: 50% 20% 30% 10%;
    transform: skewY(-10deg);
    filter: drop-shadow(0 6px 8px rgba(45, 212, 191, 0.3));
}

.ab-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(91, 33, 244, 0.11);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--ab-shadow);
    backdrop-filter: blur(10px);
}

.ab-floating-card i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    color: var(--ab-white);
    background: var(--ab-purple);
}

.ab-floating-card strong,
.ab-floating-card span {
    display: block;
}

.ab-floating-card strong {
    color: var(--ab-ink);
    font-size: 12px;
}

.ab-floating-card span {
    color: var(--ab-ink-soft);
    font-size: 10px;
}

.ab-floating-one {
    top: 0;
    right: -25px;
}

.ab-floating-two {
    bottom: 8px;
    left: -14px;
}

.ab-floating-two i {
    background: #18aa92;
}

.ab-capability-strip {
    overflow: hidden;
    border-top: 1px solid var(--ab-line);
    border-bottom: 1px solid var(--ab-line);
    background: var(--ab-white);
}

.ab-capability-track {
    display: flex;
    min-width: max-content;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 19px 24px;
    color: var(--ab-ink-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ab-capability-track i {
    color: var(--ab-purple);
    font-size: 8px;
}

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

.ab-service-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    padding: 30px 27px 25px;
    border: 1px solid var(--ab-line);
    border-radius: var(--ab-radius);
    background: var(--ab-white);
    box-shadow: 0 12px 35px rgba(30, 20, 90, 0.04);
    transition: transform var(--ab-transition), box-shadow var(--ab-transition), border-color var(--ab-transition);
}

.ab-service-card::after {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 33, 244, 0.13), transparent 70%);
    content: "";
}

.ab-service-card:hover {
    z-index: 2;
    transform: translateY(-8px);
    border-color: rgba(91, 33, 244, 0.24);
    box-shadow: var(--ab-shadow);
}

.ab-service-icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 17px;
    color: var(--ab-purple);
    background: linear-gradient(145deg, #f1edff, #e7e1ff);
    font-size: 22px;
}

.ab-service-card h3 {
    margin: 0 0 13px;
    color: var(--ab-ink);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.ab-service-card p {
    margin: 0 0 22px;
    color: var(--ab-ink-soft);
    font-size: 13px;
    line-height: 1.75;
}

.ab-service-card .ab-text-link {
    position: absolute;
    z-index: 2;
    bottom: 25px;
    left: 27px;
}

.ab-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    counter-reset: process;
}

.ab-process-step {
    position: relative;
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--ab-radius);
    background: rgba(255, 255, 255, 0.05);
    counter-increment: process;
}

.ab-process-step::before {
    display: block;
    margin-bottom: 48px;
    color: #a990ff;
    content: "0" counter(process);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.ab-process-step:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 46px;
    right: -32px;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(139,92,246,.5), rgba(45,212,191,.5));
    content: "";
}

.ab-process-step h3 {
    margin: 0 0 12px;
    color: var(--ab-white);
    font-size: 20px;
}

.ab-process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.75;
}

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

.ab-project-card {
    overflow: hidden;
    border: 1px solid var(--ab-line);
    border-radius: var(--ab-radius);
    background: var(--ab-white);
    box-shadow: 0 15px 40px rgba(28, 19, 82, 0.06);
    transition: transform var(--ab-transition), box-shadow var(--ab-transition);
}

.ab-project-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--ab-shadow);
}

.ab-project-media {
    position: relative;
    aspect-ratio: 40 / 21;
    overflow: hidden;
    padding: 9px;
    background: linear-gradient(145deg, #0b0a11, #211641 62%, #42269a);
}

.ab-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    transition: transform 600ms ease;
}

.ab-project-card:hover .ab-project-media img {
    transform: scale(1.04);
}

.ab-project-media::after {
    position: absolute;
    inset: 9px;
    border-radius: 17px;
    background: linear-gradient(to top, rgba(7, 6, 16, .28), transparent 42%), linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 24%);
    content: "";
    pointer-events: none;
}

.ab-project-index {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    color: var(--ab-white);
    background: rgba(13, 11, 36, 0.35);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.ab-project-content {
    padding: 26px 28px 29px;
}

.ab-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.ab-project-tags span,
.ab-tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--ab-purple);
    background: #f0edff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ab-project-content h3 {
    margin: 0 0 10px;
    color: var(--ab-ink);
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.ab-project-content p {
    margin: 0 0 19px;
    color: var(--ab-ink-soft);
    font-size: 13px;
    line-height: 1.75;
}

.ab-metrics {
    overflow: hidden;
    padding: 72px 0;
    color: var(--ab-white);
    background: linear-gradient(110deg, #4a16ca 0%, #692df2 53%, #3b23a4 100%);
}

.ab-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ab-metric {
    padding: 7px 34px;
    text-align: center;
}

.ab-metric + .ab-metric {
    border-left: 1px solid rgba(255,255,255,.18);
}

.ab-metric strong {
    display: block;
    margin-bottom: 7px;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 850;
    letter-spacing: -0.06em;
    line-height: 1;
}

.ab-metric span {
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 700;
}

.ab-about-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 84px;
}

.ab-about-visual {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: var(--ab-radius-lg);
    background: linear-gradient(145deg, #151033, #4520b7);
    box-shadow: var(--ab-shadow);
}

.ab-about-visual::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(45,212,191,.35), transparent 30%), radial-gradient(circle at 25% 75%, rgba(139,92,246,.6), transparent 38%);
    content: "";
}

.ab-about-code {
    position: absolute;
    inset: 68px 45px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    color: rgba(255,255,255,.68);
    background: rgba(6,5,24,.55);
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    line-height: 2.15;
    backdrop-filter: blur(14px);
}

.ab-about-code .purple { color: #bdadff; }
.ab-about-code .cyan { color: #6ee7d8; }
.ab-about-code .muted { color: rgba(255,255,255,.34); }

.ab-about-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    width: 132px;
    height: 132px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 7px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: var(--ab-white);
    background: var(--ab-purple);
    box-shadow: 0 20px 50px rgba(20,10,90,.35);
    text-align: center;
}

.ab-about-badge strong {
    font-size: 28px;
    line-height: 1;
}

.ab-about-badge span {
    max-width: 80px;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
}

.ab-about-copy h2 {
    margin: 0 0 24px;
    color: var(--ab-ink);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 850;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.ab-about-copy > p {
    margin: 0 0 28px;
    color: var(--ab-ink-soft);
    font-size: 16px;
    line-height: 1.85;
}

.ab-check-list {
    display: grid;
    gap: 14px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.ab-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #292641;
    font-size: 14px;
    font-weight: 700;
}

.ab-check-list i {
    display: grid;
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--ab-purple);
    background: #eee9ff;
    font-size: 10px;
}

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

.ab-testimonial {
    padding: 30px;
    border: 1px solid var(--ab-line);
    border-radius: var(--ab-radius);
    background: var(--ab-white);
    box-shadow: var(--ab-shadow-sm);
}

.ab-stars {
    margin-bottom: 20px;
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 3px;
}

.ab-testimonial > p {
    min-height: 112px;
    margin: 0 0 24px;
    color: #292641;
    font-size: 14px;
    line-height: 1.8;
}

.ab-testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 20px;
    border-top: 1px solid var(--ab-line);
}

.ab-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--ab-white);
    background: linear-gradient(145deg, var(--ab-purple), var(--ab-cyan));
    font-size: 13px;
    font-weight: 850;
}

.ab-testimonial-author strong,
.ab-testimonial-author span {
    display: block;
}

.ab-testimonial-author strong {
    color: var(--ab-ink);
    font-size: 13px;
}

.ab-testimonial-author span {
    margin-top: 2px;
    color: var(--ab-ink-soft);
    font-size: 11px;
}

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

.ab-blog-card {
    overflow: hidden;
    border: 1px solid var(--ab-line);
    border-radius: var(--ab-radius);
    background: var(--ab-white);
    transition: transform var(--ab-transition), box-shadow var(--ab-transition);
}

.ab-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ab-shadow);
}

.ab-blog-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ece9f9;
}

.ab-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.ab-blog-card:hover .ab-blog-image img {
    transform: scale(1.05);
}

.ab-blog-body {
    padding: 25px 25px 28px;
}

.ab-blog-meta {
    display: flex;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--ab-purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.ab-blog-body h3 {
    margin: 0 0 12px;
    color: var(--ab-ink);
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.ab-blog-body > p {
    margin: 0 0 19px;
    color: var(--ab-ink-soft);
    font-size: 13px;
    line-height: 1.7;
}

.ab-faq-layout {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    gap: 72px;
}

.ab-faq-intro h2 {
    margin: 0 0 20px;
    color: var(--ab-ink);
    font-size: clamp(36px, 4vw, 55px);
    font-weight: 850;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.ab-faq-intro p {
    margin: 0 0 28px;
    color: var(--ab-ink-soft);
}

.ab-faq-list {
    display: grid;
    gap: 12px;
}

.ab-faq-list details {
    overflow: hidden;
    border: 1px solid var(--ab-line);
    border-radius: 17px;
    background: var(--ab-white);
}

.ab-faq-list summary {
    position: relative;
    padding: 21px 58px 21px 22px;
    color: var(--ab-ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    list-style: none;
}

.ab-faq-list summary::-webkit-details-marker {
    display: none;
}

.ab-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 21px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 50%;
    color: var(--ab-purple);
    background: #f0edff;
    content: "+";
    font-size: 18px;
}

.ab-faq-list details[open] summary::after {
    content: "−";
}

.ab-faq-answer {
    padding: 0 22px 23px;
    color: var(--ab-ink-soft);
    font-size: 13px;
    line-height: 1.8;
}

.ab-page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 92px;
    color: var(--ab-white);
    background: linear-gradient(135deg, #110d30 0%, #251455 55%, #4b23b2 130%);
}

.ab-page-hero::after {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, black, transparent 90%);
    content: "";
}

.ab-page-hero-inner {
    position: relative;
    z-index: 2;
}

.ab-page-hero .ab-eyebrow {
    color: #bdaeff;
}

.ab-page-hero h1 {
    max-width: 850px;
    margin: 0;
    color: var(--ab-white);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.ab-page-hero p {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 17px;
    line-height: 1.8;
}

.ab-breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 34px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 700;
}

.ab-breadcrumb a:hover {
    color: var(--ab-white);
}

.ab-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.ab-orb-one {
    top: -150px;
    right: 2%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(45,212,191,.24), transparent 67%);
}

.ab-orb-two {
    bottom: -200px;
    left: 28%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(139,92,246,.33), transparent 70%);
}

.ab-page-main {
    padding: 94px 0 110px;
}

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

.ab-page-card {
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--ab-line);
    border-radius: var(--ab-radius);
    background: var(--ab-white);
    box-shadow: var(--ab-shadow-sm);
    transition: transform var(--ab-transition), box-shadow var(--ab-transition);
}

.ab-page-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ab-shadow);
}

.ab-page-card h2,
.ab-page-card h3 {
    margin: 0 0 13px;
    color: var(--ab-ink);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.ab-page-card p {
    margin: 0 0 20px;
    color: var(--ab-ink-soft);
    font-size: 13px;
    line-height: 1.75;
}

.ab-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 58px;
}

.ab-detail-cover {
    width: 100%;
    margin-bottom: 34px;
    overflow: hidden;
    border-radius: var(--ab-radius);
    box-shadow: var(--ab-shadow-sm);
}

.ab-detail-cover img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}

.ab-prose {
    color: #3d3956;
    font-size: 16px;
    line-height: 1.9;
}

.ab-prose h2,
.ab-prose h3 {
    margin: 1.6em 0 .65em;
    color: var(--ab-ink);
    font-weight: 850;
    letter-spacing: -0.03em;
}

.ab-prose h2 { font-size: 30px; }
.ab-prose h3 { font-size: 23px; }
.ab-prose a { color: var(--ab-purple); text-decoration: underline; }
.ab-prose img { height: auto; border-radius: 18px; }

.ab-sidebar-card {
    position: sticky;
    top: 116px;
    padding: 28px;
    border: 1px solid var(--ab-line);
    border-radius: var(--ab-radius);
    background: linear-gradient(155deg, #f8f7ff, #f0edff);
}

.ab-sidebar-card h3 {
    margin: 0 0 12px;
    color: var(--ab-ink);
    font-size: 22px;
    font-weight: 850;
}

.ab-sidebar-card p {
    margin: 0 0 22px;
    color: var(--ab-ink-soft);
    font-size: 13px;
}

.ab-contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 44px;
}

.ab-contact-panel,
.ab-form-panel {
    border: 1px solid var(--ab-line);
    border-radius: var(--ab-radius-lg);
    background: var(--ab-white);
    box-shadow: var(--ab-shadow-sm);
}

.ab-contact-panel {
    padding: 38px;
    color: var(--ab-white);
    background: linear-gradient(145deg, #141032, #4820b8);
}

.ab-contact-panel h2,
.ab-form-panel h2 {
    margin: 0 0 14px;
    font-size: 30px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.ab-contact-panel > p {
    margin: 0 0 32px;
    color: rgba(255,255,255,.65);
}

.ab-contact-items {
    display: grid;
    gap: 14px;
}

.ab-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.06);
}

.ab-contact-item i {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: #bcaeff;
    background: rgba(139,92,246,.16);
}

.ab-contact-item strong,
.ab-contact-item span {
    display: block;
}

.ab-contact-item strong {
    font-size: 11px;
    text-transform: uppercase;
}

.ab-contact-item span {
    margin-top: 3px;
    color: rgba(255,255,255,.66);
    font-size: 12px;
    line-height: 1.6;
}

.ab-form-panel {
    padding: 38px;
}

.ab-form-panel > p {
    margin: 0 0 28px;
    color: var(--ab-ink-soft);
}

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

.ab-form-field {
    display: grid;
    gap: 7px;
}

.ab-form-field-full {
    grid-column: 1 / -1;
}

.ab-form-field label {
    color: #39364f;
    font-size: 12px;
    font-weight: 800;
}

.ab-form-field input,
.ab-form-field select,
.ab-form-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 15px;
    border: 1px solid rgba(17,16,43,.14);
    border-radius: 13px;
    color: var(--ab-ink);
    outline: none;
    background: #fbfbfe;
    font: inherit;
    font-size: 13px;
    transition: border-color var(--ab-transition), box-shadow var(--ab-transition);
}

.ab-form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.ab-form-field input:focus,
.ab-form-field select:focus,
.ab-form-field textarea:focus {
    border-color: var(--ab-purple);
    box-shadow: 0 0 0 4px rgba(91,33,244,.09);
}

.ab-footer {
    color: rgba(255,255,255,.66);
    background: #0b0920;
}

.ab-footer-cta {
    overflow: hidden;
    background: linear-gradient(115deg, #5421d2 0%, #7a3df2 60%, #4131ad 110%);
}

.ab-footer-cta-inner {
    display: flex;
    min-height: 270px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-block: 54px;
}

.ab-footer-cta h2 {
    max-width: 760px;
    margin: 0;
    color: var(--ab-white);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 850;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.ab-footer-grid {
    display: grid;
    grid-template-columns: 1.55fr .8fr .7fr 1.1fr;
    gap: 54px;
    padding-top: 76px;
    padding-bottom: 58px;
}

.ab-footer-brand img {
    width: auto;
    max-width: 250px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ab-footer-brand > p {
    max-width: 390px;
    margin: 24px 0 26px;
    font-size: 13px;
    line-height: 1.85;
}

.ab-socials {
    display: flex;
    gap: 9px;
}

.ab-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.05);
    transition: background var(--ab-transition), color var(--ab-transition), transform var(--ab-transition);
}

.ab-socials a:hover {
    transform: translateY(-3px);
    color: var(--ab-white);
    background: var(--ab-purple);
}

.ab-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.ab-footer-column h3 {
    margin: 4px 0 14px;
    color: var(--ab-white);
    font-size: 14px;
    font-weight: 800;
}

.ab-footer-column a,
.ab-footer-column p {
    margin: 0;
    color: rgba(255,255,255,.57);
    font-size: 12px;
    line-height: 1.65;
    transition: color var(--ab-transition);
}

.ab-footer-column > a:hover {
    color: var(--ab-white);
}

.ab-footer-contact a,
.ab-footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ab-footer-contact i {
    width: 16px;
    margin-top: 4px;
    color: #a891ff;
    text-align: center;
}

.ab-footer-bottom {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.43);
    font-size: 11px;
}

.ab-footer-bottom p {
    margin: 0;
}

.ab-footer-bottom div {
    display: flex;
    gap: 22px;
}

.ab-empty-state {
    grid-column: 1 / -1;
    padding: 50px;
    border: 1px dashed rgba(91,33,244,.25);
    border-radius: var(--ab-radius);
    color: var(--ab-ink-soft);
    background: #f8f7ff;
    text-align: center;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 1100px) {
    .ab-navigation { gap: 12px; }
    .ab-navigation ul a { padding-inline: 7px; font-size: 12px; }
    .ab-hero-grid { grid-template-columns: minmax(0, 1fr) 390px; gap: 48px; }
    .ab-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ab-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .ab-footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
    .ab-section { padding: 84px 0; }
    .ab-topbar p { display: none; }
    .ab-topbar-inner { justify-content: center; }
    .ab-navbar { min-height: 72px; }
    .ab-brand img { height: 38px; }
    .ab-menu-toggle { display: flex; }
    .ab-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--ab-line);
        border-radius: 20px;
        background: var(--ab-white);
        box-shadow: var(--ab-shadow);
    }
    .ab-navigation.is-open { display: block; }
    .ab-navigation ul { display: grid; gap: 3px; margin-bottom: 14px; }
    .ab-navigation ul a { padding: 11px 12px; font-size: 13px; }
    .ab-navigation .ab-button { width: 100%; }
    .ab-hero { padding: 70px 0; }
    .ab-hero-grid { grid-template-columns: 1fr; }
    .ab-hero-copy { text-align: center; }
    .ab-hero-copy > p { margin-inline: auto; }
    .ab-hero-actions, .ab-hero-proof { justify-content: center; }
    .ab-hero-visual { width: min(600px, 100%); margin-inline: auto; }
    .ab-section-heading { grid-template-columns: 1fr; gap: 20px; }
    .ab-process-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-process-step::after { display: none; }
    .ab-about-grid { grid-template-columns: 1fr; gap: 52px; }
    .ab-about-visual { min-height: 480px; }
    .ab-testimonials-grid, .ab-blog-grid, .ab-page-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-faq-layout { grid-template-columns: 1fr; gap: 45px; }
    .ab-detail-grid { grid-template-columns: 1fr; }
    .ab-sidebar-card { position: static; }
    .ab-contact-layout { grid-template-columns: 1fr; }
    .ab-footer-cta-inner { display: grid; }
    .ab-footer-grid { grid-template-columns: 1.3fr 1fr; }
    .ab-footer-contact { grid-column: auto; }
}

@media (max-width: 620px) {
    .ab-container { width: min(100% - 28px, 1180px); }
    .ab-section { padding: 70px 0; }
    .ab-topbar-links { gap: 14px; }
    .ab-topbar-links a { font-size: 10px; }
    .ab-topbar-links a:last-child { display: none; }
    .ab-brand img { width: 220px; height: auto; }
    .ab-hero { padding: 54px 0 64px; }
    .ab-hero-copy h1 { font-size: clamp(42px, 13vw, 58px); }
    .ab-hero-copy > p { font-size: 16px; }
    .ab-hero-actions { display: grid; }
    .ab-hero-actions .ab-button { width: 100%; }
    .ab-hero-proof { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
    .ab-hero-visual { min-height: 470px; }
    .ab-dashboard-card { inset: 22px 0; }
    .ab-dashboard-content { padding: 22px; }
    .ab-floating-one { right: -7px; }
    .ab-floating-two { left: -7px; }
    .ab-section-heading h2, .ab-page-heading h2 { font-size: 36px; }
    .ab-services-grid, .ab-projects-grid, .ab-process-grid, .ab-testimonials-grid, .ab-blog-grid, .ab-page-grid { grid-template-columns: 1fr; }
    .ab-service-card { min-height: 300px; }
    .ab-metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 0; }
    .ab-metric:nth-child(3) { border-left: 0; }
    .ab-about-visual { min-height: 420px; }
    .ab-about-code { inset: 42px 20px; padding: 22px; }
    .ab-about-badge { width: 110px; height: 110px; }
    .ab-page-hero { padding: 64px 0 72px; }
    .ab-page-hero h1 { font-size: 44px; }
    .ab-page-main { padding: 70px 0 84px; }
    .ab-contact-panel, .ab-form-panel { padding: 27px 22px; border-radius: 24px; }
    .ab-form-grid { grid-template-columns: 1fr; }
    .ab-footer-cta-inner { min-height: 0; }
    .ab-footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .ab-footer-bottom { flex-direction: column; justify-content: center; padding: 20px 0; text-align: center; }
    .ab-whatsapp { right: 14px; bottom: 14px; width: 52px; padding: 0; justify-content: center; }
    .ab-whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* 2026 kapsam yenilemesi: dinamik menü, geri dönen modüller ve gerçek proje vitrini */
.ab-topbar-action {
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff !important;
    background: rgba(139, 92, 246, .25);
}

.ab-navigation {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 9px;
}

.ab-navigation .ab-primary-menu {
    display: flex;
    align-items: center;
    gap: 1px;
}

.ab-primary-menu > li,
.ab-submenu > li,
.ab-tool-dropdown {
    position: relative;
}

.ab-navigation .ab-primary-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 7px;
    white-space: nowrap;
    font-size: 11px;
}

.ab-navigation .ab-primary-menu > li > a i {
    font-size: 10px;
}

.ab-navigation .ab-submenu {
    position: absolute;
    z-index: 50;
    top: calc(100% + 9px);
    left: 0;
    display: none;
    width: 245px;
    padding: 10px;
    border: 1px solid var(--ab-line);
    border-radius: 17px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(25, 16, 69, .16);
}

.ab-navigation .ab-submenu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 12px;
    content: "";
}

.ab-navigation li:hover > .ab-submenu,
.ab-navigation li:focus-within > .ab-submenu,
.ab-navigation li.is-open > .ab-submenu {
    display: grid;
}

.ab-navigation .ab-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
}

.ab-navigation .ab-submenu .ab-submenu {
    top: -10px;
    left: calc(100% + 10px);
}

.ab-header-tools {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    padding-left: 8px;
    border-left: 1px solid var(--ab-line);
}

.ab-header-tool,
.ab-language-tool {
    position: relative;
    display: inline-grid;
    min-width: 38px;
    height: 38px;
    place-items: center;
    padding: 0 10px;
    border: 0;
    border-radius: 11px;
    color: #292641 !important;
    background: #f5f3fb;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: color var(--ab-transition), background var(--ab-transition);
}

.ab-header-tool:hover,
.ab-language-tool:hover {
    color: var(--ab-purple) !important;
    background: #ebe6ff;
}

.ab-header-tool > span {
    position: absolute;
    top: -5px;
    right: -4px;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: var(--ab-purple);
    font-size: 9px;
}

.ab-language-tool {
    display: flex;
    gap: 5px;
}

.ab-tool-menu {
    position: absolute;
    z-index: 60;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: 210px;
    padding: 10px;
    border: 1px solid var(--ab-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--ab-shadow-sm);
}

.ab-tool-dropdown.is-open .ab-tool-menu,
.ab-tool-dropdown:focus-within .ab-tool-menu {
    display: grid;
}

.ab-tool-menu strong {
    padding: 7px 10px;
    color: var(--ab-ink);
    font-size: 11px;
}

.ab-tool-menu a {
    padding: 9px 10px !important;
    border-radius: 9px;
    font-size: 11px !important;
}

.ab-header-cta {
    white-space: nowrap;
}

.ab-search-overlay {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    color: #fff;
    background: rgba(10, 8, 31, .94);
    backdrop-filter: blur(18px);
}

.ab-search-overlay[hidden] {
    display: none;
}

body.ab-search-open {
    overflow: hidden !important;
}

.ab-search-close {
    position: absolute;
    top: 28px;
    right: 28px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
}

.ab-search-form {
    width: min(760px, 100%);
}

.ab-search-form label {
    display: block;
    margin-bottom: 24px;
    font-size: clamp(30px, 5vw, 58px);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1.08;
}

.ab-search-form > div {
    display: flex;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 19px;
    background: rgba(255, 255, 255, .09);
}

.ab-search-form input {
    width: 100%;
    padding: 14px 16px;
    border: 0;
    color: #fff;
    outline: 0;
    background: transparent;
    font: inherit;
}

.ab-search-form button {
    width: 52px;
    flex: 0 0 52px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: var(--ab-purple);
}

.ab-announcement {
    color: #fff;
    background: #151033;
}

.ab-announcement-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ab-announcement-track > div {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
}

.ab-announcement-track > div > i {
    color: var(--ab-cyan);
}

.ab-announcement-track a {
    margin-left: auto;
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

.ab-showcase-section {
    overflow: hidden;
    background: #f8f7ff;
}

.ab-showcase-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.ab-showcase-controls button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--ab-line);
    border-radius: 50%;
    color: var(--ab-ink);
    background: #fff;
    cursor: pointer;
}

.ab-showcase-slide {
    display: grid;
    min-height: 470px;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    border-radius: var(--ab-radius-lg);
    color: #fff;
    background: linear-gradient(135deg, #120d30, #5425cb 65%, #7960ec);
    box-shadow: var(--ab-shadow);
}

.ab-showcase-slide[hidden] {
    display: none;
}

.ab-showcase-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(34px, 6vw, 72px);
}

.ab-showcase-copy > span {
    margin-bottom: 26px;
    color: #b9a9fb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.ab-showcase-copy h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(34px, 4.5vw, 60px);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.ab-showcase-copy p {
    max-width: 540px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
}

.ab-showcase-media {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.ab-showcase-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45, 21, 106, .62), transparent 48%);
    content: "";
}

.ab-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-showcase-placeholder {
    display: grid;
    height: 100%;
    place-content: center;
    gap: 18px;
    color: rgba(255, 255, 255, .6);
    text-align: center;
    background: radial-gradient(circle at 60% 35%, rgba(45, 212, 191, .3), transparent 28%), linear-gradient(145deg, #3c1d96, #171033);
}

.ab-showcase-placeholder i {
    font-size: 60px;
}

.ab-feature-hub {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ab-feature-hub > a {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: flex-start;
    padding: 27px;
    border: 1px solid var(--ab-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ab-shadow-sm);
    transition: transform var(--ab-transition), border-color var(--ab-transition);
}

.ab-feature-hub > a:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 33, 244, .35);
}

.ab-feature-hub > a > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 14px;
    color: var(--ab-purple);
    background: #f0edff;
    font-size: 18px;
}

.ab-feature-hub strong {
    margin-bottom: 8px;
    color: var(--ab-ink);
    font-size: 15px;
}

.ab-feature-hub span {
    color: var(--ab-ink-soft);
    font-size: 12px;
    line-height: 1.65;
}

.ab-expertise-section {
    color: #fff;
    background: radial-gradient(circle at 10% 15%, rgba(91, 33, 244, .32), transparent 28%), #0d0b24;
}

.ab-expertise-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

.ab-expertise-intro h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: 1.06;
}

.ab-expertise-intro p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .6);
}

.ab-skill-list {
    display: grid;
    gap: 25px;
}

.ab-skill-item > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 13px;
}

.ab-skill-item span {
    color: #b8a7ff;
    font-weight: 800;
}

.ab-skill-track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
}

.ab-skill-track span {
    display: block;
    width: var(--skill-rate);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ab-purple), var(--ab-cyan));
}

.ab-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

.ab-pricing-card {
    position: relative;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    padding: 38px 32px;
    border: 1px solid var(--ab-line);
    border-radius: var(--ab-radius);
    background: #fff;
    box-shadow: var(--ab-shadow-sm);
}

.ab-pricing-card.is-featured {
    transform: translateY(-12px);
    border: 2px solid var(--ab-purple);
    box-shadow: var(--ab-shadow);
}

.ab-pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--ab-purple);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.ab-pricing-card > i {
    color: var(--ab-purple);
    font-size: 30px;
}

.ab-pricing-card h3 {
    margin: 22px 0 12px;
    color: var(--ab-ink);
    font-size: 25px;
    font-weight: 850;
}

.ab-pricing-cycle {
    min-height: 44px;
    margin: 0 0 25px;
}

.ab-pricing-cycle strong,
.ab-pricing-cycle span {
    display: block;
}

.ab-pricing-cycle strong {
    color: var(--ab-ink);
    font-size: 24px;
}

.ab-pricing-cycle span {
    color: var(--ab-ink-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
}

.ab-pricing-card ul {
    display: grid;
    gap: 12px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.ab-pricing-card li {
    display: flex;
    gap: 9px;
    color: var(--ab-ink-soft);
    font-size: 12px;
}

.ab-pricing-card li i {
    margin-top: 4px;
    color: var(--ab-cyan);
}

.ab-pricing-card .ab-button {
    width: 100%;
    margin-top: auto;
}

.ab-centered-action {
    margin-top: 38px;
    text-align: center;
}

.ab-project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: -15px 0 38px;
}

.ab-project-filters button {
    padding: 10px 15px;
    border: 1px solid var(--ab-line);
    border-radius: 999px;
    color: var(--ab-ink-soft);
    background: #fff;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.ab-project-filters button span {
    margin-left: 4px;
    color: var(--ab-purple);
}

.ab-project-filters button.is-active {
    border-color: var(--ab-purple);
    color: #fff;
    background: var(--ab-purple);
}

.ab-project-filters button.is-active span {
    color: #fff;
}

.ab-project-card[hidden] {
    display: none;
}

.ab-project-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.ab-project-live {
    color: var(--ab-ink-soft) !important;
    font-size: 11px;
    font-weight: 800;
}

.ab-filter-empty {
    padding: 40px;
    border-radius: 20px;
    color: var(--ab-ink-soft);
    background: #f7f6fc;
    text-align: center;
}

.ab-brand-ecosystem {
    background: #fff;
}

.ab-brand-cloud {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ab-brand-cloud a {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 13px;
    padding: 14px 18px;
    border: 1px solid var(--ab-line);
    border-radius: 17px;
    background: #fbfbfe;
    transition: transform var(--ab-transition), border-color var(--ab-transition);
}

.ab-brand-cloud a:hover {
    transform: translateY(-3px);
    border-color: rgba(91, 33, 244, .35);
}

.ab-brand-cloud a > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--ab-purple);
    background: #eeeaff;
    font-size: 14px;
    font-weight: 850;
}

.ab-brand-cloud strong {
    overflow: hidden;
    color: var(--ab-ink);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ab-brand-cloud i {
    margin-left: auto;
    color: #aaa6ba;
    font-size: 11px;
}

.ab-newsletter {
    padding: 90px 0;
    color: #fff;
    background: linear-gradient(120deg, #3f159f, #692dee 62%, #3641b2);
}

.ab-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr .95fr;
    align-items: center;
    gap: 80px;
}

.ab-newsletter h2 {
    max-width: 650px;
    margin: 0 0 17px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1.08;
}

.ab-newsletter-inner > div > p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
}

.ab-newsletter form > label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .8);
    font-size: 11px;
    font-weight: 800;
}

.ab-newsletter-form {
    display: flex;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    background: rgba(255, 255, 255, .1);
}

.ab-newsletter-form input {
    min-width: 0;
    flex: 1;
    padding: 12px 13px;
    border: 0;
    color: #fff;
    outline: 0;
    background: transparent;
    font: inherit;
}

.ab-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .46);
}

.ab-newsletter-form button {
    padding: 12px 18px;
    border: 0;
    border-radius: 11px;
    color: var(--ab-purple-dark);
    background: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

.ab-newsletter small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
}

.ab-newsletter small a {
    color: #fff;
    text-decoration: underline;
}

.ab-honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.ab-form-status {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 11px;
}

.ab-form-status.is-success { color: #d9fff6; background: rgba(15, 118, 110, .42); }
.ab-form-status.is-info { color: #eef0ff; background: rgba(30, 64, 175, .38); }
.ab-form-status.is-error { color: #fff0f0; background: rgba(153, 27, 27, .42); }

.ab-footer-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ab-footer-cta-link {
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    text-decoration: underline !important;
}

@media (max-width: 1220px) {
    .ab-header-cta { display: none; }
    .ab-navigation .ab-primary-menu > li > a { padding-inline: 5px; font-size: 10px; }
}

@media (max-width: 900px) {
    .ab-navigation { justify-content: initial; }
    .ab-navigation .ab-primary-menu { display: grid; align-items: stretch; }
    .ab-navigation .ab-primary-menu > li > a { padding: 11px 12px; font-size: 12px; }
    .ab-navigation .ab-submenu,
    .ab-navigation .ab-submenu .ab-submenu {
        position: static;
        width: auto;
        margin: 2px 0 5px 14px;
        padding: 4px;
        border: 0;
        border-left: 2px solid #e7e1ff;
        border-radius: 0;
        box-shadow: none;
    }
    .ab-navigation li:hover > .ab-submenu:not(.is-mobile-open),
    .ab-navigation li:focus-within > .ab-submenu:not(.is-mobile-open) { display: none; }
    .ab-navigation li.is-open > .ab-submenu { display: grid !important; }
    .ab-header-tools { margin: 12px 0; padding: 12px 0 0; border-top: 1px solid var(--ab-line); border-left: 0; }
    .ab-header-cta { display: inline-flex; }
    .ab-tool-menu { right: auto; left: 0; }
    .ab-announcement-track { grid-template-columns: 1fr; }
    .ab-announcement-track > div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
    .ab-showcase-slide { grid-template-columns: 1fr; }
    .ab-showcase-media { min-height: 300px; order: -1; }
    .ab-feature-hub { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ab-expertise-layout { grid-template-columns: 1fr; gap: 55px; }
    .ab-pricing-grid { grid-template-columns: 1fr; }
    .ab-pricing-card.is-featured { transform: none; }
    .ab-brand-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ab-newsletter-inner { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 620px) {
    .ab-topbar-links a:nth-child(3) { display: none; }
    .ab-announcement-track > div { align-items: flex-start; flex-wrap: wrap; padding-inline: 4px; }
    .ab-announcement-track a { width: 100%; margin-left: 24px; }
    .ab-showcase-section { padding-top: 74px; }
    .ab-showcase-slide { min-height: 0; }
    .ab-showcase-copy { padding: 34px 25px 40px; }
    .ab-feature-hub { grid-template-columns: 1fr; }
    .ab-feature-hub > a { min-height: 205px; }
    .ab-brand-cloud { grid-template-columns: 1fr; }
    .ab-newsletter { padding: 68px 0; }
    .ab-newsletter-form { display: grid; }
    .ab-footer-cta-actions { align-items: flex-start; }
}

/* Local Spline concept preview */
.ab-home .ab-header {
    border-bottom-color: rgba(255, 255, 255, .08);
    background: rgba(5, 5, 8, .94);
    backdrop-filter: blur(22px);
}

.ab-home .ab-header.is-sticky {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .34);
}

.ab-home .ab-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: #010102;
}

.ab-home .ab-brand img {
    filter: brightness(0) invert(1);
}

.ab-home .ab-navigation .ab-primary-menu > li > a {
    color: rgba(255, 255, 255, .74);
}

.ab-home .ab-navigation .ab-primary-menu > li > a:hover,
.ab-home .ab-navigation .ab-primary-menu > li > a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, .075);
}

.ab-home .ab-header-tools {
    border-left-color: rgba(255, 255, 255, .1);
}

.ab-home .ab-header-tool,
.ab-home .ab-language-tool {
    color: rgba(255, 255, 255, .82) !important;
    background: rgba(255, 255, 255, .07);
}

.ab-home .ab-header-tool:hover,
.ab-home .ab-language-tool:hover {
    color: #fff !important;
    background: rgba(139, 92, 246, .2);
}

.ab-home .ab-menu-toggle {
    background: rgba(255, 255, 255, .08);
}

.ab-home .ab-menu-toggle span:not(.sr-only) {
    background: #fff;
}

.ab-home .ab-hero {
    padding: 86px 0 82px;
    color: #fff;
    background:
        radial-gradient(circle at 74% 24%, rgba(112, 70, 255, .2), transparent 26%),
        radial-gradient(circle at 13% 82%, rgba(43, 211, 194, .1), transparent 24%),
        #050508;
}

.ab-home .ab-hero::before {
    opacity: .3;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.ab-home .ab-hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
    gap: clamp(48px, 6vw, 92px);
}

.ab-home .ab-hero-copy h1 {
    max-width: 700px;
    color: #f8f7fb;
    font-size: clamp(52px, 6.3vw, 82px);
}

.ab-home .ab-gradient-text {
    background: linear-gradient(180deg, #fff 8%, #9d9ca8 92%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ab-home .ab-hero-copy > p {
    color: rgba(235, 234, 242, .68);
}

.ab-home .ab-hero .ab-eyebrow {
    border-color: rgba(139, 106, 255, .28);
    color: #b9a7ff;
    background: rgba(106, 71, 235, .11);
}

.ab-home .ab-hero .ab-button-outline {
    border-color: rgba(255, 255, 255, .16);
    color: #fff !important;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(12px);
}

.ab-home .ab-hero .ab-button-outline:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
}

.ab-home .ab-hero-proof {
    border-top-color: rgba(255, 255, 255, .1);
}

.ab-home .ab-proof-item {
    color: rgba(238, 237, 244, .68);
}

.ab-home .ab-proof-item i {
    color: #b7a4ff;
    background: rgba(131, 93, 255, .13);
}

.ab-home .ab-hero-visual {
    --spline-pointer-x: 50%;
    --spline-pointer-y: 34%;
    min-height: 590px;
    perspective: 1200px;
}

.ab-spline-card {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 32px;
    background: rgba(6, 6, 10, .96);
    box-shadow: 0 42px 120px rgba(0, 0, 0, .52), 0 0 0 1px rgba(112, 78, 255, .05) inset;
    isolation: isolate;
}

.ab-spline-card::before {
    position: absolute;
    z-index: -1;
    inset: -1px;
    opacity: .82;
    background:
        radial-gradient(circle at 85% 14%, rgba(121, 77, 255, .2), transparent 31%),
        radial-gradient(circle at 11% 90%, rgba(40, 203, 185, .09), transparent 27%);
    content: "";
}

.ab-spline-spotlight {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 290px;
    height: 290px;
    transform: translate(calc(var(--spline-pointer-x) - 145px), calc(var(--spline-pointer-y) - 145px));
    border-radius: 50%;
    opacity: .28;
    background: radial-gradient(circle at center, rgba(255, 255, 255, .52), rgba(200, 188, 255, .18) 34%, transparent 70%);
    filter: blur(24px);
    pointer-events: none;
    transition: opacity .22s ease, transform .12s ease-out;
}

.is-spline-hovered .ab-spline-spotlight {
    opacity: .82;
}

.ab-spline-chrome,
.ab-spline-footer {
    position: absolute;
    z-index: 7;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    pointer-events: none;
}

.ab-spline-chrome {
    top: 0;
    height: 62px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(5, 5, 8, .92), rgba(5, 5, 8, .28));
}

.ab-spline-footer {
    bottom: 0;
    min-height: 54px;
    padding: 0 24px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: linear-gradient(0deg, rgba(5, 5, 8, .93), rgba(5, 5, 8, .4));
}

.ab-spline-footer span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
}

.ab-spline-dots {
    display: flex;
    gap: 6px;
}

.ab-spline-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.ab-spline-dots span:first-child { background: #fa6883; }
.ab-spline-dots span:nth-child(2) { background: #eeba5c; }
.ab-spline-dots span:last-child { background: #56d8bc; }

.ab-spline-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ab-spline-status i {
    color: #4ee3b8;
    font-size: 6px;
    filter: drop-shadow(0 0 6px rgba(78, 227, 184, .8));
}

.ab-spline-stage {
    position: absolute;
    z-index: 2;
    inset: 50px 0 42px;
}

.ab-spline-stage spline-viewer {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .6s ease;
}

.is-spline-ready .ab-spline-stage spline-viewer {
    opacity: 1;
}

.ab-spline-loader {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255, 255, 255, .46);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: opacity .35s ease, visibility .35s ease;
}

.is-spline-ready .ab-spline-loader {
    visibility: hidden;
    opacity: 0;
}

.ab-spline-loader-ring {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, .1);
    border-top-color: #9d7cff;
    border-radius: 50%;
    animation: ab-spline-spin .8s linear infinite;
}

.ab-spline-noscript {
    padding: 90px 20px;
    color: rgba(255, 255, 255, .6);
    text-align: center;
}

.ab-home .ab-floating-card {
    z-index: 9;
    border-color: rgba(255, 255, 255, .11);
    color: #fff;
    background: rgba(14, 13, 21, .78);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .38);
    backdrop-filter: blur(18px);
}

.ab-home .ab-floating-card span {
    color: rgba(255, 255, 255, .52);
}

.ab-home .ab-floating-card strong {
    color: #fff;
}

.ab-home .ab-capability-strip {
    border-color: rgba(255, 255, 255, .08);
    background: #07070a;
}

.ab-home .ab-capability-track {
    color: rgba(255, 255, 255, .48);
}

.ab-home .ab-capability-track i {
    color: #8e6eff;
    filter: drop-shadow(0 0 7px rgba(142, 110, 255, .58));
}

.ab-home .ab-announcement {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: linear-gradient(90deg, #0a0910, #151027 50%, #0a0910);
}

.ab-home .ab-showcase-section {
    color: #fff;
    background:
        radial-gradient(circle at 86% 8%, rgba(102, 65, 228, .13), transparent 24%),
        #09090d;
}

.ab-home .ab-showcase-section .ab-section-heading h2,
.ab-home .ab-services-section .ab-section-heading h2 {
    color: #f7f6fa;
}

.ab-home .ab-showcase-section .ab-section-heading p,
.ab-home .ab-services-section .ab-section-heading p {
    color: rgba(235, 234, 242, .58);
}

.ab-home .ab-showcase-controls button {
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
    background: rgba(255, 255, 255, .055);
}

.ab-home .ab-showcase-controls button:hover {
    border-color: rgba(139, 106, 255, .42);
    background: rgba(139, 106, 255, .16);
}

.ab-home .ab-showcase-slide {
    border: 1px solid rgba(255, 255, 255, .1);
    background: linear-gradient(135deg, #0c0b12, #24174c 58%, #4f2da5);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .35);
}

.ab-home .ab-services-section {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 7% 11%, rgba(47, 206, 190, .08), transparent 22%),
        radial-gradient(circle at 90% 82%, rgba(114, 74, 245, .13), transparent 26%),
        #07070a;
}

.ab-home .ab-services-section::before {
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at center, black, transparent 84%);
    content: "";
    pointer-events: none;
}

.ab-home .ab-services-section .ab-container {
    position: relative;
    z-index: 2;
}

.ab-home .ab-service-card {
    border-color: rgba(255, 255, 255, .1);
    background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
    box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
    backdrop-filter: blur(16px);
}

.ab-home .ab-service-card::after {
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(121, 82, 255, .19), transparent 70%);
}

.ab-home .ab-service-card:hover {
    border-color: rgba(139, 105, 255, .34);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .32), 0 0 46px rgba(99, 64, 221, .08);
}

.ab-home .ab-service-icon {
    border: 1px solid rgba(165, 140, 255, .18);
    color: #bbaaff;
    background: rgba(120, 79, 255, .12);
}

.ab-home .ab-service-card h3 {
    color: #fff;
}

.ab-home .ab-service-card p {
    color: rgba(235, 234, 242, .55);
}

.ab-home .ab-service-card .ab-text-link {
    color: #bdaeff !important;
}

.ab-home .ab-services-section > .ab-container > div:last-child .ab-button-outline {
    border-color: rgba(255, 255, 255, .15);
    color: #fff !important;
    background: rgba(255, 255, 255, .055);
}

@keyframes ab-spline-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
    .ab-home .ab-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr); gap: 44px; }
    .ab-home .ab-hero-copy h1 { font-size: clamp(48px, 6vw, 70px); }
}

@media (max-width: 900px) {
    .ab-home .ab-navigation {
        border-color: rgba(255, 255, 255, .1);
        background: rgba(9, 9, 14, .98);
        box-shadow: 0 28px 80px rgba(0, 0, 0, .5);
    }
    .ab-home .ab-navigation .ab-submenu {
        color: rgba(255, 255, 255, .76);
        background: transparent;
    }
    .ab-home .ab-header-tools {
        border-top-color: rgba(255, 255, 255, .1);
    }
    .ab-home .ab-hero { padding-top: 70px; }
    .ab-home .ab-hero-grid { grid-template-columns: 1fr; }
    .ab-home .ab-hero-visual { width: min(680px, 100%); min-height: 560px; }
}

@media (max-width: 620px) {
    .ab-home .ab-hero { padding: 52px 0 70px; }
    .ab-home .ab-hero-copy h1 { font-size: clamp(42px, 13vw, 58px); }
    .ab-home .ab-hero-visual { min-height: 470px; }
    .ab-spline-card { border-radius: 24px; }
    .ab-spline-chrome, .ab-spline-footer { padding-inline: 18px; }
    .ab-spline-footer span:last-child { display: none; }
    .ab-home .ab-floating-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .ab-spline-loader-ring { animation: none; }
    .ab-spline-spotlight { transition: none; }
}
