/* ==========================================================================
   CodeLipi — codelipi.in
   Visual identity: deep "ink" night surfaces, an aurora gradient
   (violet → rose → saffron), Sora display type and floating Indic "lipi"
   glyphs. Deliberately unlike the client sites built on CodeLipi.
   ========================================================================== */

:root {
    --ink: #0b0c24;
    --ink-2: #13153a;
    --ink-3: #1c1f52;
    --violet: #7b6cff;
    --violet-deep: #5a48f5;
    --rose: #ff4d8d;
    --saffron: #ff9a3d;
    --mint: #2ee6b8;

    --grad: linear-gradient(115deg, #8a7bff 0%, #ff4d8d 50%, #ffb03d 100%);
    --grad-soft: linear-gradient(115deg, rgba(138,123,255,.16), rgba(255,77,141,.12) 50%, rgba(255,176,61,.12));

    --bg: #fbfaff;
    --bg-alt: #f3f1fc;
    --card: #ffffff;
    --text: #15162e;
    --muted: #5b5e7a;
    --line: #e6e3f4;

    --on-dark: #eceaff;
    --on-dark-muted: #a9a8d0;
    --glass: rgba(255,255,255,.06);
    --glass-line: rgba(255,255,255,.12);

    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 1px 2px rgba(20,18,60,.04), 0 12px 32px -12px rgba(40,30,120,.18);
    --shadow-lg: 0 30px 80px -24px rgba(40,24,140,.45);

    /* Shared names admin.css (the inline-editing chrome) reads. */
    --background: var(--bg);
    --surface: #ffffff;
    --border: var(--line);
    --primary: var(--violet-deep);
    --primary-dark: #4535d6;
    --secondary: var(--rose);
    --transition: 0.2s ease;

    --font-display: "Sora", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --header-h: 76px;
}

/* ---------- base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 .5em;
    color: inherit;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

/* **bold** in any heading = the animated aurora gradient */
h1 strong,
h2 strong {
    font-weight: inherit;
    background: var(--grad);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: aurora-text 8s ease-in-out infinite;
}

@keyframes aurora-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }
.narrow { width: min(820px, 100% - 40px); }

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

.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 200;
    background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 10px;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 6px; }

::selection { background: rgba(123,108,255,.25); }

/* ---------- buttons ---------- */

.btn {
    --pad: 12px 22px;
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    padding: var(--pad);
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .98rem;
    line-height: 1.2;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    text-decoration: none !important;
    white-space: nowrap;
}
.btn i { font-size: .85em; transition: transform .25s ease; }
.btn:hover i.fa-arrow-right { transform: translateX(3px); }
.btn-sm { --pad: 9px 18px; font-size: .9rem; }
.btn-lg { --pad: 15px 28px; font-size: 1.04rem; }
.btn-block { width: 100%; }
.btn[hidden] { display: none; }

.btn-glow {
    color: #fff;
    background: var(--grad);
    background-size: 160% auto;
    box-shadow: 0 10px 30px -8px rgba(255,77,141,.55), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-glow:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -8px rgba(255,77,141,.7), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-primary { color: #fff; background: var(--ink); }
.btn-primary:hover { background: var(--violet-deep); transform: translateY(-2px); }

.btn-ghost {
    color: var(--on-dark);
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }

.btn-ghost-dark { color: var(--text); border-color: var(--line); background: #fff; }
.btn-ghost-dark:hover { border-color: var(--violet); color: var(--violet-deep); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,.4); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

.text-link {
    display: inline-flex; align-items: center; gap: .45em;
    font-family: var(--font-display); font-weight: 600; font-size: .95rem;
    color: var(--violet-deep);
}
.text-link[hidden] { display: none; }
.text-link i { font-size: .75em; }

/* ---------- small labels ---------- */

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--violet-deep);
}
.eyebrow::before {
    content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad);
}
.dark .eyebrow, .eyebrow--light { color: #c9c2ff; }

.pill {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 0 0 22px;
    padding: 7px 16px 7px 12px;
    border-radius: 999px;
    font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: #dcd7ff;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}
.pill-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--mint);
    box-shadow: 0 0 0 0 rgba(46,230,184,.7); animation: ping 2s infinite;
}
@keyframes ping {
    0% { box-shadow: 0 0 0 0 rgba(46,230,184,.7); }
    70% { box-shadow: 0 0 0 10px rgba(46,230,184,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,230,184,0); }
}

.tag {
    display: inline-block; margin: 0 0 10px;
    padding: 4px 12px; border-radius: 999px;
    font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--violet-deep); background: rgba(123,108,255,.1);
}

/* ---------- dark surfaces & background decor ---------- */

