/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --bg:       #07070f;
  --bg-blue:  #06090f;
  --bg-green: #060e0b;
  --bg-warm:  #0e0805;
  --bg-dark:  #0a0a14;
  --text:     #e8e8f2;
  --muted:    #5a5a7a;

  /* Section accent colors */
  --blue:     #38bdf8;
  --green:    #34d399;
  --orange:   #fb923c;

  /* Glow versions */
  --blue-g:   rgba(56,  189, 248, 0.22);
  --green-g:  rgba(52,  211, 153, 0.22);
  --orange-g: rgba(251, 146,  60, 0.22);

  --border:   rgba(255, 255, 255, 0.06);
  --nav-h:    68px;
  --radius:   14px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.4s;
  mix-blend-mode: screen;
}

#cursor-follower {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: border-color 0.4s, width 0.25s, height 0.25s;
}

body.cursor-hover #cursor-follower { width: 52px; height: 52px; }

body.section-blue   #cursor,
body.section-blue   #cursor-follower { border-color: rgba(56,189,248,0.55);  background: var(--blue); }
body.section-green  #cursor,
body.section-green  #cursor-follower { border-color: rgba(52,211,153,0.55);  background: var(--green); }
body.section-orange #cursor,
body.section-orange #cursor-follower { border-color: rgba(251,146,60,0.55);  background: var(--orange); }

/* ============================================================
   THE TRAVELER
   ============================================================ */
#traveler {
  position: fixed;
  width: 90px; height: 90px;
  z-index: 500;
  pointer-events: none;
  transform: translate(-50%, -50%);
  color: var(--blue);
  transition: color 0.5s;
}

.traveler-glow {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
  opacity: 0.4;
  animation: t-pulse 2.2s ease-in-out infinite;
  transition: background 0.5s;
}

@keyframes t-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.4; }
  50%       { transform: scale(1.6); opacity: 0.15; }
}

.traveler-shape { position: relative; width: 100%; height: 100%; }

.t-icon {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.t-icon.active { opacity: 1; }

/* ============================================================
   TRAVEL BUBBLE — picks up from hero photo
   ============================================================ */
#bubble-travel {
  position: fixed;
  width: 190px;
  height: 190px;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  /* left/top/scale driven by GSAP — xPercent/yPercent handle centering */
}

#bubble-travel img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
  box-shadow: 0 0 32px var(--blue-g), 0 0 80px rgba(56,189,248,0.12);
  display: block;
  transition: border-color 0.5s, box-shadow 0.5s;
}

#bubble-travel.green img {
  border-color: var(--green);
  box-shadow: 0 0 32px var(--green-g), 0 0 80px rgba(52,211,153,0.12);
}

#bubble-travel.orange img {
  border-color: var(--orange);
  box-shadow: 0 0 32px var(--orange-g), 0 0 80px rgba(251,146,60,0.12);
}

.bubble-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  opacity: 0.3;
  animation: spin 9s linear infinite;
  transition: border-color 0.5s;
}

.bubble-ring-2 {
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  border: 1px dashed var(--blue);
  opacity: 0.14;
  animation: spin 16s linear infinite reverse;
  transition: border-color 0.5s;
}

/* ============================================================
   FIXED FLOATING BUTTONS (WhatsApp + Back to Top)
   ============================================================ */
.fixed-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 11px 18px;
  background: #25d366;
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.back-to-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 9px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(12px);
  transition: color 0.3s, border-color 0.3s, transform 0.2s;
  cursor: pointer;
}

.back-to-top:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.fixed-actions.hidden { opacity: 0; pointer-events: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  inset-inline: 0; top: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(7, 7, 15, 0.9);
  backdrop-filter: blur(22px);
  border-color: var(--border);
}

.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 3px;
}

.nav-links { display: flex; gap: 2.4rem; list-style: none; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.3s, background 0.4s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--blue);
  color: #000;
  padding: 9px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--blue-g); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}

.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: var(--nav-h) 6% 0;
  overflow: hidden;
  background: var(--bg);
}

#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.hero-content {
  position: relative; z-index: 2;
  flex: 1; max-width: 54%;
}

.hero-anim { opacity: 0; transform: translateY(28px); }

.hero-tag {
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1.4rem;
}

.hero-name {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  font-weight: 900; line-height: 0.95; margin-bottom: 1.4rem;
}

.name-line { display: block; }

.gradient-text {
  background: linear-gradient(110deg, var(--blue) 0%, var(--green) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-supertag {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--blue);
  opacity: 0.75;
  margin-bottom: 0.6rem;
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--muted); font-weight: 300;
  margin-bottom: 2.4rem; letter-spacing: 0.2px;
}

