/* GhostedWorks — Dentsu-inspired modern design system */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --black: #0a0a0a;
    --dark: #141414;
    --gray-900: #1a1a1a;
    --gray-700: #444;
    --gray-500: #777;
    --gray-300: #ccc;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --accent: #72FF13;
    --accent-hover: #5CD400;
    --accent-glow: rgba(114, 255, 19, 0.25);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1280px;
    --header-height: 72px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Header ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-content {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: opacity var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.logo span {
    color: var(--accent);
}

/* Desktop nav */
.nav-desktop {
    display: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-desktop a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.nav-desktop a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-desktop a.active {
    color: var(--black);
    background: var(--accent);
}

.nav-cta {
    margin-left: 0.5rem;
    background: var(--accent) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
}

/* Mobile toggle */
.sidebar-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.sidebar-toggle:hover {
    transform: scale(1.1);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--black);
    padding: 2rem;
    transition: right var(--transition);
    z-index: 1002;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 3rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    transition: all var(--transition);
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.nav-links a.active {
    background: var(--accent);
    color: var(--black);
}

.nav-links-cta {
    margin-top: 1rem;
    background: var(--accent) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
    text-align: center;
}

.nav-links-cta:hover {
    background: var(--accent-hover) !important;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 1001;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 900px) {
    .nav-desktop { display: flex; }
    .sidebar-toggle { display: none; }
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 4rem) 2rem 4rem;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(114, 255, 19, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(114, 255, 19, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-bottom: 2rem;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font);
}

.hero-scroll:hover {
    color: var(--accent);
}

.hero-scroll svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
}

/* ── Sections ── */
.section {
    padding: 6rem 2rem;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-gray {
    background: var(--gray-100);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-dark .section-label {
    color: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 720px;
}

.section-dark .section-text {
    color: rgba(255, 255, 255, 0.65);
}

/* ── About grid ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Quote block ── */
.quote-block {
    border-left: 3px solid var(--accent);
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 3rem 0;
}

.quote-block p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    line-height: 1.6;
    color: var(--black);
    font-style: italic;
}

.section-dark .quote-block p {
    color: rgba(255, 255, 255, 0.85);
}

/* ── Work showcase ── */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.work-card {
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.work-card-visual {
    height: 220px;
    background: linear-gradient(135deg, #1e3a2f 0%, #0a0a0a 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.work-card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(114, 255, 19, 0.12) 0%, transparent 60%);
}

.work-card-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1rem;
}

.work-card-body {
    padding: 1.75rem;
}

.work-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    background: rgba(114, 255, 19, 0.12);
    color: var(--accent);
}

.work-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.work-card-body p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition);
}

.work-link:hover {
    gap: 0.75rem;
}

.work-points {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.work-points li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
}

.work-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.work-card-visual.vrt {
    background: linear-gradient(135deg, #1a2a4a 0%, #0a0a0a 60%);
}

.work-card-visual.vrt::after {
    background: radial-gradient(circle at 70% 30%, rgba(100, 149, 237, 0.15) 0%, transparent 60%);
}

/* ── Services ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(114, 255, 19, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ── CEO section ── */
.ceo-section {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

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

.ceo-photo {
    width: 280px;
    height: 340px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(114, 255, 19, 0.3);
}

@media (max-width: 768px) {
    .ceo-photo {
        width: 220px;
        height: 280px;
        margin: 0 auto;
    }
}

.ceo-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.ceo-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.ceo-info p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ── Team page ── */
.page-hero {
    padding: calc(var(--header-height) + 4rem) 2rem 3rem;
    background: var(--black);
    color: var(--white);
}

.page-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    margin: 0 auto;
    transition: transform var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.team-info .role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
}

.story-section {
    max-width: 760px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.story-section h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.story-section p {
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* ── CTA banner ── */
.cta-banner {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--black);
    color: var(--white);
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

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

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--gray-100);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--white);
}

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

.contact-details {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-details h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-item-icon {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.contact-details a:hover {
    color: var(--accent);
}

/* ── Contact ghost digital FX ── */
.contact-hero {
    position: relative;
    overflow: hidden;
    min-height: 340px;
}

.contact-hero-inner {
    position: relative;
    z-index: 3;
}

.ghost-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.55;
}

.ghost-scanlines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(114, 255, 19, 0.03) 2px,
        rgba(114, 255, 19, 0.03) 4px
    );
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    from { background-position: 0 0; }
    to { background-position: 0 100px; }
}

.ghost-floaters {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.ghost-entity {
    position: absolute;
    opacity: 0.12;
    filter: drop-shadow(0 0 20px rgba(114, 255, 19, 0.3));
}

.ghost-body {
    width: 60px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50% 50% 0 0;
}

.ghost-eyes {
    position: absolute;
    top: 22px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 14px;
}

.ghost-eyes span {
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
    animation: ghostBlink 4s infinite;
}

.ghost-tail {
    width: 60px;
    height: 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 50% 50%;
    margin-top: -2px;
}

.ghost-entity-1 {
    top: 20%;
    right: 12%;
    animation: ghostFloat 6s ease-in-out infinite;
}

.ghost-entity-2 {
    top: 55%;
    right: 28%;
    transform: scale(0.7);
    animation: ghostFloat 8s ease-in-out infinite 1s;
}

.ghost-entity-3 {
    top: 30%;
    right: 45%;
    transform: scale(0.5);
    opacity: 0.08;
    animation: ghostFloat 7s ease-in-out infinite 2s;
}

@keyframes ghostFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(3deg); }
}

