/* Scrumlin — Contact Us page */

.ct {
    position: relative;
    color: var(--sc-text);
    background: var(--sc-bg);
    overflow-x: clip;
}

.ct-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ct-kicker {
    margin: 0 0 0.55rem;
    color: var(--sc-accent);
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ct-title {
    margin: 0 0 0.55rem;
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--sc-text-bright);
}

.ct-title__accent {
    background: var(--sc-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ct-lead {
    margin: 0;
    max-width: 40rem;
    color: var(--sc-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ct-section-head {
    margin-bottom: 1.5rem;
}

.ct-section-head--center {
    text-align: center;
}

.ct-section-head--center .ct-lead {
    margin-inline: auto;
}

.ct-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 1.15rem;
    border-radius: 999px;
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ct-btn--primary {
    color: #041018;
    background: var(--sc-gradient-cta);
    box-shadow: 0 10px 28px rgba(var(--sc-cyan-rgb), 0.22);
}

.ct-btn--primary:hover {
    transform: translateY(-2px);
    color: #041018;
}

.ct-btn--glow {
    position: relative;
    overflow: hidden;
    animation: ct-btn-breathe 3.2s ease-in-out infinite;
}

.ct-btn--glow::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: ct-sheen 3.8s ease-in-out infinite;
    pointer-events: none;
}

.ct-btn--ghost {
    color: var(--sc-text-bright);
    background: rgba(var(--sc-surface-rgb), 0.55);
    border: 1px solid rgba(var(--sc-border-rgb), 0.28);
}

.ct-btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--sc-cyan-rgb), 0.45);
    color: var(--sc-text-bright);
}

.ct-live-dot {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.35rem;
    border-radius: 50%;
    background: var(--sc-green);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
    animation: ct-live 1.8s ease-out infinite;
    vertical-align: 0.05em;
}

.ct-kicker--pulse {
    display: inline-flex;
    align-items: center;
}

[data-ct-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-ct-reveal].is-inview {
    opacity: 1;
    transform: none;
}

[data-ct-stagger] > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-ct-reveal].is-inview [data-ct-stagger] > *,
.is-inview[data-ct-stagger] > * {
    opacity: 1;
    transform: none;
}

[data-ct-reveal].is-inview [data-ct-stagger] > *:nth-child(1),
.is-inview[data-ct-stagger] > *:nth-child(1) { transition-delay: 0.05s; }
[data-ct-reveal].is-inview [data-ct-stagger] > *:nth-child(2),
.is-inview[data-ct-stagger] > *:nth-child(2) { transition-delay: 0.12s; }
[data-ct-reveal].is-inview [data-ct-stagger] > *:nth-child(3),
.is-inview[data-ct-stagger] > *:nth-child(3) { transition-delay: 0.19s; }
[data-ct-reveal].is-inview [data-ct-stagger] > *:nth-child(4),
.is-inview[data-ct-stagger] > *:nth-child(4) { transition-delay: 0.26s; }
[data-ct-reveal].is-inview [data-ct-stagger] > *:nth-child(5),
.is-inview[data-ct-stagger] > *:nth-child(5) { transition-delay: 0.33s; }
[data-ct-reveal].is-inview [data-ct-stagger] > *:nth-child(6),
.is-inview[data-ct-stagger] > *:nth-child(6) { transition-delay: 0.4s; }

/* ---------- Hero ---------- */
.ct-hero {
    position: relative;
    padding: 7.5rem 0 3.5rem;
    overflow: hidden;
}

.ct-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ct-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 20%, rgba(var(--sc-cyan-rgb), 0.14), transparent 60%),
        radial-gradient(ellipse 55% 50% at 85% 30%, rgba(var(--sc-violet-rgb), 0.16), transparent 55%);
}

.ct-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
}

.ct-hero__orb--a {
    width: 280px;
    height: 280px;
    top: 10%;
    right: 8%;
    background: rgba(var(--sc-cyan-rgb), 0.28);
    animation: ct-orb-drift 10s ease-in-out infinite;
}

.ct-hero__orb--b {
    width: 220px;
    height: 220px;
    bottom: 5%;
    left: 5%;
    background: rgba(var(--sc-violet-rgb), 0.25);
    animation: ct-orb-drift 12s ease-in-out infinite reverse;
}

.ct-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--sc-border-rgb), 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--sc-border-rgb), 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 55% 62% at 82% 38%, #000 12%, transparent 72%);
    animation: ct-grid-drift 28s linear infinite;
}

.ct-hero__beam {
    position: absolute;
    width: 2px;
    height: 140%;
    top: -20%;
    background: linear-gradient(180deg, transparent, rgba(var(--sc-cyan-rgb), 0.55), transparent);
    filter: blur(1px);
    opacity: 0.28;
    animation: ct-beam 7s ease-in-out infinite;
}