.hero-identities { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 3rem; }

.identity-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 10px 22px; border-radius: 50px;
  text-decoration: none; font-size: 0.83rem; font-weight: 600;
  border: 1px solid;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pill-icon { font-family: 'Space Mono', monospace; }

.identity-pill.blue   { color: var(--blue);   border-color: rgba(56,189,248,0.3);  background: rgba(56,189,248,0.05); }
.identity-pill.green  { color: var(--green);  border-color: rgba(52,211,153,0.3);  background: rgba(52,211,153,0.05); }
.identity-pill.orange { color: var(--orange); border-color: rgba(251,146,60,0.3);  background: rgba(251,146,60,0.05); }

.identity-pill.blue:hover   { background: rgba(56,189,248,0.14);  box-shadow: 0 0 24px var(--blue-g);   transform: translateY(-3px); }
.identity-pill.green:hover  { background: rgba(52,211,153,0.14);  box-shadow: 0 0 24px var(--green-g);  transform: translateY(-3px); }
.identity-pill.orange:hover { background: rgba(251,146,60,0.14);  box-shadow: 0 0 24px var(--orange-g); transform: translateY(-3px); }

.hero-scroll-hint {
  display: flex; align-items: center; gap: 1rem;
  color: var(--muted); font-size: 0.7rem;
  letter-spacing: 2.5px; text-transform: uppercase;
}

.scroll-line {
  width: 56px; height: 1px;
  background: var(--muted); overflow: hidden; position: relative;
}

.scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--blue);
  animation: slide-line 2.2s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes slide-line {
  0%  { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100%{ transform: translateX(100%); }
}

/* Hero Image */
.hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0; width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}

.image-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: spin linear infinite;
}

.ring-1 { inset: -18px; border-color: rgba(56,189,248,0.22);  animation-duration: 14s; }
.ring-2 { inset: -38px; border-color: rgba(52,211,153,0.13);  animation-duration: 24s; animation-direction: reverse; }
.ring-3 { inset: -62px; border-color: rgba(251,146,60,0.07);  animation-duration: 38s; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-photo {
  width: 290px; height: 290px;
  border-radius: 50%; object-fit: cover;
  border: 2.5px solid rgba(56,189,248,0.3);
  box-shadow: 0 0 60px rgba(56,189,248,0.18), 0 0 130px rgba(52,211,153,0.08);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 110px 6%; position: relative; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 1.05rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2.8rem;
}

.section-content { max-width: 1160px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }

.section-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 0.9rem;
}

.section-title .char { display: inline-block; }

.section-sub {
  font-size: 1.08rem; color: var(--muted);
  max-width: 640px; line-height: 1.9;
}

.subsection-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--muted);
  margin: 2.8rem 0 1.2rem;
}

/* ============================================================
   BUILDER — BLUE WORLD
   ============================================================ */
#builder {
  background: var(--bg-blue);
  border-top: 1px solid rgba(56, 189, 248, 0.1);
}

#builder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(56,189,248,0.055) 0%, transparent 70%);
  pointer-events: none;
}

#builder .section-title { color: var(--blue); }

/* Builder stats */
.builder-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 2rem 0 3rem;
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: var(--radius);
  background: rgba(56,189,248,0.03);
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(56,189,248,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  font-family: 'Space Mono', monospace;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* Tech logo slider */
.tech-slider-wrap {
  /* break out of container — full viewport width */
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  padding: 0.5rem 0;
  margin-bottom: 3.5rem;
}

.tech-slider-wrap::before,
.tech-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.tech-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-blue) 20%, transparent);
}

.tech-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-blue) 20%, transparent);
}

.tech-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.6rem 0;
}

.tech-track.track-left  { animation: scroll-left  32s linear infinite; }
.tech-track.track-right { animation: scroll-right 38s linear infinite; margin-top: 0.8rem; }

/* slider never pauses on hover */

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.tech-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.6rem 2rem;
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: 12px;
  background: rgba(56,189,248,0.03);
  min-width: 170px;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: default;
  user-select: none;
}

.tech-logo-item:hover {
  border-color: rgba(56,189,248,0.38);
  background: rgba(56,189,248,0.09);
  transform: translateY(-4px);
}

.tech-logo-item img {
  width: 108px; height: 108px;
  object-fit: contain;
  display: block;
}

/* Tint GitHub and WordPress to brand blue */
.tech-logo-item img[alt="GitHub"],
.tech-logo-item img[alt="WordPress"] {
  filter: brightness(0) saturate(100%) invert(72%) sepia(60%) saturate(400%) hue-rotate(170deg) brightness(105%);
}

