/* ==========================================================================
   About Us — Page Styles
   Template: template-about.php
   ========================================================================== */

.ntono-about {
    --ab-primary: var(--ntono-color-primary, #FAA916);
    --ab-danger: var(--ntono-color-danger, #E5383B);
    --ab-dark-red: #640709;
    --ab-bg: #0B090A;
    --ab-surface: #161A1D;
}

/* ── Hero ── */
.ntono-ab-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--ab-bg);
}

.ntono-ab-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ntono-ab-hero__tag {
    color: var(--ab-primary);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.ntono-ab-hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.ntono-ab-hero__title .ntono-cs-text-primary {
    background: linear-gradient(to right, var(--ab-dark-red), var(--ab-danger));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ntono-ab-hero__desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.15rem;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.ntono-ab-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ab-dark-red);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ntono-ab-hero__cta:hover {
    background: rgba(100, 7, 9, 0.8);
    box-shadow: 0 0 30px rgba(100, 7, 9, 0.5);
}

.ntono-ab-hero__visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntono-ab-hero__globe-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(100, 7, 9, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.ntono-ab-hero__main-asset {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(229, 56, 59, 0.2));
    animation: ntono-ab-float 6s ease-in-out infinite;
}

@keyframes ntono-ab-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ── Origin / Timeline ── */
.ntono-ab-origin {
    padding: 8rem 0;
    background: var(--ab-surface);
    position: relative;
    overflow: hidden;
}

.ntono-ab-origin__glow {
    position: absolute;
    top: -50%;
    right: -25%;
    width: 500px;
    height: 500px;
    background: rgba(100, 7, 9, 0.05);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.ntono-ab-origin__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ntono-ab-origin__header {
    max-width: 720px;
    margin: 0 auto 6rem;
    text-align: center;
}

.ntono-ab-origin__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.ntono-ab-origin__desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.ntono-ab-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.ntono-ab-timeline::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 5%, var(--ab-dark-red) 20%, var(--ab-primary) 50%, var(--ab-primary) 80%, transparent 95%);
    opacity: 0.4;
    z-index: 0;
}

.ntono-ab-milestone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.ntono-ab-milestone__dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ab-dark-red);
    border: 4px solid var(--ab-surface);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(100, 7, 9, 0.5);
    transition: all 0.3s ease;
}

.ntono-ab-milestone:hover .ntono-ab-milestone__dot {
    transform: scale(1.3);
}

.ntono-ab-milestone--highlight .ntono-ab-milestone__dot {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--ab-primary), var(--ab-dark-red));
    box-shadow: 0 0 25px rgba(250, 169, 22, 0.6);
    animation: ab-pulse 2s ease-in-out infinite;
}

@keyframes ab-pulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(250, 169, 22, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(250, 169, 22, 0.7);
    }
}

.ntono-ab-milestone__year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ab-primary);
    margin-bottom: 0.5rem;
}

.ntono-ab-milestone__desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    max-width: 200px;
}

/* ── Team ── */
.ntono-ab-team {
    padding: 8rem 0;
    background: var(--ab-bg);
}

.ntono-ab-team__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ntono-ab-team__header {
    text-align: center;
    margin-bottom: 6rem;
}

.ntono-ab-team__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.ntono-ab-team__subtitle {
    color: rgba(255, 255, 255, 0.4);
}