.ct-hero__beam--a {
    display: none;
}

.ct-hero__beam--b {
    left: auto;
    right: 14%;
    background: linear-gradient(180deg, transparent, rgba(var(--sc-violet-rgb), 0.5), transparent);
    animation-delay: 2.2s;
    animation-duration: 9s;
}

.ct-hero__particles {
    position: absolute;
    inset: 0;
}

.ct-hero__particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(var(--sc-cyan-rgb), 0.85);
    box-shadow: 0 0 8px rgba(var(--sc-cyan-rgb), 0.65);
    animation: ct-particle 9s linear infinite;
    opacity: 0;
}

.ct-hero__particles span:nth-child(1) { left: 8%; animation-delay: 0s; }
.ct-hero__particles span:nth-child(2) { left: 18%; animation-delay: 1.1s; background: rgba(var(--sc-violet-rgb), 0.9); }
.ct-hero__particles span:nth-child(3) { left: 28%; animation-delay: 2.4s; }
.ct-hero__particles span:nth-child(4) { left: 40%; animation-delay: 0.7s; }
.ct-hero__particles span:nth-child(5) { left: 52%; animation-delay: 3.2s; background: rgba(var(--sc-violet-rgb), 0.85); }
.ct-hero__particles span:nth-child(6) { left: 62%; animation-delay: 1.8s; }
.ct-hero__particles span:nth-child(7) { left: 72%; animation-delay: 4.1s; }
.ct-hero__particles span:nth-child(8) { left: 80%; animation-delay: 2.8s; background: rgba(52, 211, 153, 0.85); }
.ct-hero__particles span:nth-child(9) { left: 88%; animation-delay: 0.3s; }
.ct-hero__particles span:nth-child(10) { left: 95%; animation-delay: 3.6s; }

.ct-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.ct-hero__title {
    margin: 0 0 1rem;
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--sc-text-bright);
}

.ct-hero__line {
    display: block;
}

.ct-hero__line--accent {
    background: var(--sc-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: ct-text-shine 4.5s linear infinite;
}

.ct-hero__lead {
    margin: 0 0 1.05rem;
    max-width: 34rem;
    color: var(--sc-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.ct-hero__reach {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.4rem;
    max-width: 36rem;
}

.ct-hero__reach a,
.ct-hero__reach > li > span {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--sc-text-soft);
    text-decoration: none;
    font-size: 0.86rem;
    line-height: 1.45;
}

.ct-hero__reach a:hover,
.ct-hero__reach a:focus-visible {
    color: var(--sc-accent);
}

.ct-hero__reach i {
    color: var(--sc-accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.ct-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ct-hero__visual {
    position: relative;
    min-height: 320px;
}

.ct-hero__stage {
    position: relative;
    height: 100%;
    min-height: 340px;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.22);
    background:
        linear-gradient(160deg, rgba(var(--sc-surface-rgb), 0.85), rgba(var(--sc-bg-rgb), 0.95));
    box-shadow:
        0 20px 50px rgba(var(--sc-shadow-rgb), 0.4),
        0 0 0 1px rgba(var(--sc-cyan-rgb), 0.08),
        inset 0 0 40px rgba(var(--sc-cyan-rgb), 0.04);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ct-hero__art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
    z-index: 0;
}

.ct-hero__scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.09) 48%, transparent 55%);
    background-size: 100% 240%;
    animation: ct-scan 5.5s linear infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 2;
}

.ct-hero__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(var(--sc-cyan-rgb), 0.28);
    pointer-events: none;
}

.ct-hero__orbit--a {
    width: 220px;
    height: 220px;
    left: 28%;
    top: 18%;
    animation: ct-spin 18s linear infinite;
}

.ct-hero__orbit--b {
    width: 300px;
    height: 300px;
    left: 18%;
    top: 8%;
    border-color: rgba(var(--sc-violet-rgb), 0.22);
    animation: ct-spin 28s linear infinite reverse;
}

.ct-hero__skyline {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 38%;
    height: 28%;
    background:
        linear-gradient(180deg, transparent, rgba(var(--sc-violet-rgb), 0.18)),
        repeating-linear-gradient(90deg, rgba(var(--sc-border-rgb), 0.2) 0 14px, transparent 14px 28px);
    clip-path: polygon(0 70%, 8% 40%, 16% 55%, 24% 20%, 34% 45%, 44% 15%, 54% 48%, 64% 25%, 74% 50%, 84% 30%, 94% 60%, 100% 45%, 100% 100%, 0 100%);
    opacity: 0.7;
    animation: ct-skyline 6s ease-in-out infinite;
}

