/* ==========================================
   CUSTOM CURSOR
========================================== */

body {
    cursor: none;
}

a,
button,
.btn,
input,
textarea,
select,
label {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    left: 0;
    top: 0;

    width: 56px;
    height: 56px;

    pointer-events: none;

    /* Position is driven by the compositor-only `translate` property (set from
       JS as --cx/--cy); `transform` is reserved for centering + hover scale so
       the two don't fight over the same property. */
    translate: var(--cx, 0) var(--cy, 0);
    transform: translate(-50%, -50%);
    z-index: 99999;

    transition:
        transform .18s ease,
        opacity .25s ease;

    will-change: translate, transform;
}

.custom-cursor img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.custom-cursor.hover{
    transform:translate(-50%,-50%) scale(1.5);
}

.custom-cursor.click{
    transform:translate(-50%,-50%) scale(.5);
}

@media (max-width: 992px){
    .custom-cursor{
        display:none;
    }

    body{
        cursor:auto;
    }

    a,
    button,
    .btn{
        cursor:pointer;
    }
}


/* ---------- Variables ---------- */
:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #c4ff60;
  --teal: #00b883;
  --purple: #422a57;
  --lavender: #c9a5e3;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --container: 1180px;
  --radius: 18px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

/* ---------- Flowing scroll-drawn line ---------- */
/* Sits above the section background colors (painted on the <section>
   elements, which stay in the z-index:auto layer) but below the actual
   content, which is lifted to z-index 2 via .container below. */
.flow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}
.flow-line svg {
  display: block;
  width: 100%;
  height: 100%;
}
.flow-line path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.6;
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  /* Lift all section content above the decorative flow-line (z-index 1) */
  position: relative;
  z-index: 2;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow-dark { color: var(--teal); }

.highlight {
  color: var(--teal);
  font-style: normal;
}

.link-arrow {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: var(--purple);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}
.link-arrow-light { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: var(--black);
}
.btn-primary:hover { background: var(--teal); color: var(--white); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--purple); }

/* ---------- Video Hero ---------- */
.video-hero {
  position: relative;
  /* Lift the whole hero above the decorative flow-line (z-index:1) so the
     line can never paint over the video, even mid-draw. Header stays on top
     at z-index:100. */
  z-index: 2;
  height: 100vh;
  height: 100dvh;
  min-height: 480px;
  background: var(--black);
  overflow: hidden;
  cursor: pointer;
}
.video-hero:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -4px;
}

.video-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo--on-video {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  left: clamp(20px, 3vw, 32px);
  z-index: 2;
  color: var(--white);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}

.video-controls {
  position: absolute;
  left: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
  bottom: clamp(20px, 3vw, 32px);
  z-index: 2;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.video-hero:hover .video-controls,
.video-controls:hover,
.video-controls:focus-within,
.video-controls.is-active {
  opacity: 1;
}

.video-seek {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.video-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.video-seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.video-seek::-moz-range-track {
  height: 3px;
  border-radius: 3px;
  background: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;  /* ----------remove moving Header ---------- */
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 136px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 42px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a.active,
.main-nav a:hover { color: var(--teal); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--primary);
}

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--purple);
  color: var(--white);
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--teal), transparent 60%),
              radial-gradient(circle at 70% 70%, var(--primary), transparent 55%);
  opacity: 0.35;
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
}

.hero-inner {
  max-width: 820px;
}

.hero-flank {
  flex-shrink: 0;
  width: clamp(120px, 14vw, 200px);
  height: auto;
  object-fit: contain;
  align-self: center;
}

@media (max-width: 1150px) {
  .hero-flank { display: none; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--lavender);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- About ---------- */
.about { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr 1.1fr;
  align-items: start;
  gap: 40px;
}

.about-mascot {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

.about-copy p {
  color: #444;
  margin-bottom: 16px;
}

/* ---------- Services ---------- */
.services {
  background: #faf7fd;
  padding: 100px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: left;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

.section-mascot {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.section-mascot-light { filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4)); }

.work-copy .section-mascot,
.contact-copy .section-mascot {
  display: block;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(66, 42, 87, 0.12);
  border-color: var(--primary);
}

.service-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--lavender), var(--teal) 90%);
  overflow: hidden;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: #555;
}
.service-card p a {
  color: var(--teal);
  font-weight: 600;
  white-space: nowrap;
}
.service-card p a:hover { text-decoration: underline; }

/* ---------- Clients ---------- */
.clients {
  background: var(--white);
  padding: 100px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: #faf7fd;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(66, 42, 87, 0.1);
}
.client-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ---------- Influencers ---------- */
.influencers {
  background: #faf7fd;
  padding: 100px 0;
}

.influencers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.influencer-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.influencer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(66, 42, 87, 0.12);
}

.influencer-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--lavender), var(--teal) 90%);
  overflow: hidden;
}
.influencer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.influencer-card h3 {
  font-size: 1.15rem;
  margin: 20px 0 4px;
}
.influencer-handle {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.influencer-meta {
  color: #777;
  font-size: 0.85rem;
}

/* ---------- Content Plans ---------- */
.content-plans {
  background: var(--white);
  padding: 100px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(66, 42, 87, 0.12);
}

.plan-card-featured {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 100px;
}

.plan-name {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: inherit;
  opacity: 0.7;
  margin-bottom: 18px;
}
.plan-price span {
  font-size: 2.4rem;
  font-weight: 700;
  opacity: 1;
}
.plan-desc {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

.plan-features {
  margin-bottom: 32px;
  flex: 1;
}
.plan-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.plan-card-featured .plan-features li::before { color: var(--primary); }

.plan-card .btn { justify-content: center; }

.btn-outline-dark {
  background: transparent;
  border-color: var(--purple);
  color: var(--purple);
}
.btn-outline-dark:hover { background: var(--purple); color: var(--white); }

/* ---------- Work ---------- */
.work {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.work-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin: 4px 0 16px; }
.work-sub { color: #bbb; max-width: 420px; }

.work-media { position: relative; }

.work-placeholder {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--teal) 70%);
}

.work-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--black);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.play-btn:hover { transform: scale(1.08); }

/* ---------- Contact ---------- */
.contact {
  background: var(--purple);
  color: var(--white);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contact-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 24px; }

.contact-info { margin-bottom: 24px; }
.contact-info li {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.contact-info strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-info a { color: var(--white); }
.contact-info a:hover { color: var(--primary); }

.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
}

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form .btn { align-self: flex-start; }

.form-note {
  font-size: 0.9rem;
  color: var(--primary);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo { color: var(--white); }
.footer-copy { color: #999; font-size: 0.85rem; }

.site-footer .social-links a { border-color: rgba(255,255,255,0.2); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid,
  .work-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-mascot { max-width: 140px; margin-bottom: 8px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .influencers-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .influencers-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 72px; }
  .about, .services, .work, .contact,
  .clients, .influencers, .content-plans { padding: 72px 0; }
  .section-head { flex-direction: column; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover,
  .service-card:hover,
  .influencer-card:hover,
  .plan-card:hover,
  .client-logo:hover { transform: none; }
}