.dark {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 80% -10%, #262a78 0%, transparent 60%), var(--ink);
    color: var(--on-dark);
}
.dark p { color: var(--on-dark-muted); }
.dark h1, .dark h2, .dark h3 { color: #fff; }

.bg-decor { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }

.blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
    animation: drift 18s ease-in-out infinite alternate;
}
.blob-1 { width: 520px; height: 520px; background: #6a55ff; top: -160px; left: -120px; }
.blob-2 { width: 460px; height: 460px; background: #ff3d86; bottom: -200px; right: -80px; animation-delay: -6s; opacity: .4; }
.blob-3 { width: 340px; height: 340px; background: #ff9a3d; top: 30%; left: 55%; animation-delay: -12s; opacity: .22; }

@keyframes drift {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(60px,40px) scale(1.12); }
    100% { transform: translate(-40px,20px) scale(.95); }
}

.grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
}

.glyph {
    position: absolute;
    font-family: "Noto Sans Telugu", "Noto Sans Devanagari", var(--font-display);
    font-weight: 600;
    color: rgba(255,255,255,.07);
    animation: float 12s ease-in-out infinite;
    user-select: none;
}
.glyph-1 { font-size: 110px; top: 16%; left: 4%; }
.glyph-2 { font-size: 86px; top: 64%; left: 12%; animation-delay: -3s; font-family: "Noto Sans Devanagari", sans-serif; }
.glyph-3 { font-size: 54px; top: 12%; right: 38%; animation-delay: -6s; font-family: var(--font-display); }
.glyph-4 { font-size: 96px; bottom: 6%; right: 6%; animation-delay: -2s; }
.glyph-5 { font-size: 58px; top: 44%; right: 3%; animation-delay: -8s; font-family: var(--font-display); }
.glyph-6 { font-size: 72px; top: 8%; right: 12%; animation-delay: -5s; font-family: "Noto Sans Devanagari", sans-serif; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-22px) rotate(4deg); }
}

/* ---------- header ---------- */

.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: var(--header-h);
    color: #fff;
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    background: rgba(11,12,36,.72);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom-color: rgba(255,255,255,.08);
    box-shadow: 0 10px 30px -18px rgba(0,0,0,.6);
}
.site-header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }

.site-brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none !important; }
.site-logo { width: 40px; height: 40px; border-radius: 11px; box-shadow: 0 8px 24px -6px rgba(255,77,141,.6); transition: transform .4s ease; }
.site-brand:hover .site-logo { transform: rotate(-8deg) scale(1.05); }
.site-title { display: flex; flex-direction: column; line-height: 1.1; }
.site-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
.site-name b { font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-tagline { font-size: .7rem; color: var(--on-dark-muted); letter-spacing: .04em; }

.mega-nav { margin-left: auto; }
.mega-nav-list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.mega-nav-item { position: relative; }
.mega-nav-link {
    display: block; padding: 8px 14px; border-radius: 999px;
    font-family: var(--font-display); font-size: .93rem; font-weight: 500;
    color: rgba(255,255,255,.78);
    text-decoration: none !important;
    transition: color .2s ease, background .2s ease;
}
.mega-nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.mega-nav-link.active { color: #fff; background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }

.mega-nav-dropdown {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
    padding: 8px; border-radius: 14px;
    background: rgba(19,21,58,.96); border: 1px solid var(--glass-line);
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: .2s ease;
}
.has-dropdown:hover .mega-nav-dropdown,
.has-dropdown:focus-within .mega-nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.mega-nav-dropdown a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--on-dark); font-size: .92rem; }
.mega-nav-dropdown a:hover { background: rgba(255,255,255,.08); text-decoration: none; }

.site-header-actions { display: flex; align-items: center; gap: 10px; }
.mega-nav-toggle {
    display: none; width: 44px; height: 44px; border-radius: 12px;
    color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    font-size: 1.1rem; cursor: pointer;
}

@media (max-width: 960px) {
    .mega-nav-toggle { display: inline-grid; place-items: center; }
    .mega-nav {
        position: fixed; top: calc(var(--header-h) - 6px); left: 12px; right: 12px;
        padding: 12px; border-radius: 18px;
        background: rgba(15,16,46,.97); border: 1px solid var(--glass-line);
        box-shadow: var(--shadow-lg);
        opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98);
        transition: .25s ease;
    }
    .mega-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .mega-nav-list { flex-direction: column; }
    .mega-nav-link { padding: 12px 16px; font-size: 1.02rem; border-radius: 12px; }
    .mega-nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: 0; padding: 0 0 0 12px; }
}
@media (max-width: 520px) {
    .header-cta { display: none; }
    .site-tagline { display: none; }
}

/* ---------- home hero ---------- */