.ghost-entity-2 { animation-name: ghostFloat2; }
.ghost-entity-3 { animation-name: ghostFloat3; }

@keyframes ghostFloat2 {
    0%, 100% { transform: scale(0.7) translateY(0); }
    50% { transform: scale(0.7) translateY(-14px); }
}

@keyframes ghostFloat3 {
    0%, 100% { transform: scale(0.5) translateY(0); }
    50% { transform: scale(0.5) translateY(-10px); }
}

@keyframes ghostBlink {
    0%, 45%, 55%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.1); }
}

.ghost-glitch {
    position: relative;
}

.ghost-glitch::before,
.ghost-glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.ghost-glitch::before {
    color: var(--accent);
    animation: glitch1 4s infinite linear alternate-reverse;
    opacity: 0.7;
}

.ghost-glitch::after {
    color: rgba(255, 255, 255, 0.5);
    animation: glitch2 3s infinite linear alternate-reverse;
}

@keyframes glitch1 {
    0%, 90%, 100% { clip-path: inset(0 0 95% 0); transform: translate(0); }
    92% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 1px); }
    94% { clip-path: inset(50% 0 30% 0); transform: translate(3px, -1px); }
}

@keyframes glitch2 {
    0%, 88%, 100% { clip-path: inset(95% 0 0 0); transform: translate(0); }
    90% { clip-path: inset(10% 0 70% 0); transform: translate(2px, 0); }
    93% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 1px); }
}

.contact-page-wrap {
    position: relative;
    background: var(--gray-100);
}

.contact-page-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(114, 255, 19, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(114, 255, 19, 0.04) 0%, transparent 35%);
    pointer-events: none;
}

.contact-form,
.contact-details {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px);
}

.contact-form {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.contact-details {
    border: 1px solid rgba(114, 255, 19, 0.15);
    box-shadow: 0 8px 40px rgba(114, 255, 19, 0.08);
}

.contact-digital-badge {
    margin-top: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(114, 255, 19, 0.08);
    border: 1px solid rgba(114, 255, 19, 0.2);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: monospace;
    letter-spacing: 0.04em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 8px var(--accent);
}

/* ── Blog ── */
.blog-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.blog-tabs button {
    padding: 0.6rem 1.25rem;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.blog-tabs button.active,
.blog-tabs button:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.blog-list { display: none; }
.blog-list.active { display: grid; gap: 1rem; }

.blog-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition);
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.blog-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* ── MarketerOne page ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ── Privacy ── */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
}

.legal-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ── Footer ── */
footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.footer-brand span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 1rem;
}

/* ── Floating contact ── */
.floating-contact-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    background: var(--accent);
    color: var(--black);
    border: none;
    border-radius: 100px;
    padding: 0.85rem 1.5rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px var(--accent-glow);
    transition: all var(--transition);
}

.floating-contact-btn:hover {
    transform: translateY(-3px);
    background: var(--accent-hover);
    box-shadow: 0 12px 40px var(--accent-glow);
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.15s; }
.fade-up-delay-2 { animation-delay: 0.3s; }
.fade-up-delay-3 { animation-delay: 0.45s; }

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

/* ── Phase tabs (MarketerOne) ── */
.phase-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.phase-tab {
    padding: 0.65rem 1.5rem;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.phase-tab.active,
.phase-tab:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.phase-content { display: none; }
.phase-content.active { display: block; }

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(114, 255, 19, 0.12);
    border: 1px solid rgba(114, 255, 19, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}

.launch-badge:hover {
    background: rgba(114, 255, 19, 0.2);
}

.launch-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.legal-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ── Creative Works gallery ── */
.gallery-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.gallery-tabs button {
    padding: 0.65rem 1.35rem;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-tabs button.active,
.gallery-tabs button:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

.gallery-category {
    margin-bottom: 3rem;
}

.gallery-category h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.html-ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.html-ad-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
}

.html-ad-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.html-ad-preview {
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 280px;
}

.html-ad-preview iframe {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    background: var(--white);
}

.html-ad-info {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.html-ad-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.html-ad-info span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
}

.static-ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.static-ad-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.static-ad-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.static-ad-item img {
    width: 100%;
    height: auto;
    display: block;
}

.static-ad-item figcaption {
    padding: 0.65rem 0.85rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.static-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.static-filter button {
    padding: 0.45rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.static-filter button.active,
.static-filter button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.upcoming-card {
    background: var(--black);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
}

.upcoming-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.upcoming-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.upcoming-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
}

.upcoming-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.35rem 0.85rem;
    background: rgba(114, 255, 19, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .section { padding: 4rem 1.25rem; }
    .header-content { padding: 0 1.25rem; }
    .hero { padding: calc(var(--header-height) + 3rem) 1.25rem 3rem; }
}
