/* ===========================================
   JOSHOSHOKE.COM FINAL — TOKENS
=========================================== */
:root {
  --bg-void: #0a0612;
  --bg-base: #120a1f;
  --bg-elevated: #1a0e2e;
  --bg-card: #170c28;
  --purple-signal: #8B7FE8;
  --purple-mid: #5a4fb8;
  --coral: #E8546B;
  --grid-line: #2a1d47;
  --text-white: #F8F6FF;
  --text-lavender: #C4BEEC;
  --text-muted: #7567a8;
  --text-dim: #4a3d70;
  --glass-bg: rgba(139, 127, 232, 0.06);
  --glass-border: rgba(139, 127, 232, 0.18);

  --font-serif: 'Fraunces', serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg-void); color: var(--text-white); font-family: var(--font-body); overflow-x: hidden; cursor: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; }
::selection { background: var(--coral); color: var(--bg-void); }
@media (max-width: 860px) { body { cursor: auto; } button { cursor: pointer; } }

/* NOISE + ANIMATED CROSS-HATCH GRID (v1 signature) */
.noise-overlay {
  position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
#grid-canvas { position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; }

/* CUSTOM CURSOR */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999; border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--coral); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid var(--purple-mid); transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease); }
.cursor-ring.hovering { width: 60px; height: 60px; border-color: var(--coral); }
@media (max-width: 860px) { .cursor-dot, .cursor-ring { display: none; } }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 0; transition: padding .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { padding: 13px 0; background: rgba(10,6,18,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid var(--glass-border); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-serif); font-style: italic; font-weight: 600; font-size: 20px; }
.nav-logo-dot { color: var(--coral); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; color: var(--text-lavender); transition: color .2s var(--ease); }
.nav-links a:not(.nav-cta):hover { color: var(--text-white); }
.nav-cta { background: var(--coral); color: var(--bg-void) !important; padding: 10px 20px; border-radius: 100px; font-weight: 600; font-size: 13.5px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(232,84,107,0.4); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--text-white); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; right: 0; width: 80%; max-width: 320px; height: 100vh; background: var(--bg-elevated); border-left: 1px solid var(--glass-border); z-index: 99; display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: 0 42px; transform: translateX(100%); transition: transform .4s var(--ease); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-serif); font-style: italic; font-size: 24px; font-weight: 500; color: var(--text-white); }
@media (max-width: 860px) { .nav-links { display: none; } .nav-toggle { display: flex; } }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* HERO */
.hero { position: relative; z-index: 3; min-height: 86vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 130px 28px 60px; text-align: center; }
.hero-inner { max-width: 880px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--text-lavender); margin-bottom: 26px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(232,84,107,.5); } 70% { box-shadow: 0 0 0 9px rgba(232,84,107,0); } 100% { box-shadow: 0 0 0 0 rgba(232,84,107,0); } }
.hero-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(36px, 6.4vw, 76px); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 24px; }
.hero-line-accent { font-style: italic; color: var(--coral); }
.hero-sub { font-size: clamp(15.5px, 1.9vw, 18px); line-height: 1.6; color: var(--text-lavender); max-width: 560px; margin: 0 auto 36px; }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px; border-radius: 100px; font-size: 14.5px; font-weight: 600; font-family: var(--font-display); transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease); }
.btn-primary { background: var(--coral); color: var(--bg-void); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(232,84,107,0.42); }
.btn-primary svg { transition: transform .25s var(--ease); }
.btn-primary:hover svg { transform: translateY(2px); }
.btn-ghost { border: 1px solid var(--glass-border); color: var(--text-white); background: var(--glass-bg); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--purple-signal); background: rgba(139,127,232,0.12); }
.btn-lg { padding: 18px 34px; font-size: 15.5px; }
.hero-trust { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-muted); }
.trust-sep { color: var(--purple-mid); }
.hero-scroll-cue { position: absolute; bottom: 36px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll-cue span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); }
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--coral), transparent); animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0% { opacity: 0; transform: translateY(-8px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(8px); } }
@media (max-width: 600px) { .hero { padding: 120px 20px 50px; min-height: 80vh; } .hero-scroll-cue { display: none; } }