.ntono-ab-team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.ntono-ab-founder {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(22, 26, 29, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    transition: all 0.5s ease;
}

.ntono-ab-founder:hover {
    border-color: rgba(100, 7, 9, 0.5);
}

.ntono-ab-founder__inner {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.ntono-ab-founder__photo-wrap {
    width: 50%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.ntono-ab-founder__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.7s ease;
}

.ntono-ab-founder:hover .ntono-ab-founder__photo {
    filter: grayscale(0);
}

.ntono-ab-founder__info {
    flex: 1;
}

.ntono-ab-founder__name {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--ab-danger);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.ntono-ab-founder__role {
    color: var(--ab-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    display: block;
}

.ntono-ab-founder__bio {
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.ntono-ab-founder__social {
    display: flex;
    gap: 1rem;
}

.ntono-ab-founder__social a {
    color: var(--ab-dark-red);
    transition: color 0.3s ease;
}

.ntono-ab-founder__social a:hover {
    color: var(--ab-primary);
}

/* ── Global Presence ── */
.ntono-ab-global {
    padding: 8rem 0;
    background: var(--ab-surface);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 1. Ambient Background Glow (Deep Space Red) */
.ntono-ab-global::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(229, 56, 59, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.ntono-ab-global__title,
.ntono-ab-globe {
    position: relative;
    z-index: 1;
}

.ntono-ab-global__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 4rem;
}

.ntono-ab-globe {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ntono-ab-globe__sphere {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(100, 7, 9, 0.2), var(--ab-bg), rgba(244, 162, 97, 0.1));
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(100, 7, 9, 0.1);
    animation: ab-globe-pulse 8s ease-in-out infinite alternate;
    -webkit-mask-image: radial-gradient(circle, black 65%, rgba(0,0,0,0.5) 95%, transparent 100%);
    mask-image: radial-gradient(circle, black 65%, rgba(0,0,0,0.5) 95%, transparent 100%);
}

@keyframes ab-globe-pulse {
    0% { box-shadow: 0 0 20px rgba(100, 7, 9, 0.1); }
    100% { box-shadow: 0 0 60px rgba(250, 169, 22, 0.15); }
}

/* 3. Subtle Film Grain Texture inside the globe sphere */
.ntono-ab-globe__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.15;
    mix-blend-mode: soft-light;
    z-index: 5;
    pointer-events: none;
}

/* Synchronized Moving Layers */
.ntono-ab-globe__map-layer,
.ntono-ab-globe__dots-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 1200px; /* Double width to accommodate repeating map */
    height: 100%;
    animation: ab-spin-earth-sync 30s linear infinite;
    transition: opacity 0.5s ease;
}

.ntono-ab-globe__map-layer {
    background-image: url('../../images/world-map-dotted.svg');
    background-size: 600px auto;
    background-repeat: repeat-x;
    background-position: left center;
    opacity: 0.6; /* Increased opacity so map is clearly visible white */
    filter: brightness(0) invert(1);
    z-index: 1;
}

.ntono-ab-globe__dots-layer {
    z-index: 2; /* Sits above the map layer, but below ::after shadow */
}

/* Brighten the hologen map on hover instead of speeding it up to prevent CSS animation 0% resets */
.ntono-ab-globe:hover .ntono-ab-globe__map-layer {
    opacity: 0.8;
}

/* 3D Inner Volume Shadow overlays the spinning map and dots */
.ntono-ab-globe__sphere::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    /* 
     * Inset bottom-right (black) for shadow depth, 
     * Inset top-left (white) for light reflection 
     */
    box-shadow: inset -40px -40px 60px rgba(0, 0, 0, 0.8), 
                inset 15px 15px 40px rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 10;
}

@keyframes ab-spin-earth-sync {
    from { transform: translateX(0); }
    to { transform: translateX(-600px); }
}

.ntono-ab-globe__ring {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.05); /* Dashed helps visualize rotation */
    border-radius: 50%;
}

.ntono-ab-globe__ring--1 {
    inset: -15%;
    animation: ab-orbit-cw 40s linear infinite;
}

.ntono-ab-globe__ring--2 {
    inset: -30%;
    border-style: solid; /* Keep one solid */
    border-color: rgba(250, 169, 22, 0.03);
    animation: ab-orbit-ccw 60s linear infinite;
}

@keyframes ab-orbit-cw {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ab-orbit-ccw {
    from { transform: rotate(45deg); }
    to { transform: rotate(-315deg); }
}

.ntono-ab-globe__dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: 5;
}

.ntono-ab-globe__dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: ab-radar-ring 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

/* Stagger the dots pulsation slightly */
.ntono-ab-globe__dot:nth-child(2)::after { animation-delay: 0.8s; }
.ntono-ab-globe__dot:nth-child(3)::after { animation-delay: 1.5s; }

@keyframes ab-radar-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(6); opacity: 0; }
}

.ntono-ab-globe__dot--accent {
    background: var(--ab-primary);
    box-shadow: 0 0 20px rgba(244, 162, 97, 0.4);
}

.ntono-ab-globe__dot--danger {
    background: var(--ab-danger);
    box-shadow: 0 0 15px rgba(229, 56, 59, 0.5);
}