.ct-hero__desk {
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 18%;
    height: 18%;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, rgba(var(--sc-chrome-rgb), 0.9), rgba(8, 12, 32, 0.95));
    border: 1px solid rgba(var(--sc-border-rgb), 0.2);
}

.ct-hero__laptop {
    position: absolute;
    left: 22%;
    bottom: 70%;
    width: 42%;
    height: 58%;
    border-radius: 8px 8px 2px 2px;
    background: linear-gradient(145deg, rgba(var(--sc-violet-rgb), 0.55), rgba(var(--sc-cyan-rgb), 0.35));
    box-shadow: 0 8px 20px rgba(var(--sc-shadow-rgb), 0.35);
    overflow: hidden;
}

.ct-hero__screen {
    position: absolute;
    inset: 12% 10% 18%;
    border-radius: 3px;
    background:
        linear-gradient(90deg, transparent 0 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%),
        linear-gradient(180deg, rgba(34, 211, 238, 0.35), rgba(99, 102, 241, 0.45));
    background-size: 200% 100%, 100% 100%;
    animation: ct-screen 2.8s ease-in-out infinite;
    display: block;
}

.ct-hero__mug {
    position: absolute;
    right: 16%;
    bottom: 85%;
    width: 14%;
    height: 40%;
    border-radius: 6px 6px 4px 4px;
    background: linear-gradient(180deg, rgba(var(--sc-violet-rgb), 0.7), rgba(var(--sc-blue-rgb), 0.5));
}

.ct-hero__mug::after {
    content: "";
    position: absolute;
    top: -18%;
    left: 30%;
    width: 40%;
    height: 28%;
    border-radius: 50%;
    border: 2px solid rgba(var(--sc-cyan-rgb), 0.45);
    border-bottom-color: transparent;
    animation: ct-steam 2.4s ease-in-out infinite;
}

.ct-hero__agent {
    position: absolute;
    left: 38%;
    bottom: 32%;
    width: 26%;
    aspect-ratio: 1;
    animation: ct-float 4.5s ease-in-out infinite;
}

.ct-hero__avatar {
    position: absolute;
    inset: 18% 12% 0;
    border-radius: 50% 50% 42% 42%;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 40%, rgba(var(--sc-violet-rgb), 0.85) 41%, rgba(var(--sc-blue-rgb), 0.75) 100%);
}

.ct-hero__headset {
    position: absolute;
    inset: 8% 0 auto;
    height: 42%;
    border: 3px solid rgba(var(--sc-cyan-rgb), 0.75);
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
    box-shadow: 0 0 12px rgba(var(--sc-cyan-rgb), 0.35);
}

.ct-hero__bubble {
    position: absolute;
    top: 14%;
    right: 12%;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(var(--sc-cyan-rgb), 0.16);
    border: 1px solid rgba(var(--sc-cyan-rgb), 0.4);
    color: var(--sc-cyan-soft);
    font-size: 0.72rem;
    font-weight: 700;
    animation: ct-float 3.2s ease-in-out infinite;
    z-index: 3;
    box-shadow: 0 0 20px rgba(var(--sc-cyan-rgb), 0.2);
}

.ct-hero__bubble em {
    font-style: normal;
}

.ct-hero__typing {
    display: inline-flex;
    gap: 3px;
    margin-left: 0.15rem;
}

.ct-hero__typing i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sc-cyan-soft);
    animation: ct-typing 1.2s ease-in-out infinite;
}

.ct-hero__typing i:nth-child(2) { animation-delay: 0.15s; }
.ct-hero__typing i:nth-child(3) { animation-delay: 0.3s; }

.ct-hero__pulse {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(var(--sc-cyan-rgb), 0.35);
    animation: ct-pulse 3.5s ease-out infinite;
}

.ct-hero__pulse--a {
    width: 120px;
    height: 120px;
    left: 42%;
    bottom: 28%;
}

.ct-hero__pulse--b {
    width: 180px;
    height: 180px;
    left: 36%;
    bottom: 20%;
    animation-delay: 1.1s;
    border-color: rgba(var(--sc-violet-rgb), 0.28);
}

.ct-hero__pulse--c {
    width: 240px;
    height: 240px;
    left: 30%;
    bottom: 12%;
    animation-delay: 2s;
    border-color: rgba(var(--sc-cyan-rgb), 0.15);
}

.ct-hero__chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgba(var(--sc-surface-rgb), 0.88);
    border: 1px solid rgba(var(--sc-border-rgb), 0.28);
    color: var(--sc-text-soft);
    font-size: 0.68rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    animation: ct-float 4s ease-in-out infinite;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(var(--sc-shadow-rgb), 0.25);
}