.tech-logo-item span {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  background: rgba(56,189,248,0.04);
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  gap: 1px;
}

.portfolio-card {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 2rem 1.8rem;
  background: var(--bg-blue);
  opacity: 0; transform: translateY(26px);
  transition: background 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.portfolio-card:hover { background: rgba(56,189,248,0.05); }
.portfolio-card:hover .card-arrow { transform: translateX(5px); color: var(--blue); }

.card-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem; color: var(--muted);
  flex-shrink: 0; margin-top: 3px;
}

.card-body { flex: 1; }
.card-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-body p  { font-size: 0.95rem; color: var(--muted); line-height: 1.72; margin-bottom: 0.9rem; }

.card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.card-tags span {
  font-size: 0.68rem; padding: 2px 10px;
  border-radius: 50px;
  border: 1px solid rgba(56,189,248,0.2);
  color: var(--blue);
}

.card-arrow {
  font-size: 1rem; color: var(--muted);
  align-self: center;
  transition: transform 0.3s, color 0.3s;
}

/* ============================================================
   AI CONSULTANT — GREEN WORLD
   ============================================================ */
#ai {
  background: var(--bg-green);
  border-top: 1px solid rgba(52, 211, 153, 0.1);
  overflow: hidden;
}

#ai::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(52,211,153,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ai-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(52,211,153,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,211,153,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

#ai .section-title { color: var(--green); }

/* Why Now banner */
.ai-why-now {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 2rem;
  border: 1px solid rgba(52,211,153,0.18);
  border-radius: var(--radius);
  background: rgba(52,211,153,0.04);
  margin-bottom: 3rem;
  opacity: 0; transform: translateY(20px);
}

.why-now-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--green); }
  50%       { box-shadow: 0 0 22px var(--green), 0 0 40px rgba(52,211,153,0.3); }
}

.why-now-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.why-now-text strong { color: var(--green); font-weight: 600; }

/* Process strip */
.ai-process {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 2.8rem 0;
  padding: 2rem;
  border: 1px solid rgba(52,211,153,0.14);
  border-radius: var(--radius);
  background: rgba(52,211,153,0.03);
  opacity: 0; transform: translateY(24px);
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.2rem;
}

.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 3px;
  color: var(--green); opacity: 0.6;
  display: block; margin-bottom: 0.5rem;
}

.process-step h5 {
  font-size: 1rem; font-weight: 700;
  color: var(--green); margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.76rem; color: var(--muted); line-height: 1.6;
}

.process-arrow {
  font-size: 1.4rem; color: rgba(52,211,153,0.3);
  flex-shrink: 0; padding: 0 0.5rem;
}

/* AI service cards */
.ai-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.3rem; margin-bottom: 2.5rem;
}

.ai-card {
  padding: 2rem 1.8rem;
  border: 1px solid rgba(52,211,153,0.13);
  border-radius: var(--radius);
  background: rgba(52,211,153,0.03);
  opacity: 0; transform: translateY(36px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.ai-card:hover {
  border-color: rgba(52,211,153,0.38);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(52,211,153,0.1);
}

.ai-icon {
  width: 46px; height: 46px;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.ai-card h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.75rem; }
.ai-card p  { font-size: 0.97rem; color: var(--muted); line-height: 1.78; margin-bottom: 1.3rem; }

.ai-features { list-style: none; display: flex; flex-direction: column; gap: 0.38rem; }

.ai-features li {
  font-size: 0.88rem; color: var(--green);
  padding-left: 1.2rem; position: relative;
}

.ai-features li::before { content: '→'; position: absolute; left: 0; font-size: 0.68rem; }

/* ── AI Tools Strip ─────────────────────────────────────── */
.ai-tools-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.2rem 0 3rem;
}

.ai-tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(52,211,153,0.12);
  border-radius: 12px;
  background: rgba(52,211,153,0.03);
  min-width: 90px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.ai-tool-item:hover {
  border-color: rgba(52,211,153,0.38);
  background: rgba(52,211,153,0.08);
  transform: translateY(-4px);
}

.ai-tool-item img {
  width: 44px; height: 44px;
  object-fit: contain;
  display: block;
}

.ai-tool-item span {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}

/* ── Creator Social Platforms ───────────────────────────── */
.social-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.social-platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2rem;
  border: 1px solid rgba(251,146,60,0.12);
  border-radius: 12px;
  background: rgba(251,146,60,0.03);
  min-width: 100px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}

.social-platform-item:hover {
  border-color: rgba(251,146,60,0.38);
  background: rgba(251,146,60,0.08);
  transform: translateY(-4px);
}