/* MARQUEE */
.marquee { position: relative; z-index: 3; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: var(--bg-elevated); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; color: var(--text-muted); padding: 0 18px; }
.marquee-sep { color: var(--coral); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SHARED SECTION */
section { position: relative; z-index: 3; padding: 100px 32px; max-width: var(--container); margin: 0 auto; }
.section-head { margin-bottom: 56px; max-width: 640px; }
.section-head--split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: end; max-width: none; }
.section-eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; color: var(--coral); margin-bottom: 16px; }
.section-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px, 4.2vw, 44px); letter-spacing: -0.01em; line-height: 1.16; margin-bottom: 14px; }
.section-desc { color: var(--text-lavender); font-size: 15.5px; line-height: 1.62; }
.section-desc--right { text-align: right; }
@media (max-width: 860px) { section { padding: 70px 20px; } .section-head--split { grid-template-columns: 1fr; } .section-desc--right { text-align: left; } }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { position: relative; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 22px; padding: 32px 28px; backdrop-filter: blur(10px); display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.price-card:hover { transform: translateY(-6px); border-color: var(--purple-signal); }
.price-card--featured { background: linear-gradient(165deg, rgba(232,84,107,0.1), rgba(139,127,232,0.08)); border-color: rgba(232,84,107,0.35); transform: scale(1.02); }
.price-card--featured:hover { transform: scale(1.02) translateY(-6px); border-color: var(--coral); }
.price-badge { position: absolute; top: -13px; left: 28px; background: var(--coral); color: var(--bg-void); font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; padding: 5px 14px; border-radius: 100px; }
.price-icon { font-size: 24px; color: var(--coral); display: block; margin-bottom: 16px; }
.price-card-top h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.price-desc { font-size: 13.5px; line-height: 1.6; color: var(--text-lavender); margin-bottom: 24px; }
.price-tag { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--glass-border); }
.price-from { font-size: 12px; color: var(--text-muted); }
.price-amount { font-family: var(--font-serif); font-style: italic; font-size: 38px; font-weight: 700; color: var(--text-white); }
.price-includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex-grow: 1; }
.price-includes li { font-size: 13.5px; color: var(--text-lavender); padding-left: 20px; position: relative; line-height: 1.5; }
.price-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }
.price-cta { display: block; text-align: center; background: var(--purple-signal); color: var(--bg-void); font-weight: 600; font-family: var(--font-display); font-size: 14.5px; padding: 15px 0; border-radius: 100px; transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.price-cta:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,84,107,0.35); }
.price-card--featured .price-cta { background: var(--coral); }
.price-card--featured .price-cta:hover { background: var(--purple-signal); box-shadow: 0 12px 26px rgba(139,127,232,0.4); }
.pricing-footnote { text-align: center; margin-top: 36px; font-size: 14px; color: var(--text-muted); }
.pricing-footnote a { color: var(--purple-signal); font-weight: 500; transition: color .2s var(--ease); }
.pricing-footnote a:hover { color: var(--coral); }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } .price-card--featured { transform: none; order: -1; } .price-card--featured:hover { transform: translateY(-6px); } }

/* CAPABILITIES */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 20px; }
.cap-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 28px 24px; backdrop-filter: blur(10px); transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease); grid-column: span 2; }
.cap-card--lg { grid-row: span 2; background: linear-gradient(160deg, rgba(139,127,232,0.1), rgba(232,84,107,0.05)); }
.cap-card:hover { border-color: var(--purple-signal); transform: translateY(-5px); background: rgba(139,127,232,0.1); }
.cap-icon { font-size: 24px; color: var(--coral); display: block; margin-bottom: 16px; }
.cap-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 9px; }
.cap-card--lg h3 { font-size: 22px; }
.cap-card p { font-size: 13.5px; line-height: 1.58; color: var(--text-lavender); }
.cap-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.cap-tags span { font-family: var(--font-mono); font-size: 10.5px; padding: 5px 11px; border-radius: 100px; background: rgba(232,84,107,0.12); color: var(--coral); border: 1px solid rgba(232,84,107,0.25); }
@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } .cap-card, .cap-card--lg { grid-column: span 2 !important; grid-row: auto !important; } }