.ct-hero__chip i { color: var(--sc-cyan); }
.ct-hero__chip--mail { top: 22%; left: 8%; animation-delay: 0.2s; }
.ct-hero__chip--call { top: 48%; right: 6%; animation-delay: 0.8s; animation-name: ct-float-x; }
.ct-hero__chip--meet { bottom: 12%; left: 10%; animation-delay: 1.4s; }

.ct-hero__signal {
    position: absolute;
    right: 10%;
    bottom: 12%;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
    z-index: 3;
}

.ct-hero__signal span {
    width: 4px;
    border-radius: 2px;
    background: var(--sc-cyan);
    animation: ct-bars 1.1s ease-in-out infinite;
}

.ct-hero__signal span:nth-child(1) { height: 35%; }
.ct-hero__signal span:nth-child(2) { height: 65%; animation-delay: 0.15s; }
.ct-hero__signal span:nth-child(3) { height: 100%; animation-delay: 0.3s; }

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

@keyframes ct-float-x {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-6px, -7px); }
}

@keyframes ct-pulse {
    0% { transform: scale(0.7); opacity: 0.7; }
    100% { transform: scale(1.25); opacity: 0; }
}

@keyframes ct-steam {
    0%, 100% { opacity: 0.35; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-4px); }
}

@keyframes ct-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-18px, 14px) scale(1.08); }
}

@keyframes ct-grid-drift {
    from { background-position: 0 0; }
    to { background-position: 48px 48px; }
}

@keyframes ct-beam {
    0%, 100% { transform: translateY(-8%) scaleY(0.85); opacity: 0.15; }
    50% { transform: translateY(8%) scaleY(1.05); opacity: 0.55; }
}

@keyframes ct-particle {
    0% { transform: translateY(110vh) scale(0.4); opacity: 0; }
    10% { opacity: 0.9; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

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

@keyframes ct-scan {
    from { background-position: 0 -40%; }
    to { background-position: 0 140%; }
}

@keyframes ct-screen {
    0%, 100% { background-position: 100% 0, 0 0; opacity: 0.75; }
    50% { background-position: -100% 0, 0 0; opacity: 1; }
}

@keyframes ct-typing {
    0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-2px); }
}

@keyframes ct-bars {
    0%, 100% { transform: scaleY(0.55); opacity: 0.55; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes ct-skyline {
    0%, 100% { opacity: 0.55; filter: brightness(1); }
    50% { opacity: 0.85; filter: brightness(1.2); }
}

@keyframes ct-text-shine {
    to { background-position: 200% center; }
}

@keyframes ct-sheen {
    0%, 55%, 100% { transform: translateX(-120%); }
    70% { transform: translateX(120%); }
}

@keyframes ct-btn-breathe {
    0%, 100% { box-shadow: 0 10px 28px rgba(var(--sc-cyan-rgb), 0.22); }
    50% { box-shadow: 0 14px 36px rgba(var(--sc-cyan-rgb), 0.4), 0 0 24px rgba(var(--sc-violet-rgb), 0.18); }
}

@keyframes ct-live {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

@keyframes ct-chip-pop {
    0% { transform: scale(0.92); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes ct-border-flow {
    to { background-position: 200% 0; }
}

/* ---------- Connect / form ---------- */
.ct-connect {
    padding: 2.5rem 0 3rem;
}

.ct-connect__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1.25rem;
    align-items: start;
}

.ct-compose {
    position: relative;
    border-radius: 24px;
    border: 1px solid transparent;
    background:
        linear-gradient(160deg, rgba(var(--sc-surface-rgb), 0.92), rgba(var(--sc-chrome-rgb), 0.72)) padding-box,
        linear-gradient(120deg, rgba(var(--sc-cyan-rgb), 0.55), rgba(var(--sc-violet-rgb), 0.15), rgba(var(--sc-cyan-rgb), 0.45)) border-box;
    background-size: 100% 100%, 200% 100%;
    animation: ct-border-flow 6s linear infinite;
    box-shadow: 0 22px 50px rgba(var(--sc-shadow-rgb), 0.35);
    overflow: hidden;
}

.ct-compose__glow {
    position: absolute;
    inset: -20% auto auto -10%;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--sc-cyan-rgb), 0.18), transparent 70%);
    pointer-events: none;
    animation: ct-orb-drift 9s ease-in-out infinite;
}

.ct-compose__sheen {
    position: absolute;
    inset: 0;
    background: radial-gradient(420px circle at var(--ct-x, 50%) var(--ct-y, 30%), rgba(var(--sc-cyan-rgb), 0.14), transparent 45%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ct-compose:hover .ct-compose__sheen,
.ct-compose:focus-within .ct-compose__sheen {
    opacity: 1;
}

.ct-compose__form {
    position: relative;
    z-index: 1;
    padding: 1.35rem 1.35rem 1.45rem;
}

.ct-compose__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
}

.ct-compose__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(var(--sc-cyan-rgb), 0.12);
    border: 1px solid rgba(var(--sc-cyan-rgb), 0.28);
    color: var(--sc-cyan-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: ct-btn-breathe 3.6s ease-in-out infinite;
}

.ct-compose__badge i {
    animation: ct-bars 1.4s ease-in-out infinite;
}

.ct-compose__eta {
    color: var(--sc-muted);
    font-size: 0.78rem;
}

.ct-compose__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 0.85rem;
}

.ct-input {
    display: grid;
    gap: 0.4rem;
    min-width: 0;
}

.ct-input--full {
    grid-column: 1 / -1;
}

.ct-input__label {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sc-text-soft);
}