.social-platform-item img {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
}

.social-platform-item span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}

.ai-cta-block {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem; text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(52,211,153,0.14);
  border-radius: var(--radius);
  background: rgba(52,211,153,0.03);
  opacity: 0; transform: translateY(30px);
}

.ai-cta-text { font-size: 1.6rem; font-weight: 700; }

.btn-primary {
  display: inline-block; padding: 14px 34px;
  border-radius: 9px; text-decoration: none;
  font-size: 0.87rem; font-weight: 700; letter-spacing: 0.4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.green-btn { background: var(--green); color: #000; }
.green-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 36px var(--green-g); }

/* ============================================================
   CREATOR — ORANGE WORLD
   ============================================================ */
#creator {
  background: var(--bg-warm);
  border-top: 1px solid rgba(251, 146, 60, 0.1);
}

#creator::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(251,146,60,0.06) 0%, transparent 70%);
  pointer-events: none;
}

#creator .section-title { color: var(--orange); }

.creator-themes { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }

.theme-pill {
  padding: 8px 18px;
  border: 1px solid rgba(251,146,60,0.22);
  border-radius: 50px; font-size: 0.8rem;
  color: var(--orange); background: rgba(251,146,60,0.05);
  opacity: 0; transform: scale(0.78);
  transition: background 0.25s, box-shadow 0.25s;
}

.theme-pill:hover { background: rgba(251,146,60,0.13); box-shadow: 0 0 18px var(--orange-g); }

.creator-platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 3.5rem; }

.platform-card {
  display: flex; align-items: center; gap: 1.4rem;
  padding: 2rem 1.8rem;
  border-radius: var(--radius); text-decoration: none;
  border: 1px solid; opacity: 0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.platform-card:hover { transform: translateY(-5px); }

/* .yt-card styles moved to creator section below */

.ig-card {
  color: var(--orange);
  border-color: rgba(251,146,60,0.2);
  background: rgba(251,146,60,0.04);
  transform: translateX(30px);
}

.ig-card:hover { box-shadow: 0 22px 60px var(--orange-g); border-color: rgba(251,146,60,0.4); }

.platform-icon { width: 54px; height: 54px; flex-shrink: 0; }
.platform-info h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.platform-info p  { font-size: 0.8rem; opacity: 0.55; margin-bottom: 0.5rem; }
.plat-cta { font-size: 0.78rem; font-weight: 600; }

.creator-quote {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1.4rem;
  padding: 3.5rem 2rem;
  opacity: 0; transform: translateY(24px);
}

.quote-line { width: 60px; height: 1px; background: rgba(251,146,60,0.3); }

.creator-quote blockquote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--orange);
  line-height: 1.65;
}

.motto-text {
  font-family: 'Space Mono', monospace;
  font-size: clamp(2.4rem, 6vw, 4.8rem) !important;
  font-weight: 700 !important;
  letter-spacing: 6px;
  line-height: 1.1 !important;
  background: linear-gradient(90deg, var(--orange) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Creator video embeds */
.creator-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: stretch; /* both columns same height */
}

.creator-media-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Both cards grow to fill equal column height */
.yt-card,
.ig-reel-card {
  flex: 1;
}

/* ig-reel-wrap must also stretch so ig-reel-card inside fills height */
#ig-reel-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#ig-reel-wrap .ig-reel-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#ig-reel-wrap .ig-reel-thumb {
  flex-shrink: 0;
}
#ig-reel-wrap .ig-reel-caption {
  flex: 1;
}