/* WORK GRID (v2) */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.work-grid--more { max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; transition: max-height .6s var(--ease), opacity .5s var(--ease), margin-top .6s var(--ease); }
.work-grid--more.expanded { max-height: 3000px; opacity: 1; margin-top: 28px; }
.work-card { border-radius: 20px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--glass-border); transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.work-card--lg { grid-column: span 2; }
.work-card:hover { transform: translateY(-7px); border-color: var(--purple-signal); box-shadow: 0 26px 52px rgba(0,0,0,0.42); }
.work-card-frame { position: relative; }
.work-card-chrome { display: flex; align-items: center; gap: 7px; padding: 12px 14px 12px 17px; background: var(--bg-elevated); border-bottom: 1px solid var(--glass-border); }
.chrome-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-dim); }
.chrome-url { margin-left: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); flex-grow: 1; }
.chrome-visit { font-family: var(--font-mono); font-size: 10.5px; color: var(--purple-signal); white-space: nowrap; padding: 4px 10px; border-radius: 100px; border: 1px solid var(--glass-border); transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease); }
.chrome-visit:hover { color: var(--coral); border-color: var(--coral); background: rgba(232,84,107,0.08); }
.work-card-visual { aspect-ratio: 16/10; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.work-card--lg .work-card-visual { aspect-ratio: 16/8; }
.work-card-visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--glass-border) 1px, transparent 1px), linear-gradient(90deg, var(--glass-border) 1px, transparent 1px); background-size: 28px 28px; opacity: 0.5; }
.work-card-visual--1 { background: radial-gradient(circle at 25% 25%, rgba(139,127,232,0.25), transparent 55%), linear-gradient(135deg, var(--bg-elevated), var(--bg-void)); }
.work-card-visual--2 { background: radial-gradient(circle at 75% 25%, rgba(232,84,107,0.18), transparent 55%), linear-gradient(135deg, var(--bg-elevated), var(--bg-void)); }
.work-card-visual--3 { background: radial-gradient(circle at 25% 75%, rgba(139,127,232,0.2), transparent 55%), linear-gradient(135deg, var(--bg-elevated), var(--bg-void)); }
.work-card-visual--4 { background: radial-gradient(circle at 75% 75%, rgba(232,84,107,0.2), transparent 55%), linear-gradient(135deg, var(--bg-elevated), var(--bg-void)); }
.work-card-visual--5, .work-card-visual--6, .work-card-visual--7, .work-card-visual--8, .work-card-visual--9 { background: radial-gradient(circle at 50% 30%, rgba(139,127,232,0.18), transparent 55%), linear-gradient(135deg, var(--bg-elevated), var(--bg-void)); }
.work-card-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; position: relative; z-index: 1; }
.visual-placeholder { position: relative; z-index: 1; text-align: center; font-family: var(--font-serif); }
.visual-placeholder span { display: block; font-size: 22px; font-weight: 600; font-style: italic; color: var(--text-lavender); margin-bottom: 6px; }
.visual-placeholder small { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.05em; }
.work-card-info { padding: 24px; }
.work-card-tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: var(--coral); margin-bottom: 11px; }
.work-card-info h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 9px; }
.work-card-info p { font-size: 13.5px; line-height: 1.58; color: var(--text-lavender); margin-bottom: 13px; }
.work-card-cta { font-size: 13px; font-weight: 600; color: var(--purple-signal); transition: color .2s var(--ease); }
.work-card-cta:hover { color: var(--coral); }
.work-view-more { display: flex; justify-content: center; margin-top: 44px; }
@media (max-width: 860px) { .work-grid { grid-template-columns: 1fr; } .work-card--lg { grid-column: span 1; } }

/* CASE STUDY */
.case-study { background: linear-gradient(180deg, transparent, rgba(139,127,232,0.04), transparent); }
.case-study-head { max-width: 700px; margin-bottom: 52px; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 50px; }
.case-col { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 18px; padding: 26px 22px; backdrop-filter: blur(8px); }
.case-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--coral); display: block; margin-bottom: 13px; }
.case-col p { font-size: 14px; line-height: 1.65; color: var(--text-lavender); }
.case-stats { display: flex; gap: 44px; flex-wrap: wrap; margin-bottom: 48px; padding: 32px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.case-stat { display: flex; flex-direction: column; gap: 6px; }
.case-stat-num { font-family: var(--font-serif); font-style: italic; font-size: 34px; font-weight: 600; color: var(--coral); }
.case-stat-label { font-size: 12.5px; color: var(--text-muted); max-width: 190px; }
.case-cta { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text-white); padding: 16px 0; border-bottom: 2px solid var(--purple-signal); transition: color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease); }
.case-cta:hover { color: var(--coral); border-color: var(--coral); gap: 18px; }
@media (max-width: 860px) { .case-grid { grid-template-columns: 1fr; } .case-stats { gap: 28px; } }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.about-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(26px, 3.6vw, 38px); line-height: 1.22; letter-spacing: -0.01em; margin-bottom: 22px; }
.about-body { font-size: 15.5px; line-height: 1.72; color: var(--text-lavender); margin-bottom: 16px; }
.about-body strong { color: var(--coral); font-weight: 600; }
.about-stats { display: flex; gap: 38px; margin-top: 34px; margin-bottom: 28px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-serif); font-style: italic; font-size: 30px; font-weight: 700; color: var(--purple-signal); }
.stat-label { font-size: 12px; color: var(--text-muted); }
.about-cta { display: inline-block; font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--coral); border-bottom: 2px solid var(--coral); padding-bottom: 4px; }
.about-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 10px; backdrop-filter: blur(10px); }
.about-card-row { display: flex; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--glass-border); font-size: 13.5px; }
.about-card-row:last-child { border-bottom: none; }
.about-card-row span:first-child { color: var(--text-muted); }
.about-card-row span:last-child { color: var(--text-white); font-weight: 500; }
.about-card-row--accent { background: rgba(232,84,107,0.1); border-radius: 12px; }
.about-card-row--accent span:last-child { color: var(--coral); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* FINAL CTA */
.final-cta { text-align: center; padding-bottom: 60px; }
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(28px, 4.6vw, 46px); letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 16px; }
.final-cta-sub { font-size: 16px; color: var(--text-lavender); margin-bottom: 32px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.final-cta-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.final-cta-links a { font-size: 13px; color: var(--text-muted); transition: color .2s var(--ease); }
.final-cta-links a:hover { color: var(--coral); }

/* AI SHOWCASE */
.ai-showcase { background: linear-gradient(180deg, transparent, rgba(232,84,107,0.04), transparent); }
.ai-showcase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ai-showcase-text .section-head, .ai-showcase-text { max-width: 480px; }
.ai-showcase-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; background: var(--coral); color: var(--bg-void); font-family: var(--font-display); font-weight: 600; font-size: 14.5px; padding: 15px 26px; border-radius: 100px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.ai-showcase-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232,84,107,0.38); }
.ai-showcase-cta svg { transition: transform .25s var(--ease); }
.ai-showcase-cta:hover svg { transform: translateX(3px); }