.ct-input__label em {
    color: #f87171;
    font-style: normal;
}

.ct-input input,
.ct-input textarea {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.22);
    background: rgba(var(--sc-bg-rgb), 0.55);
    color: var(--sc-text-bright);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ct-input input::placeholder,
.ct-input textarea::placeholder {
    color: rgba(var(--sc-border-rgb), 0.45);
}

.ct-input textarea {
    resize: vertical;
    min-height: 7rem;
}

.ct-input input:hover,
.ct-input textarea:hover {
    border-color: rgba(var(--sc-cyan-rgb), 0.35);
}

.ct-input input:focus,
.ct-input textarea:focus {
    border-color: rgba(var(--sc-cyan-rgb), 0.7);
    box-shadow: 0 0 0 3px rgba(var(--sc-cyan-rgb), 0.16);
    background: rgba(var(--sc-bg-rgb), 0.72);
}

.ct-input input[type="date"] {
    color-scheme: dark;
}

.ct-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ct-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.22);
    background: rgba(var(--sc-bg-rgb), 0.4);
    color: var(--sc-text-soft);
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ct-chip i {
    font-size: 0.9rem;
    color: var(--sc-cyan);
}

.ct-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--sc-cyan-rgb), 0.4);
    color: var(--sc-text-bright);
}

.ct-chip.is-active,
.ct-chip[aria-pressed="true"] {
    color: var(--sc-text-bright);
    border-color: rgba(var(--sc-cyan-rgb), 0.55);
    background: linear-gradient(120deg, rgba(var(--sc-cyan-rgb), 0.18), rgba(var(--sc-violet-rgb), 0.16));
    box-shadow: 0 8px 20px rgba(var(--sc-cyan-rgb), 0.12);
    animation: ct-chip-pop 0.35s ease;
}

.ct-compose__footer {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.ct-btn--wide {
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.2rem;
}

.ct-compose__form.is-submitting {
    pointer-events: none;
    opacity: 0.72;
}

.ct-compose__form.is-submitting [type="submit"] {
    cursor: wait;
}

.ct-compose__privacy {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--sc-muted);
    font-size: 0.78rem;
}

.ct-compose__privacy i {
    color: var(--sc-green);
}

.ct-form__note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--sc-green);
}

.ct-form__note.is-error {
    color: #f87171;
}

/* Reach / contact board */
.ct-reach {
    display: grid;
    gap: 0.85rem;
}

.ct-reach__hq {
    padding: 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.24);
    background:
        linear-gradient(155deg, rgba(var(--sc-violet-rgb), 0.12), rgba(var(--sc-surface-rgb), 0.85) 40%, rgba(var(--sc-cyan-rgb), 0.08));
    box-shadow: 0 18px 40px rgba(var(--sc-shadow-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.ct-reach__hq::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -20%;
    width: 55%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--sc-cyan-rgb), 0.16), transparent 70%);
    animation: ct-orb-drift 8s ease-in-out infinite;
    pointer-events: none;
}

.ct-reach__hq-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}

.ct-reach__mark {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(var(--sc-border-rgb), 0.2);
    flex-shrink: 0;
}

.ct-reach__mark img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.ct-reach__eyebrow {
    margin: 0 0 0.15rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sc-cyan);
}

.ct-reach__name {
    margin: 0;
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: 0.98rem;
    color: var(--sc-text-bright);
    line-height: 1.25;
}

.ct-reach__address {
    margin: 0 0 0.95rem;
    color: var(--sc-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.ct-reach__hq-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ct-reach__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.25);
    background: rgba(var(--sc-bg-rgb), 0.45);
    color: var(--sc-text-soft);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.ct-reach__link:hover {
    color: var(--sc-text-bright);
    border-color: rgba(var(--sc-cyan-rgb), 0.45);
    background: rgba(var(--sc-cyan-rgb), 0.1);
}

.ct-reach__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.ct-reach__card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.9rem 0.85rem;
    border-radius: 18px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.2);
    background: rgba(var(--sc-surface-rgb), 0.7);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ct-reach__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(var(--sc-cyan-rgb), 0.12) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.ct-reach__card:hover::after {
    transform: translateX(120%);
}