.creator-media-block h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.yt-media-block h3 { color: #ff4040; }
.ig-media-block h3 { color: var(--orange); }

.yt-card {
  border: 1px solid rgba(255,64,64,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,64,64,0.03);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.yt-embed-wrap {
  flex: 1;
}
.yt-card:hover {
  border-color: rgba(255,64,64,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(255,64,64,0.1);
}

.yt-embed-wrap {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.yt-embed-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

.yt-card-footer {
  padding: 0.9rem 1.1rem 1rem;
  min-height: 80px;
}

.ig-reel-card {
  min-height: 0;
}

.yt-card-caption {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.yt-card-cta {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff4040;
  text-decoration: none;
}

.yt-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem;
  color: #ff4040;
  text-align: center;
  width: 100%;
}

.yt-placeholder svg { width: 48px; height: 48px; opacity: 0.7; }
.yt-placeholder p   { font-size: 0.88rem; color: var(--muted); }

.ig-placeholder {
  border: 1px solid rgba(251,146,60,0.18);
  border-radius: var(--radius);
  background: rgba(251,146,60,0.03);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.ig-placeholder p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Instagram Reel Card */
.ig-reel-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(251,146,60,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.ig-reel-card:hover {
  border-color: rgba(251,146,60,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(251,146,60,0.1);
}
.ig-reel-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0e0805;
}
.ig-reel-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ig-reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-reel-play svg { width: 56px; height: 56px; }
.ig-reel-caption {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.9rem 1.1rem 0.4rem;
  line-height: 1.6;
}
.ig-reel-cta {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  padding: 0.4rem 1.1rem 1rem;
}

.media-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.media-link.yt  { background: #ff4040; color: #fff; }
.media-link.yt:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,64,64,0.35); }
.media-link.ig  { background: var(--orange); color: #000; }
.media-link.ig:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px var(--orange-g); }

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

/* ============================================================
   TESTIMONIALS / LINKEDIN RECOMMENDATIONS
   ============================================================ */
.testimonials-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.testi-track-wrap {
  flex: 1;
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-card {
  flex: 0 0 100%;
  background: rgba(56, 189, 248, 0.03);
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.testi-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.07);
}

.testi-quote-icon { opacity: 0.8; }

.testi-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(232, 232, 242, 0.88);
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(56, 189, 248, 0.08);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.testi-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testi-meta strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.testi-meta span {
  font-size: 0.75rem;
  color: var(--muted);
}

.testi-li-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.15);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.testi-li-badge:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
}

.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(56, 189, 248, 0.05);
  color: var(--blue);
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.45);
  transform: scale(1.08);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testi-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

@media (max-width: 560px) {
  .testi-btn { display: none; }
  .testi-card { padding: 1.4rem 1.2rem; }
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.contact-inner { text-align: center; }

.contact-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 1rem;
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-form {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.cf-field label {
  font-size: 0.72rem;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a7a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.cf-field select option {
  background: #0e0e1e;
  color: var(--text);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: rgba(56,189,248,0.5);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.08);
}

.cf-field textarea { resize: vertical; min-height: 130px; }

.cf-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cf-submit {
  position: relative;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.cf-btn-loading { display: none; }

.cf-submit.sending .cf-btn-text   { display: none; }
.cf-submit.sending .cf-btn-loading { display: inline; }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cf-status {
  font-size: 0.88rem;
  font-weight: 500;
  transition: opacity 0.3s;
}
.cf-status.success { color: var(--green); }
.cf-status.error   { color: #f87171; }

.contact-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Contact Options ─────────────────────────────────────── */
.contact-options {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 1.3rem; margin-bottom: 5rem;
}

.contact-opt {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 1.4rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none; color: var(--text);
  min-width: 200px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact-opt:hover {
  border-color: rgba(56,189,248,0.38);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(56,189,248,0.08);
}

.co-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem;
}

.co-val { font-size: 0.88rem; font-weight: 500; }

.site-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.77rem; color: var(--muted);
}

.footer-links { display: flex; gap: 1.6rem; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .builder-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(56,189,248,0.1); }
  .stat-item:nth-child(2) { border-right: none; }

  #hero {
    flex-direction: column-reverse; align-items: center; text-align: center;
    padding-top: calc(var(--nav-h) + 2.5rem); gap: 2.5rem;
    min-height: unset; padding-bottom: 5rem;
  }

  .hero-content { max-width: 100%; }
  .hero-identities { justify-content: center; }
  .hero-image { width: 230px; height: 230px; }
  .hero-photo { width: 210px; height: 210px; }
  .ring-1 { inset: -14px; } .ring-2 { inset: -28px; } .ring-3 { inset: -44px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(7,7,15,0.97); backdrop-filter: blur(22px);
    align-items: center; justify-content: center; gap: 2.5rem;
  }

  .nav-links.open a { font-size: 1.2rem; }

  .creator-platforms { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .ai-process { flex-direction: column; gap: 1rem; }
  .process-arrow { transform: rotate(90deg); }

  .site-footer { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 560px) {
  section { padding: 80px 5%; }
  .ai-services { grid-template-columns: 1fr; }
  .contact-opt { min-width: 100%; }
  .builder-stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(56,189,248,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-footer { flex-direction: column; align-items: flex-start; }
  #traveler, #floating-bubble { display: none; }
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }

  /* Section titles — smaller so they fit on one line */
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  /* Travel bubble — 25% of desktop size (190px → ~48px) */
  #bubble-travel {
    width: 48px;
    height: 48px;
  }
  .bubble-ring   { inset: -4px; }
  .bubble-ring-2 { inset: -8px; }
}