.ai-showcase-visual { position: relative; }
.ai-node-field { position: relative; aspect-ratio: 4/3.4; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 24px; overflow: hidden; }
#ai-network-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.ai-chat-mock { position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; }
.ai-chat-line { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: 13px; line-height: 1.5; backdrop-filter: blur(6px); }
.ai-chat-line p { margin: 0; }
.ai-chat-line--in { align-self: flex-start; background: rgba(255,255,255,0.07); border: 1px solid var(--glass-border); color: var(--text-lavender); display: flex; gap: 8px; align-items: flex-start; }
.ai-chat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-signal); margin-top: 6px; flex-shrink: 0; }
.ai-chat-line--out { align-self: flex-end; background: var(--coral); color: var(--bg-void); font-weight: 500; }
.ai-chat-typing { align-self: flex-start; display: flex; gap: 4px; padding: 10px 14px; background: rgba(255,255,255,0.06); border-radius: 16px; width: fit-content; }
.ai-chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); animation: typingBounce 1.2s infinite ease-in-out; }
.ai-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.ai-chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

@media (max-width: 860px) {
  .ai-showcase-inner { grid-template-columns: 1fr; gap: 36px; }
  .ai-showcase-text, .ai-showcase-text .section-head { max-width: none; }
}

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 30px 26px; backdrop-filter: blur(10px); position: relative; display: flex; flex-direction: column; }
.testimonial-mark { font-family: var(--font-serif); font-size: 48px; font-style: italic; color: var(--coral); line-height: 1; opacity: 0.5; margin-bottom: 8px; }
.testimonial-quote { font-size: 14.5px; line-height: 1.65; color: var(--text-lavender); margin-bottom: 22px; flex-grow: 1; }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; padding-top: 16px; border-top: 1px solid var(--glass-border); }
.testimonial-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--text-white); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* CONTACT FORM */
.contact-form { max-width: 560px; margin: 0 auto 36px; text-align: left; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px;
  padding: 13px 16px; font-family: var(--font-body); font-size: 14.5px; color: var(--text-white);
  transition: border-color .2s var(--ease), background .2s var(--ease);
  resize: vertical;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--coral); background: rgba(232,84,107,0.05);
}
.form-field select { cursor: pointer; }
.form-submit { width: 100%; justify-content: center; }
.form-status { font-size: 13.5px; min-height: 20px; text-align: center; }
.form-status.success { color: #6fd99a; }
.form-status.error { color: var(--coral); }

.final-cta-divider { display: flex; align-items: center; gap: 14px; margin: 0 auto 24px; max-width: 560px; }
.final-cta-divider::before, .final-cta-divider::after { content: ''; flex: 1; height: 1px; background: var(--glass-border); }
.final-cta-divider span { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-muted); white-space: nowrap; }

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* FOOTER */
.footer { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: center; padding: 28px 32px; border-top: 1px solid var(--glass-border); max-width: var(--container); margin: 0 auto; font-size: 12.5px; color: var(--text-muted); }
.footer-tag { font-family: var(--font-mono); color: var(--purple-mid); }
@media (max-width: 600px) { .footer { flex-direction: column; gap: 10px; text-align: center; padding: 28px 20px; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }
a:focus-visible, button:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 4px; }