.ct-reach__card--wide {
    grid-column: 1 / -1;
}

.ct-reach__card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--sc-cyan-rgb), 0.4);
    box-shadow: 0 14px 30px rgba(var(--sc-shadow-rgb), 0.28);
}

.ct-reach__icon {
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(var(--sc-cyan-rgb), 0.14);
    color: var(--sc-cyan);
}

.ct-reach__icon--wa {
    background: rgba(52, 211, 153, 0.14);
    color: #34d399;
}

.ct-reach__copy {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.ct-reach__copy strong {
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: 0.86rem;
    color: var(--sc-text-bright);
}

.ct-reach__copy small {
    font-size: 0.74rem;
    color: var(--sc-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ct-reach__arrow {
    color: var(--sc-muted);
    font-size: 0.85rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.ct-reach__card:hover .ct-reach__arrow {
    color: var(--sc-cyan);
    transform: translate(2px, -2px);
}

.ct-reach__hours {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.18);
    background: rgba(var(--sc-bg-rgb), 0.4);
}

.ct-reach__dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--sc-green);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
    animation: ct-pulse 2.4s ease-out infinite;
    flex-shrink: 0;
}

.ct-reach__hours strong {
    display: block;
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: 0.84rem;
    color: var(--sc-text-bright);
}

.ct-reach__hours small {
    color: var(--sc-muted);
    font-size: 0.74rem;
}

.ct-reach__socials {
    display: grid;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.18);
    background: rgba(var(--sc-bg-rgb), 0.4);
}

.ct-reach__socials-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sc-muted);
}

/* ---------- Locator map ---------- */
.ct-map {
    padding: 1.5rem 0 3rem;
}

.ct-locator {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
    gap: 0;
    border-radius: 24px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.24);
    background: rgba(var(--sc-surface-rgb), 0.55);
    box-shadow: 0 24px 55px rgba(var(--sc-shadow-rgb), 0.38);
    overflow: hidden;
}

.ct-locator__stage {
    position: relative;
    min-height: 420px;
    background: #0a1028;
    transform-origin: center center;
    transition: transform 0.35s ease;
}

.ct-locator__svg {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.ct-locator__scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.07) 48%, transparent 52%);
    background-size: 100% 220%;
    animation: ct-scan 6s linear infinite;
    pointer-events: none;
    mix-blend-mode: screen;
}

.ct-locator__traffic {
    animation: ct-dash 22s linear infinite;
}

.ct-locator__route {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: ct-draw 5s ease-in-out infinite;
}

.ct-locator__pin-ring {
    animation: ct-pulse 3.2s ease-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.ct-locator__pin-ring--delay {
    animation-delay: 0.9s;
}

.ct-locator__pin {
    opacity: 0.72;
    transition: opacity 0.25s ease;
}

.ct-locator__pin.is-active {
    opacity: 1;
}

@keyframes ct-scan {
    from { background-position: 0 -40%; }
    to { background-position: 0 140%; }
}

@keyframes ct-draw {
    0% { stroke-dashoffset: 1; opacity: 0.35; }
    45% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0.5; }
}

@keyframes ct-dash {
    to { stroke-dashoffset: -160; }
}

.ct-locator__panel {
    display: grid;
    gap: 0.75rem;
    align-content: start;
    padding: 1.15rem;
    border-left: 1px solid rgba(var(--sc-border-rgb), 0.18);
    background:
        linear-gradient(180deg, rgba(var(--sc-chrome-rgb), 0.9), rgba(var(--sc-surface-rgb), 0.95));
}

.ct-locator__hud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.65rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.2);
    background: rgba(var(--sc-bg-rgb), 0.45);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sc-text-soft);
}

.ct-locator__hud em {
    margin-left: auto;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--sc-cyan-soft);
}

.ct-locator__hud-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--sc-green);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}

.ct-locator__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem;
    border-radius: 16px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.18);
    background: rgba(var(--sc-bg-rgb), 0.35);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ct-locator__card:hover {
    border-color: rgba(var(--sc-cyan-rgb), 0.35);
}

.ct-locator__card.is-active {
    border-color: rgba(var(--sc-cyan-rgb), 0.5);
    background: linear-gradient(120deg, rgba(var(--sc-cyan-rgb), 0.12), rgba(var(--sc-violet-rgb), 0.1));
    transform: translateX(2px);
}

.ct-locator__card-icon {
    width: 2.3rem;
    height: 2.3rem;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(var(--sc-cyan-rgb), 0.14);
    color: var(--sc-cyan);
}

.ct-locator__card-icon--green {
    background: rgba(52, 211, 153, 0.14);
    color: #34d399;
}