.ntono-ab-globe__dot--white {
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.ntono-ab-location-card {
    position: absolute;
    background: rgba(22, 26, 29, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    z-index: 3;
    animation: ab-float 6s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease,
                background 0.4s ease,
                opacity 0.4s ease,
                filter 0.4s ease;
    cursor: pointer;
}

/* Premium hover effect for location cards */
.ntono-ab-location-card:hover {
    background: rgba(22, 26, 29, 0.95);
    border-color: rgba(250, 169, 22, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(250, 169, 22, 0.15);
    transform: scale(1.08) translateY(-5px) !important;
    z-index: 10;
}

/* Focus Intercept UI: When a node is clicked, hide unfocused nodes */
.ntono-ab-globe.is-focused .ntono-ab-location-card:not(.is-active) {
    opacity: 0.15;
    filter: blur(2px) grayscale(100%);
    transform: scale(0.9) translateY(0) !important;
    pointer-events: none;
    animation: none;
}

/* Bring focused node to absolute dominance */
.ntono-ab-globe.is-focused .ntono-ab-location-card.is-active {
    background: rgba(22, 26, 29, 0.95);
    border-color: rgba(250, 169, 22, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 50px rgba(250, 169, 22, 0.3);
    transform: scale(1.15) translateY(-5px) !important;
    z-index: 20;
    animation: none;
}

/* Halt planetary rings on lock-on */
.ntono-ab-globe.is-focused .ntono-ab-globe__ring {
    animation-play-state: paused;
}

/* Stagger floating delays so they don't move in sync */
.ntono-ab-location-card:nth-child(even) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.ntono-ab-location-card:nth-child(3n) {
    animation-delay: -4s;
    animation-duration: 5.5s;
}

@keyframes ab-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ntono-ab-location-card__tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ab-primary);
    letter-spacing: 0.18em;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 2. Active Node Indicator (Telemetry pulsing dot) */
.ntono-ab-location-card__tag::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4ade80; /* Sleek neon green */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
    animation: ab-telemetry-pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes ab-telemetry-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(74, 222, 128, 0.6); }
    50% { opacity: 0.4; transform: scale(0.8); box-shadow: 0 0 5px rgba(74, 222, 128, 0.2); }
}

.ntono-ab-location-card__tag--accent {
    color: var(--ab-primary);
}

.ntono-ab-location-card__tag--danger {
    color: var(--ab-danger);
}

/* --- Expandable Team Directory inside Location Cards --- */
.ntono-ab-location-card__team {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: ab-fade-in-up 0.4s ease forwards;
    cursor: default; /* Prevent pointer on internal block */
}

/* Only show directory when card is focused and active */
.ntono-ab-globe.is-focused .ntono-ab-location-card.is-active .ntono-ab-location-card__team {
    display: block;
}

.ntono-ab-location-card__member {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.ntono-ab-location-card__member:last-child {
    margin-bottom: 0;
}

.ntono-ab-location-card__avatar,
.ntono-ab-location-card__avatar-placeholder {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ntono-ab-location-card__avatar {
    object-fit: cover;
}

.ntono-ab-location-card__avatar-placeholder {
    background: rgba(255, 255, 255, 0.05); /* When no image is present */
}

.ntono-ab-location-card__meta strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3px;
}

.ntono-ab-location-card__meta span {
    display: block;
    font-size: 0.7rem;
    color: var(--ab-text-muted);
    line-height: 1.3;
}

@keyframes ab-fade-in-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ntono-ab-location-card__city {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

/* ── Values ── */
.ntono-ab-values {
    padding: 8rem 0;
    background: var(--ab-bg);
}

.ntono-ab-values__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ntono-ab-values__header {
    max-width: 720px;
    margin: 0 auto 6rem;
    text-align: center;
}

.ntono-ab-values__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.ntono-ab-values__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.ntono-ab-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ntono-ab-value {
    background: rgba(22, 26, 29, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.ntono-ab-value:hover {
    border-color: rgba(250, 169, 22, 0.5);
}

.ntono-ab-value__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(250, 169, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: background 0.3s ease;
}

.ntono-ab-value:hover .ntono-ab-value__icon {
    background: rgba(250, 169, 22, 0.2);
}

.ntono-ab-value__icon .material-icons,
.ntono-ab-value__icon .material-symbols-rounded {
    color: var(--ab-primary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.ntono-ab-value:hover .ntono-ab-value__icon .material-icons,
.ntono-ab-value:hover .ntono-ab-value__icon .material-symbols-rounded {
    color: #fff;
}

.ntono-ab-value__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.ntono-ab-value__desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ── CTA ── */
.ntono-ab-cta {
    padding: 6rem 1.5rem;
    background: var(--ab-bg);
}

.ntono-ab-cta__container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--ab-primary), #f59e0b);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 100px rgba(250, 169, 22, 0.15);
}

.ntono-ab-cta__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 0, 0, 0.1) 35px, rgba(0, 0, 0, 0.1) 36px);
}

.ntono-ab-cta__glow {
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.ntono-ab-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.ntono-ab-cta__tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    color: #000;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.ntono-ab-cta__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.ntono-ab-cta__desc {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.ntono-ab-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ntono-ab-cta__btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ntono-ab-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ntono-ab-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ntono-ab-hero__desc {
        margin: 0 auto 2.5rem;
    }

    .ntono-ab-hero__visual {
        height: 300px;
    }

    .ntono-ab-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .ntono-ab-timeline::before {
        display: none;
    }

    .ntono-ab-team__grid {
        grid-template-columns: 1fr;
    }

    .ntono-ab-founder__inner {
        flex-direction: column;
    }

    .ntono-ab-founder__photo-wrap {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .ntono-ab-globe__sphere {
        width: 240px;
        height: 240px;
    }

    .ntono-ab-values__grid {
        grid-template-columns: 1fr;
    }

    .ntono-ab-cta__container {
        padding: 3rem 1.5rem;
    }
}