.hero { padding: calc(var(--header-h) + 64px) 0 110px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 22px; font-size: clamp(2.5rem, 5.4vw, 4.3rem); }
@media (min-width: 1180px) { .hero h1 strong { white-space: nowrap; } }
.hero-lede { font-size: 1.2rem; max-width: 34em; color: #c3c1e6 !important; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-ticks { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 30px 0 0; }
.hero-ticks li { display: flex; align-items: center; gap: 8px; font-size: .92rem; color: #d7d5f5; }
.hero-ticks i { color: var(--mint); }

.hero-visual { perspective: 1400px; }

.devices { position: relative; padding: 20px 30px 60px 0; transform-style: preserve-3d; transition: transform .3s ease-out; }

.laptop { position: relative; transform: rotateY(-12deg) rotateX(6deg); transform-style: preserve-3d; animation: hover-tilt 9s ease-in-out infinite; }
@keyframes hover-tilt {
    0%, 100% { transform: rotateY(-12deg) rotateX(6deg) translateY(0); }
    50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-10px); }
}
.laptop-screen {
    border-radius: 16px 16px 6px 6px;
    padding: 10px;
    background: linear-gradient(160deg, #2a2d66, #16183f);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,.4), 0 0 80px -20px rgba(123,108,255,.7);
}
.browser-bar {
    display: flex; align-items: center; gap: 6px; padding: 4px 6px 10px;
}
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; }
.browser-bar i:nth-child(2) { background: #febc2e; }
.browser-bar i:nth-child(3) { background: #28c840; }
.browser-bar span {
    margin-left: 10px; flex: 1; max-width: 220px; padding: 3px 12px; border-radius: 6px;
    font-size: .68rem; color: #b8b6e0; background: rgba(255,255,255,.07);
}
.laptop-view { position: relative; aspect-ratio: 16 / 10; border-radius: 8px; overflow: hidden; background: #fff; }
.laptop-view img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.laptop-base {
    height: 16px; margin: 0 -7%;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(180deg, #c9c8e4, #8d8bb5);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,.6);
}

/* drawn website wireframe (laptop, phone) */
.wire { position: absolute; inset: 0; padding: 5% 6%; background: linear-gradient(180deg, #faf9ff, #f1eeff); display: flex; flex-direction: column; gap: 7%; }
.wire-nav { display: flex; align-items: center; gap: 6%; }
.wire-nav b { width: 16%; height: 10px; border-radius: 5px; background: var(--grad); }
.wire-nav span { width: 9%; height: 6px; border-radius: 3px; background: #d7d3ef; }
.wire-nav em { margin-left: auto; width: 14%; height: 14px; border-radius: 7px; background: var(--ink); }
.wire-hero { display: flex; flex-direction: column; gap: 9px; }
.wire-h1 { width: 70%; height: 16px; border-radius: 6px; background: var(--ink); animation: shimmer 3s ease-in-out infinite; }
.wire-h2 { width: 50%; height: 8px; border-radius: 4px; background: #cfcbe9; }
.wire-btns { display: flex; gap: 8px; margin-top: 4px; }
.wire-btns span { width: 22%; height: 16px; border-radius: 8px; background: var(--grad); }
.wire-btns span + span { background: transparent; border: 2px solid #cfcbe9; }
.wire-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5%; flex: 1; max-height: 34%; }
.wire-cards span { border-radius: 8px; background: #fff; box-shadow: 0 6px 16px -8px rgba(60,40,160,.35); position: relative; overflow: hidden; }
.wire-cards span::before { content: ""; position: absolute; inset: 0 0 55% 0; background: var(--grad-soft); }
.wire-rows { display: grid; gap: 6px; }
.wire-rows span { height: 6px; border-radius: 3px; background: #dcd8f1; }
.wire-rows span + span { width: 70%; }
@keyframes shimmer { 0%, 100% { opacity: 1; } 50% { opacity: .7; } }

.phone {
    position: absolute; right: 0; bottom: 0;
    width: 30%; aspect-ratio: 9 / 18.5;
    border-radius: 26px; padding: 8px;
    background: linear-gradient(160deg, #2c2f6d, #121436);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: var(--shadow-lg), 0 0 60px -20px rgba(255,77,141,.6);
    transform: translateZ(60px);
    animation: bob 7s ease-in-out infinite;
}
.phone .wire { position: absolute; inset: 8px; border-radius: 19px; overflow: hidden; padding: 22% 10% 10%; gap: 6%; }
.phone .wire-cards { grid-template-columns: 1fr; max-height: none; }
.phone .wire-h1 { width: 90%; }
.phone .wire-btns span { width: 60%; }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 34%; height: 12px; border-radius: 8px; background: #121436; z-index: 2; }
@keyframes bob { 0%, 100% { transform: translateY(0) translateZ(60px); } 50% { transform: translateY(-14px) translateZ(60px); } }

.toast {
    position: absolute; display: flex; align-items: center; gap: 12px;
    padding: 12px 16px 12px 12px; border-radius: 16px;
    background: rgba(255,255,255,.95); color: var(--text);
    box-shadow: 0 20px 50px -14px rgba(0,0,0,.55);
    font-size: .85rem; line-height: 1.3;
    transform: translateZ(90px);
}
.toast b { display: block; font-family: var(--font-display); font-size: .88rem; }
.toast small { color: var(--muted); }
.toast-icon { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #2ee6b8, #14a884); }
.toast-icon--alt { background: var(--grad); }
.toast--deploy { left: -26px; bottom: 26%; animation: toast-in 6s ease-in-out infinite; }
.toast--offline { right: 18%; top: -8px; animation: toast-in 6s ease-in-out infinite; animation-delay: -3s; }
@keyframes toast-in {
    0%, 100% { transform: translateY(0) translateZ(90px); }
    50% { transform: translateY(-10px) translateZ(90px); }
}

@media (max-width: 960px) {
    .hero { padding: calc(var(--header-h) + 36px) 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }
    .toast--deploy { left: 0; }
}
@media (max-width: 520px) {
    .hero-lede { font-size: 1.06rem; }
    .toast { font-size: .75rem; padding: 8px 12px 8px 8px; }
    .toast-icon { width: 28px; height: 28px; }
    .toast--offline { right: 30%; }
    .devices { padding-right: 16px; }
}

/* ---------- marquee ---------- */

.marquee { background: var(--ink); color: var(--on-dark-muted); padding: 18px 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.marquee-inner { display: flex; align-items: center; gap: 28px; }
.marquee-label { margin: 0; flex: none; font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; }
.marquee-window { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 44px; list-style: none; margin: 0; padding: 0; animation: marquee 38s linear infinite; }
.marquee-window:hover .marquee-track { animation-play-state: paused; }
.marquee-track li { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-family: var(--font-display); font-weight: 500; }
.marquee-track i { color: var(--saffron); }
@keyframes marquee { to { transform: translateX(-50%); } }
body.wp-edit-mode .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
body.wp-edit-mode .marquee-clone { display: none; }

/* ---------- stats ---------- */

.stats-band { position: relative; margin-top: -1px; padding: 0 0 20px; background: linear-gradient(var(--ink) 50%, var(--bg) 50%); }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-radius: 24px; overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.stats-grid::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); }
.stat { padding: 34px 26px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-value {
    font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; line-height: 1;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 10px;
}
.stat-label { color: var(--muted); font-size: .95rem; }
@media (max-width: 760px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(3) { border-left: 0; }
    .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- sections ---------- */

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 48px 0; }
.band:nth-of-type(odd) { background: var(--bg-alt); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.section-head--row > div { max-width: 680px; }
.section-lede { font-size: 1.12rem; color: var(--muted); }
.dark .section-lede { color: var(--on-dark-muted); }
.section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.section-head--row .section-actions { margin-top: 0; }

@media (max-width: 760px) {
    .section { padding: 76px 0; }
    .section-head { margin-bottom: 36px; }
}

/* ---------- benefits ---------- */

.benefits { counter-reset: benefit; }
.benefit-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.benefit-card { grid-column: span 2; }
.benefit-card:nth-child(4):nth-last-child(2),
.benefit-card:nth-child(5):last-child { grid-column: span 3; }

.benefit-card {
    counter-increment: benefit;
    position: relative; overflow: hidden; isolation: isolate;
    padding: 34px 30px 32px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: transform .4s ease, box-shadow .4s ease;
}
.benefit-card::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
    background: var(--grad); transform: scaleX(0); transform-origin: left;
    transition: transform .5s ease;
}
.benefit-card::after {
    content: ""; position: absolute; z-index: -1; width: 220px; height: 220px; right: -90px; bottom: -110px;
    border-radius: 50%; background: var(--grad-soft); transition: transform .6s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: 0 34px 70px -34px rgba(60,40,160,.5); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover::after { transform: scale(1.5); }

.benefit-num::before {
    content: "0" counter(benefit);
    position: absolute; top: 18px; right: 26px;
    font-family: var(--font-display); font-size: 3.6rem; font-weight: 800; line-height: 1;
    color: transparent; -webkit-text-stroke: 1.5px rgba(123,108,255,.28);
}
.benefit-icon {
    position: relative; display: grid; place-items: center;
    width: 60px; height: 60px; margin-bottom: 22px;
    border-radius: 50%; font-size: 1.35rem; color: #fff;
    background: linear-gradient(135deg, #8a7bff, #5a48f5);
    box-shadow: 0 14px 28px -12px rgba(90,72,245,.8);
}
.benefit-icon::after {
    content: ""; position: absolute; inset: -7px; border-radius: 50%;
    border: 2px dashed rgba(123,108,255,.35);
    animation: spin 18s linear infinite;
}
.benefit-card:nth-child(5n+2) .benefit-icon { background: linear-gradient(135deg, #ff6fa3, #ff3d7f); box-shadow: 0 14px 28px -12px rgba(255,61,127,.8); }
.benefit-card:nth-child(5n+2) .benefit-icon::after { border-color: rgba(255,61,127,.35); }
.benefit-card:nth-child(5n+3) .benefit-icon { background: linear-gradient(135deg, #3ef0c4, #14b38c); box-shadow: 0 14px 28px -12px rgba(20,179,140,.8); }
.benefit-card:nth-child(5n+3) .benefit-icon::after { border-color: rgba(20,179,140,.35); }
.benefit-card:nth-child(5n+4) .benefit-icon { background: linear-gradient(135deg, #ffb35c, #ff8a1f); box-shadow: 0 14px 28px -12px rgba(255,138,31,.8); }
.benefit-card:nth-child(5n+4) .benefit-icon::after { border-color: rgba(255,138,31,.35); }
.benefit-card:nth-child(5n+5) .benefit-icon { background: conic-gradient(from 200deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4); box-shadow: 0 14px 28px -12px rgba(66,133,244,.8); }
.benefit-card:nth-child(5n+5) .benefit-icon::after { border-color: rgba(66,133,244,.35); }

.benefit-card h3 { font-size: 1.28rem; margin-bottom: 10px; max-width: 80%; }
.benefit-card p { margin: 0; color: var(--muted); }
.benefits-cta { display: flex; justify-content: center; margin-top: 40px; }
.benefits-cta .section-actions { margin-top: 0; }

@media (max-width: 960px) {
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-card,
    .benefit-card:nth-child(4):nth-last-child(2) { grid-column: auto; }
    .benefit-card:nth-child(5):last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-card:nth-child(5):last-child { grid-column: auto; }
}

/* ---------- feature cards (spotlight + gradient border) ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid--bento { grid-template-columns: repeat(4, 1fr); }
.feature-grid--bento .feature-card:nth-child(1),
.feature-grid--bento .feature-card:nth-child(9) { grid-column: span 2; }

.feature-card {
    --mx: 50%; --my: 0%;
    position: relative; isolation: isolate;
    padding: 30px 28px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(123,108,255,.14), transparent 45%);
    opacity: 0; transition: opacity .35s ease;
}
.feature-card::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
    background: radial-gradient(300px circle at var(--mx) var(--my), rgba(255,77,141,.9), rgba(123,108,255,.6) 40%, transparent 70%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .35s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(60,40,160,.4); border-color: transparent; }
.feature-card:hover::before,
.feature-card:hover::after { opacity: 1; }
.feature-card h3 { margin: 18px 0 8px; }
.feature-card p { margin: 0; color: var(--muted); font-size: .98rem; }

.feature-icon {
    width: 52px; height: 52px; border-radius: 15px;
    display: grid; place-items: center; font-size: 1.25rem; color: #fff;
    background: linear-gradient(135deg, #8a7bff, #5a48f5);
    box-shadow: 0 12px 24px -10px rgba(90,72,245,.7);
    transition: transform .4s cubic-bezier(.2,.9,.3,1.4);
}
.feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.08); }
.feature-card:nth-child(4n+2) .feature-icon { background: linear-gradient(135deg, #ff6fa3, #ff3d7f); box-shadow: 0 12px 24px -10px rgba(255,61,127,.7); }
.feature-card:nth-child(4n+3) .feature-icon { background: linear-gradient(135deg, #ffb35c, #ff8a1f); box-shadow: 0 12px 24px -10px rgba(255,138,31,.7); }
.feature-card:nth-child(4n+4) .feature-icon { background: linear-gradient(135deg, #3ef0c4, #14b38c); box-shadow: 0 12px 24px -10px rgba(20,179,140,.7); }

/* the last bento card is the dark "credentials" card */
.feature-grid--bento .feature-card:nth-child(10) {
    background: radial-gradient(400px 220px at 100% 0%, #3a2f9c, transparent 70%), var(--ink);
    border-color: transparent; color: #fff;
}
.feature-grid--bento .feature-card:nth-child(10) p { color: var(--on-dark-muted); }
.feature-grid--bento .feature-card:nth-child(10) .feature-icon { background: var(--grad); }
.feature-grid--bento .feature-card:nth-child(1) { background: linear-gradient(135deg, #fff 40%, #f1edff); }
.feature-grid--bento .feature-card:nth-child(1) h3 { font-size: 1.45rem; }

@media (max-width: 1024px) {
    .feature-grid--bento { grid-template-columns: repeat(2, 1fr); }
    .feature-grid--bento .feature-card:nth-child(9) { grid-column: auto; }
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .feature-grid, .feature-grid--bento { grid-template-columns: 1fr; }
    .feature-grid--bento .feature-card:nth-child(1) { grid-column: auto; }
}

/* ---------- publisher demo ---------- */

.demo-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.ticklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.ticklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.ticklist i {
    flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 8px;
    display: grid; place-items: center; font-size: .72rem; color: #fff; background: var(--grad);
}

.app {
    border-radius: 18px; overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
    transition: transform .5s ease;
    font-size: .88rem;
}
.app:hover { transform: perspective(1400px) rotateY(0) rotateX(0); }
.app-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; background: var(--ink); color: #b8b6e0; font-size: .74rem; }
.app-bar i { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.app-bar i:nth-child(2) { background: #febc2e; }
.app-bar i:nth-child(3) { background: #28c840; }
.app-bar span { margin-left: 10px; }
.app-body { display: grid; grid-template-columns: 150px 1fr; min-height: 320px; }
.app-side { display: flex; flex-direction: column; gap: 4px; padding: 16px 10px; background: #f6f4ff; border-right: 1px solid var(--line); }
.app-side b { font-family: var(--font-display); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 0 10px 6px; }
.app-side span { padding: 7px 10px; border-radius: 8px; color: var(--text); }
.app-side span.is-on { background: #fff; box-shadow: var(--shadow); color: var(--violet-deep); font-weight: 600; }
.app-main { position: relative; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.app-field label { display: block; font-size: .72rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; letter-spacing: .04em; text-transform: uppercase; }
.app-typing {
    display: flex; align-items: center;
    padding: 12px 14px; border-radius: 10px;
    border: 2px solid var(--violet); box-shadow: 0 0 0 4px rgba(123,108,255,.15);
    font-family: var(--font-display); font-weight: 600; font-size: 1rem; min-height: 50px;
}
.caret { display: inline-block; width: 2px; height: 1.2em; margin-left: 2px; background: var(--violet-deep); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.app-photo {
    height: 84px; border-radius: 10px; display: grid; place-items: center;
    color: #fff; font-size: 1.6rem;
    background: linear-gradient(120deg, #8a7bff, #ff4d8d 60%, #ffb03d);
    background-size: 200% 200%; animation: aurora-text 6s ease infinite;
}
.app-actions { display: flex; gap: 10px; margin-top: auto; }
.app-btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: .82rem; }
.app-btn--ghost { border: 1px solid var(--line); color: var(--text); }
.app-btn--deploy { color: #fff; background: var(--ink); }
.deploy-bar { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--grad); }
.app.is-deploying .deploy-bar { animation: deploy 1.6s ease-in-out forwards; }
@keyframes deploy { to { width: 100%; } }
.app-toast {
    position: absolute; right: 18px; bottom: 64px;
    display: flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 999px;
    background: #e8fbf5; color: #0e8d6c; font-weight: 600; font-size: .8rem;
    opacity: 0; transform: translateY(8px); transition: .4s ease;
}
.app.is-deployed .app-toast { opacity: 1; transform: none; }

@media (max-width: 960px) {
    .demo-grid { grid-template-columns: 1fr; gap: 44px; }
    .app { transform: none; }
}
@media (max-width: 520px) {
    .app-body { grid-template-columns: 1fr; }
    .app-side { flex-direction: row; overflow: hidden; border-right: 0; border-bottom: 1px solid var(--line); padding: 10px; }
    .app-side b { display: none; }
    .app-side span { white-space: nowrap; }
}

/* ---------- steps (dark) ---------- */

.steps-band { background: radial-gradient(900px 500px at 10% 0%, #2b2380 0%, transparent 60%), var(--ink); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; position: relative; }
.steps::before {
    content: ""; position: absolute; top: 58px; left: 8%; right: 8%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(138,123,255,.6), rgba(255,77,141,.6), rgba(255,176,61,.6), transparent);
}
.step {
    counter-increment: step;
    position: relative;
    padding: 28px 24px;
    border-radius: var(--radius);
    background: var(--glass);
    border: 1px solid var(--glass-line);
    backdrop-filter: blur(12px);
    transition: transform .35s ease, background .35s ease, border-color .35s ease;
}
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.24); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.step-num::before {
    content: "0" counter(step);
    font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; line-height: 1;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step-icon {
    width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
    background: rgba(255,255,255,.08); border: 1px solid var(--glass-line); color: #fff;
}
.step h3 { color: #fff; }
.step p { margin: 0; font-size: .96rem; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps::before { display: none; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- showcase ---------- */

.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.showcase-card {
    border-radius: 24px; overflow: hidden;
    background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
    transition: transform .4s ease, box-shadow .4s ease;
}
.showcase-card:hover { transform: translateY(-8px); box-shadow: 0 40px 80px -36px rgba(60,40,160,.5); }
.showcase-shot { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink-2); }
.showcase-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s ease; }
.showcase-card:hover .showcase-shot img { transform: scale(1.05); }

.shot-mock { position: absolute; inset: 0; padding: 22px 28px 0; background: var(--shot-bg, linear-gradient(135deg, #3b2fb8, #7b6cff)); }
.showcase-card:nth-child(4n+2) { --shot-bg: linear-gradient(135deg, #c2185b, #ff6f91); }
.showcase-card:nth-child(4n+3) { --shot-bg: linear-gradient(135deg, #e65c00, #ffb03d); }
.showcase-card:nth-child(4n+4) { --shot-bg: linear-gradient(135deg, #0b8f73, #2ee6b8); }
.shot-mock::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 10%, rgba(255,255,255,.35), transparent 40%);
}
.shot-bar { display: flex; gap: 6px; padding: 10px 12px; border-radius: 12px 12px 0 0; background: rgba(255,255,255,.95); }
.shot-bar i { width: 8px; height: 8px; border-radius: 50%; background: #ddd; }
.shot-body {
    height: 100%; padding: 22px 24px; background: #fff; display: flex; flex-direction: column; gap: 10px;
    transition: transform .6s ease;
}
.showcase-card:hover .shot-body { transform: translateY(-8px); }
.shot-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: var(--shot-bg, var(--grad)); margin-bottom: 4px; }
.shot-line { height: 8px; width: 55%; border-radius: 4px; background: #e4e1f3; }
.shot-line--lg { height: 16px; width: 78%; background: var(--ink); }
.shot-btn { width: 110px; height: 22px; border-radius: 11px; background: var(--shot-bg, var(--grad)); margin-top: 4px; }
.shot-body > * { flex: none; }
@media (max-width: 600px) {
    .shot-mock { padding: 16px 18px 0; }
    .shot-body { padding: 16px; gap: 8px; }
    .shot-tiles { display: none !important; }
}
.shot-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.shot-tiles i {
    height: 64px; border-radius: 10px; background: #fff;
    box-shadow: 0 8px 20px -10px rgba(40,30,120,.35);
    position: relative; overflow: hidden;
}
.shot-tiles i::before { content: ""; position: absolute; inset: 0 0 50% 0; background: var(--shot-bg, var(--grad)); opacity: .22; }
.shot-tiles i::after { content: ""; position: absolute; left: 10px; right: 30%; bottom: 12px; height: 6px; border-radius: 3px; background: #e4e1f3; }

.showcase-body { padding: 26px 28px 30px; }
.showcase-body h3 { font-size: 1.4rem; }
.showcase-body p { color: var(--muted); }
@media (max-width: 760px) { .showcase-grid { grid-template-columns: 1fr; } }

/* ---------- compare ---------- */

.compare-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.compare {
    border-radius: 22px; overflow: hidden;
    background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; }
.compare-row > span { padding: 16px 20px; }
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-row--head { font-family: var(--font-display); font-weight: 700; font-size: .9rem; background: #f7f5ff; }
.compare-row--head .compare-us { color: #fff; background: var(--grad); }
.compare-row > span:first-child { font-weight: 500; }
.compare-them, .compare-us { display: flex; align-items: center; gap: 10px; font-size: .94rem; }
.compare-them { color: var(--muted); }
.compare-them i { color: #c2a14a; }
.compare-them.is-no i { color: #e5484d; }
.compare-them.is-yes i { color: #14a884; }
.compare-row:not(.compare-row--head) .compare-us { background: rgba(123,108,255,.06); font-weight: 600; color: var(--text); height: 100%; }
.compare-us.is-yes i { width: 22px; height: 22px; flex: none; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: .68rem; background: linear-gradient(135deg, #2ee6b8, #14a884); }
@media (max-width: 960px) { .compare-layout { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 520px) {
    .compare-row > span { padding: 12px 12px; font-size: .86rem; }
    .compare-row { grid-template-columns: 1.2fr 1fr 1fr; }
}

/* ---------- split ---------- */

.split-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.split + .split .split-media { order: 2; }
.split-media { margin: 0; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); min-height: 320px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.prose { color: var(--muted); font-size: 1.06rem; white-space: pre-wrap; }
.prose strong { color: var(--text); }

.glyph-panel {
    position: relative; height: 100%; min-height: 380px;
    display: grid; place-items: center;
    background: radial-gradient(circle at 30% 20%, #3a2f9c, transparent 60%), radial-gradient(circle at 80% 90%, #7a1f59, transparent 55%), var(--ink);
    overflow: hidden;
}
.glyph-big {
    font-family: "Noto Sans Telugu", sans-serif; font-weight: 600;
    font-size: clamp(6rem, 13vw, 10rem); line-height: 1;
    background: var(--grad); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: aurora-text 8s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(255,77,141,.35));
}
.split-media .glyph-logo {
    position: relative; width: 132px; height: 132px; border-radius: 36px;
    box-shadow: 0 30px 60px -20px rgba(255,77,141,.7);
    animation: float 8s ease-in-out infinite;
}
.orbit { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,.18); animation: spin 40s linear infinite; }
.orbit-1 { width: 70%; aspect-ratio: 1; }
.orbit-2 { width: 100%; aspect-ratio: 1; animation-direction: reverse; animation-duration: 60s; border-style: solid; border-color: rgba(255,255,255,.07); }
.orbit-1::after { content: ""; position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 20px var(--saffron); }
.orbit-2::after { content: ""; position: absolute; bottom: 14%; right: 6%; width: 9px; height: 9px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 16px var(--mint); }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
    .split-grid { grid-template-columns: 1fr; gap: 40px; }
    .split + .split .split-media { order: 0; }
    .glyph-panel { min-height: 280px; }
}

/* ---------- checklist, icons, cards ---------- */

.aside-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.aside-layout .section-head { position: sticky; top: calc(var(--header-h) + 30px); }
@media (max-width: 900px) { .aside-layout { grid-template-columns: 1fr; gap: 12px; } .aside-layout .section-head { position: static; } }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 22px; border-radius: 16px;
    background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.check-icon { flex: none; width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: var(--grad); }
.checklist strong { display: block; font-family: var(--font-display); font-weight: 600; }
.checklist-note { display: block; color: var(--muted); font-size: .95rem; }

.icon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.icon-card {
    padding: 30px 26px; border-radius: var(--radius); text-align: left;
    background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
    transition: transform .35s ease, box-shadow .35s ease;
}
.icon-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(60,40,160,.45); }
.icon-card-icon {
    display: inline-grid; place-items: center; width: 54px; height: 54px; margin-bottom: 18px;
    border-radius: 16px; font-size: 1.35rem; color: var(--violet-deep); background: var(--grad-soft);
    border: 1px solid rgba(123,108,255,.18);
}
.icon-card:nth-child(3n+2) .icon-card-icon { color: #e0336f; }
.icon-card:nth-child(3n+3) .icon-card-icon { color: #e27400; }
.icon-card-meta { margin: -4px 0 8px; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--violet-deep); }
.icon-card p { margin: 0; color: var(--muted); font-size: .97rem; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.card { border-radius: var(--radius); overflow: hidden; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.card-media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card-body { padding: 24px; }
.card-body p { color: var(--muted); }

.notice { display: flex; gap: 18px; padding: 24px 26px; border-radius: 18px; background: var(--grad-soft); border: 1px solid rgba(123,108,255,.2); }
.notice-icon { font-size: 1.3rem; color: var(--violet-deep); }
.notice-title { font-size: 1.15rem; }

.content-block h2 { font-size: 1.6rem; }
.section--prose { padding: 40px 0; }
.section--prose:first-of-type { padding-top: 90px; }

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 12px; }
.faq {
    border-radius: 16px; background: var(--card); border: 1px solid var(--line);
    transition: box-shadow .3s ease, border-color .3s ease;
}
.faq[open] { border-color: rgba(123,108,255,.45); box-shadow: 0 18px 40px -24px rgba(90,72,245,.55); }
.faq summary {
    display: flex; justify-content: space-between; align-items: center; gap: 18px;
    padding: 20px 24px; cursor: pointer; list-style: none;
    font-family: var(--font-display); font-weight: 600; font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
    flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
    font-size: .8rem; color: var(--violet-deep); background: rgba(123,108,255,.1);
    transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq[open] summary i { transform: rotate(45deg); color: #fff; background: var(--grad); }
.faq-answer { padding: 0 24px 22px; color: var(--muted); white-space: pre-wrap; }

/* ---------- CTA banner ---------- */

.cta-banner {
    position: relative; overflow: hidden; isolation: isolate;
    display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
    padding: 56px 60px; border-radius: 32px; color: #fff;
    background: linear-gradient(115deg, #4b3be0 0%, #b3307a 55%, #e3781d 100%);
    background-size: 180% 180%;
    animation: aurora-text 12s ease-in-out infinite;
    box-shadow: 0 40px 80px -30px rgba(120,40,160,.6);
}
.cta-banner::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(90deg, transparent, #000);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000);
}
.cta-shine {
    position: absolute; top: 0; left: -40%; width: 30%; height: 100%; z-index: -1;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.22), transparent);
    transform: skewX(-20deg); animation: shine 6s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { left: -40%; } 100% { left: 130%; } }
.cta-copy { max-width: 620px; }
.cta-copy h2 { color: #fff; margin-bottom: 10px; }
.cta-copy h2 strong { background: none; color: #fff; -webkit-text-fill-color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.5); text-underline-offset: 6px; }
.cta-copy p { color: rgba(255,255,255,.85); margin: 0; }
.cta-banner .eyebrow::before { background: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 600px) { .cta-banner { padding: 40px 28px; border-radius: 24px; } }

/* ---------- enquiry ---------- */

.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 16px; color: var(--on-dark); }
.contact-list small { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-muted); }
.contact-list a { color: #fff; font-weight: 600; }
.contact-icon {
    flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
    background: rgba(255,255,255,.07); border: 1px solid var(--glass-line); color: #fff; font-size: 1.1rem;
}

.enquiry-form {
    display: grid; gap: 16px;
    padding: 34px; border-radius: 26px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--glass-line);
    backdrop-filter: blur(18px);
    box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
    position: relative;
}
.enquiry-form::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
    background: linear-gradient(135deg, rgba(138,123,255,.8), transparent 40%, transparent 60%, rgba(255,154,61,.7));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form label { display: grid; gap: 7px; font-size: .84rem; font-weight: 600; color: #d6d4f3; }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%; padding: 13px 15px; border-radius: 12px;
    font: inherit; font-size: .98rem; font-weight: 400; color: #fff;
    background: rgba(10,11,34,.55); border: 1px solid rgba(255,255,255,.14);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.enquiry-form select option { color: var(--text); }
.enquiry-form textarea { resize: vertical; }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: #8886b3; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
    outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(123,108,255,.25);
}
.form-hint, .form-note { margin: 0; text-align: center; font-size: .86rem; color: var(--on-dark-muted); }
.form-note { color: var(--mint) !important; }
@media (max-width: 900px) { .enquiry-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } .enquiry-form { padding: 24px 20px; } }

/* ---------- page hero (inner pages) ---------- */

.page-hero { padding: calc(var(--header-h) + 80px) 0 96px; }
.page-hero-copy { max-width: 820px; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); margin-bottom: 18px; }
.page-hero-lede { font-size: 1.18rem; max-width: 40em; }
.page-hero--center { text-align: center; }
.page-hero--center .page-hero-lede { margin-inline: auto; }
.page-hero--center .hero-actions { justify-content: center; }
.page-hero--full { min-height: 88vh; display: grid; place-items: center; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: .88rem; color: var(--on-dark-muted); }
.breadcrumb a { color: #fff; }
.breadcrumb i { font-size: .65rem; }

/* ---------- testimonials ---------- */

.testimonial-slider { position: relative; }
.testimonial-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 1fr); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial { scroll-snap-align: start; margin: 0; padding: 30px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--saffron); margin-bottom: 14px; }
.testimonial blockquote { margin: 0 0 18px; font-size: 1.04rem; }
.testimonial-name { display: block; font-family: var(--font-display); font-weight: 600; }
.testimonial-role { color: var(--muted); font-size: .9rem; }
.slider-controls { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.slider-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.slider-btn:hover { background: var(--ink); color: #fff; }

/* ---------- footer ---------- */

.site-footer { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); color: var(--on-dark-muted); padding: 90px 0 0; font-size: .95rem; }
.footer-glow {
    position: absolute; z-index: -1; left: 50%; top: -260px; transform: translateX(-50%);
    width: 900px; height: 420px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(123,108,255,.35), transparent);
}
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad); opacity: .6; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-column .footer-brand { color: #fff; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; text-decoration: none !important; }
.footer-brand img { border-radius: 11px; }
.footer-brand b { font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-about p { max-width: 360px; }
.footer-company strong { color: #fff; }
.footer-column h3 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-column ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-column a { color: var(--on-dark-muted); }
.footer-column a:hover { color: #fff; }
.footer-line { display: flex; align-items: center; gap: 12px; }
.footer-line i { color: var(--saffron); width: 16px; }
.footer-cta { margin-top: 10px; color: #fff !important; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.07); border: 1px solid var(--glass-line); transition: .25s ease; }
.footer-social a:hover { background: var(--grad); border-color: transparent; transform: translateY(-3px); text-decoration: none; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 28px; padding: 24px 0 30px; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--on-dark-muted); }
.footer-product { width: 100%; text-align: center; opacity: .6; font-size: .78rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.whatsapp-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 90;
    width: 58px; height: 58px; border-radius: 50%;
    display: grid; place-items: center; font-size: 1.7rem; color: #fff;
    background: #25d366; box-shadow: 0 14px 30px -8px rgba(37,211,102,.7);
    animation: ping-green 2.6s infinite;
}
.whatsapp-float:hover { text-decoration: none; transform: scale(1.06); }
@keyframes ping-green { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.empty-state { color: var(--muted); }

/* ---------- scroll reveal ---------- */

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- admin edit mode ---------- */

body.wp-edit-mode .reveal { opacity: 1 !important; transform: none !important; }
body.wp-edit-mode .site-header { position: absolute; }
body.wp-edit-mode .app,
body.wp-edit-mode .laptop,
body.wp-edit-mode .phone { animation: none; }

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    html { scroll-behavior: auto; }
    .js .reveal { opacity: 1; transform: none; }
    .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
    .marquee-clone { display: none; }
}