.ct-locator__card-icon--violet {
    background: rgba(var(--sc-violet-rgb), 0.16);
    color: #c4b5fd;
}

.ct-locator__card strong {
    display: block;
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: 0.88rem;
    color: var(--sc-text-bright);
}

.ct-locator__card p {
    margin: 0.15rem 0 0;
    font-size: 0.76rem;
    color: var(--sc-muted);
    line-height: 1.4;
}

.ct-locator__actions {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.35rem;
}

.ct-locator__actions .ct-btn {
    justify-content: center;
}

/* ---------- FAQ ---------- */
.ct-faq {
    padding: 1.5rem 0 3rem;
}

.ct-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.ct-faq__col {
    display: grid;
    gap: 0.75rem;
}

.ct-faq__item {
    border-radius: 14px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.22);
    background: linear-gradient(105deg, rgba(var(--sc-violet-rgb), 0.22), rgba(var(--sc-surface-rgb), 0.72) 45%, rgba(var(--sc-surface-rgb), 0.55));
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ct-faq__item:hover {
    border-color: rgba(var(--sc-cyan-rgb), 0.35);
    transform: translateY(-1px);
}

.ct-faq__item[open] {
    border-color: rgba(var(--sc-cyan-rgb), 0.45);
    box-shadow: 0 0 0 1px rgba(var(--sc-cyan-rgb), 0.12), 0 14px 30px rgba(var(--sc-shadow-rgb), 0.28);
}

.ct-faq__item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    cursor: pointer;
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sc-text-bright);
}

.ct-faq__item summary::-webkit-details-marker { display: none; }

.ct-faq__item summary i {
    transition: transform 0.25s ease;
    color: var(--sc-cyan);
}

.ct-faq__item[open] summary i {
    transform: rotate(180deg);
}

.ct-faq__answer {
    padding: 0 1rem 1rem;
    animation: ct-faq-open 0.35s ease;
}

.ct-faq__answer p {
    margin: 0;
    color: var(--sc-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.ct-faq__visual {
    position: relative;
    min-height: 220px;
    display: grid;
    place-items: center;
}

.ct-faq__orb {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--sc-cyan-rgb), 0.28), transparent 70%);
    filter: blur(8px);
    animation: ct-pulse 4s ease-out infinite;
}

.ct-faq__rings {
    position: absolute;
    width: 180px;
    height: 180px;
}

.ct-faq__rings span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(var(--sc-cyan-rgb), 0.28);
    animation: ct-spin 14s linear infinite;
}

.ct-faq__rings span:nth-child(2) {
    inset: 14%;
    border-color: rgba(var(--sc-violet-rgb), 0.3);
    animation-duration: 20s;
    animation-direction: reverse;
}

.ct-faq__rings span:nth-child(3) {
    inset: 28%;
    border-style: solid;
    border-color: rgba(var(--sc-cyan-rgb), 0.18);
    animation-duration: 10s;
}

.ct-faq__card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.25);
    background: rgba(var(--sc-surface-rgb), 0.72);
    box-shadow: 0 16px 36px rgba(var(--sc-shadow-rgb), 0.3);
    animation: ct-float 4.5s ease-in-out infinite;
}

@keyframes ct-faq-open {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
}

.ct-faq__card i {
    font-size: 1.6rem;
    color: var(--sc-cyan);
}

.ct-faq__card strong {
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    color: var(--sc-text-bright);
}

.ct-faq__card span {
    font-size: 0.78rem;
    color: var(--sc-muted);
}

/* ---------- CTA ---------- */
.ct-cta {
    padding: 1rem 0 4rem;
}

.ct-cta__band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: center;
    padding: 1.6rem 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(var(--sc-border-rgb), 0.28);
    background:
        linear-gradient(125deg, rgba(var(--sc-violet-rgb), 0.14), rgba(var(--sc-surface-rgb), 0.85) 45%, rgba(var(--sc-cyan-rgb), 0.1));
    box-shadow: 0 22px 48px rgba(var(--sc-shadow-rgb), 0.32);
    overflow: hidden;
}

.ct-cta__sheen {
    position: absolute;
    inset: 0;
    background: radial-gradient(480px circle at var(--ct-x, 30%) var(--ct-y, 40%), rgba(var(--sc-cyan-rgb), 0.16), transparent 50%);
    pointer-events: none;
    opacity: 0.7;
    transition: background 0.15s ease;
}

.ct-cta__copy,
.ct-cta__art {
    position: relative;
    z-index: 1;
}

.ct-cta__orbit {
    position: absolute;
    width: 180px;
    height: 180px;
    left: 28%;
    top: 10%;
    border-radius: 50%;
    border: 1px dashed rgba(var(--sc-cyan-rgb), 0.3);
    animation: ct-spin 16s linear infinite;
}

.ct-cta__sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ct-cta__sparks span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(var(--sc-cyan-rgb), 0.9);
    box-shadow: 0 0 10px rgba(var(--sc-cyan-rgb), 0.7);
    animation: ct-spark 3.6s ease-in-out infinite;
}

.ct-cta__sparks span:nth-child(1) { top: 18%; left: 22%; }
.ct-cta__sparks span:nth-child(2) { top: 28%; right: 18%; animation-delay: 0.7s; background: rgba(var(--sc-violet-rgb), 0.9); }
.ct-cta__sparks span:nth-child(3) { bottom: 24%; left: 30%; animation-delay: 1.3s; }
.ct-cta__sparks span:nth-child(4) { bottom: 18%; right: 28%; animation-delay: 2s; background: rgba(52, 211, 153, 0.9); }

@keyframes ct-spark {
    0%, 100% { transform: scale(0.6); opacity: 0.25; }
    50% { transform: scale(1.2); opacity: 1; }
}

.ct-cta__title {
    margin: 0 0 0.65rem;
    font-family: var(--sc-display, "Space Grotesk", sans-serif);
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    color: var(--sc-text-bright);
    letter-spacing: -0.03em;
}

.ct-cta__text {
    margin: 0 0 1.15rem;
    max-width: 34rem;
    color: var(--sc-muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.ct-cta__art {
    position: relative;
    min-height: 200px;
}

.ct-cta__skyline {
    position: absolute;
    inset: 20% 8% 28%;
    background: repeating-linear-gradient(90deg, rgba(var(--sc-border-rgb), 0.22) 0 12px, transparent 12px 24px);
    clip-path: polygon(0 60%, 12% 30%, 22% 50%, 34% 18%, 48% 42%, 60% 22%, 74% 48%, 86% 28%, 100% 55%, 100% 100%, 0 100%);
    opacity: 0.65;
}

.ct-cta__person {
    position: absolute;
    left: 34%;
    bottom: 18%;
    width: 28%;
    aspect-ratio: 0.75;
    border-radius: 40% 40% 18% 18%;
    background: linear-gradient(180deg, #fbbf24 0 38%, rgba(var(--sc-violet-rgb), 0.85) 39%);
}

.ct-cta__mug {
    position: absolute;
    right: 22%;
    bottom: 26%;
    width: 12%;
    aspect-ratio: 0.85;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(var(--sc-violet-rgb), 0.8), rgba(var(--sc-blue-rgb), 0.55));
}

.ct-cta__bubble {
    position: absolute;
    top: 18%;
    right: 18%;
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(var(--sc-cyan-rgb), 0.16);
    border: 1px solid rgba(var(--sc-cyan-rgb), 0.4);
    color: var(--sc-cyan);
    animation: ct-float 3s ease-in-out infinite;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .ct-hero__layout,
    .ct-connect__layout,
    .ct-cta__band,
    .ct-locator {
        grid-template-columns: 1fr;
    }

    .ct-locator__panel {
        border-left: 0;
        border-top: 1px solid rgba(var(--sc-border-rgb), 0.18);
    }

    .ct-faq__layout {
        grid-template-columns: 1fr;
    }

    .ct-faq__visual {
        order: -1;
        min-height: 160px;
    }

    .ct-hero__visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
        min-height: 280px;
    }

    .ct-hero__beam {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .ct-hero {
        padding-top: 6.5rem;
    }

    .ct-compose__grid {
        grid-template-columns: 1fr;
    }

    .ct-reach__grid {
        grid-template-columns: 1fr;
    }

    .ct-reach__card--wide {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ct-hero__bubble,
    .ct-hero__chip,
    .ct-hero__pulse,
    .ct-hero__mug::after,
    .ct-hero__orb,
    .ct-hero__grid,
    .ct-hero__beam,
    .ct-hero__particles span,
    .ct-hero__scan,
    .ct-hero__orbit,
    .ct-hero__screen,
    .ct-hero__typing i,
    .ct-hero__signal span,
    .ct-hero__skyline,
    .ct-hero__agent,
    .ct-hero__line--accent,
    .ct-btn--glow,
    .ct-btn--glow::after,
    .ct-live-dot,
    .ct-compose,
    .ct-compose__glow,
    .ct-compose__badge,
    .ct-compose__badge i,
    .ct-reach__hq::before,
    .ct-reach__dot,
    .ct-faq__orb,
    .ct-faq__rings span,
    .ct-faq__card,
    .ct-cta__orbit,
    .ct-cta__sparks span,
    .ct-cta__bubble {
        animation: none !important;
    }

    [data-ct-reveal],
    [data-ct-stagger] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
