:root {
  --ecom-accent: #7c3aed;
  --ecom-accent-2: #5b21e8;
  --ecom-ink: #14121f;
  --ecom-ink-soft: #5b5670;
  --ecom-muted: #848096;
  --ecom-border: rgba(20, 18, 31, 0.08);
  --ecom-bg-tint: #faf9ff;
  --ecom-dark: #0b0819;
  --container-max: 1240px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: #fff;
  color: var(--ecom-ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: var(--ecom-accent); text-decoration: none; }
a:hover { color: var(--ecom-accent-2); }
img { max-width: 100%; display: block; }
::selection { background: var(--ecom-accent); color: #fff; }

@keyframes revealUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes floatY2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes glowPulse { 0%, 100% { opacity: .5; transform: scale(1); } 50% { opacity: .85; transform: scale(1.06); } }
@keyframes blobDrift { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.1); } }
@keyframes twinkle { 0%, 100% { opacity: .25; transform: scale(.7) rotate(0deg); } 50% { opacity: 1; transform: scale(1.1) rotate(45deg); } }
@keyframes driftXY { 0%, 100% { transform: translate(0,0) rotate(-4deg); } 50% { transform: translate(10px,-8px) rotate(4deg); } }

.ecom-container { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 1.75rem); min-width: 0; }
.ecom-container--narrow { max-width: 820px; }
.ecom-section { padding: clamp(3rem, 9vw, 6.9rem) clamp(1.25rem, 4vw, 1.75rem); }
.ecom-section--tinted { background: linear-gradient(180deg, var(--ecom-bg-tint), #fff); }

.ecom-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .16em; color: var(--ecom-accent); }
.ecom-eyebrow--muted { color: var(--ecom-muted); }
.ecom-eyebrow--light { color: #b794ff; }
.ecom-eyebrow-rule { display: inline-flex; align-items: center; gap: 12px; justify-content: center; }
.ecom-eyebrow-rule span:not(.ecom-eyebrow) { width: 28px; height: 2px; background: var(--ecom-accent); border-radius: 2px; }
.ecom-section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; min-width: 0; }
.ecom-h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
  overflow-wrap: break-word;
}
.ecom-h2--light { color: #fff; }
.ecom-h3 { margin: 12px 0 0; font-size: 30px; letter-spacing: -.025em; font-weight: 800; line-height: 1.12; overflow-wrap: break-word; }
.ecom-lede { margin: 18px auto 0; max-width: 560px; font-size: 18px; line-height: 1.6; color: var(--ecom-ink-soft); }
.ecom-lede--light { color: #b9b3cf; }
.ecom-body { margin: 20px 0 0; font-size: 16.5px; line-height: 1.68; color: #54506a; }
.ecom-gradient-text {
  background: linear-gradient(120deg, #7c3aed, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ecom-accent-text { color: var(--ecom-accent); }

/* Pills / buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
  transition: transform .2s var(--ease-out-expo), box-shadow .2s var(--ease-out-expo);
  border: none;
  cursor: pointer;
}
.btn-pill:hover { transform: translateY(-2px); }
.btn-pill--gradient { background: linear-gradient(135deg, var(--ecom-accent), var(--ecom-accent-2)); color: #fff; box-shadow: 0 8px 26px rgba(124,77,255,.5); }
.btn-pill--gradient:hover { color: #fff; }
.btn-pill--outline { background: #fff; border: 1px solid rgba(20,18,31,.12); color: var(--ecom-ink); }
.btn-pill--outline:hover { color: var(--ecom-ink); border-color: rgba(20,18,31,.25); }
.btn-pill--onlight { background: #fff; color: #5a23d6; box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.btn-pill--onlight:hover { color: #5a23d6; }
.btn-pill--lg { padding: 16px 30px; font-size: 16px; }

/* ==========================================================================
   Nav
   ========================================================================== */
.ecom-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #0B0B0F; border-bottom: 1px solid rgba(255,255,255,.08); }
.ecom-nav__inner { max-width: var(--container-max); margin: 0 auto; padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; min-width: 0; }
.ecom-logo { display: flex; align-items: center; gap: 10px; }
.ecom-logo img { height: 30px; width: auto; }
.ecom-navlinks { display: flex; align-items: center; gap: 34px; flex-wrap: nowrap; white-space: nowrap; }
.ecom-navlinks a:not(.btn-pill) { color: #fff; font-weight: 600; font-size: 15px; transition: color .2s; }
.ecom-navlinks a:not(.btn-pill):hover { color: #7c4dff; }
.ecom-burger { display: none; background: none; border: none; cursor: pointer; color: #fff; padding: 11px; margin: -11px; }
.ecom-mobile { display: none; flex-direction: column; gap: 4px; padding: 8px 24px 20px; background: #0B0B0F; border-top: 1px solid rgba(255,255,255,.08); }
.ecom-mobile.is-open { display: flex; }
.ecom-mobile a:not(.btn-pill) { padding: 12px 8px; color: #fff; font-weight: 600; border-radius: 10px; }

@media (max-width: 1024px) {
  .ecom-navlinks { display: none; }
  .ecom-burger { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.ecom-hero { position: relative; padding: clamp(5rem, 14vw, 9.4rem) clamp(1.25rem, 4vw, 1.75rem) clamp(3rem, 7vw, 5.6rem); overflow: clip; background: var(--ecom-bg-tint); }
.ecom-hero--pitch { padding-bottom: clamp(2rem, 5vw, 3.75rem); }
.ecom-blob { position: absolute; border-radius: 50%; filter: blur(20px); pointer-events: none; animation: blobDrift 15s ease-in-out infinite; }
.ecom-blob--1 { top: -120px; left: -100px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(124,58,237,.28), transparent 68%); }
.ecom-blob--2 { top: 120px; right: -140px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(139,92,246,.22), transparent 68%); animation-direction: reverse; }
.ecom-blob--india { bottom: -160px; left: 20%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(124,58,237,.28), transparent 68%); filter: blur(30px); }
.ecom-blob--cta1 { top: -120px; left: -60px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 65%); }
.ecom-blob--cta2 { bottom: -160px; right: -40px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(0,0,0,.18), transparent 65%); }

.ecom-hero__grid { position: relative; max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; min-width: 0; }
@media (max-width: 900px) { .ecom-hero__grid { grid-template-columns: 1fr; } }

.ecom-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px; border-radius: 999px; background: rgba(109,52,232,.09); border: 1px solid rgba(109,52,232,.16); color: #5a23d6; font-weight: 700; font-size: 13px; letter-spacing: .02em; animation: revealUp .7s .05s var(--ease-out-expo) forwards; opacity: 0; }
.ecom-badge--onlight { background: rgba(255,255,255,.16); border: none; color: #fff; animation: none; opacity: 1; }
.ecom-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ecom-accent); box-shadow: 0 0 0 4px rgba(109,52,232,.18); }

.ecom-hero__headline { margin: 22px 0 0; font-size: clamp(40px, 5.4vw, 68px); line-height: 1.03; letter-spacing: -.035em; font-weight: 800; opacity: 0; animation: revealUp .8s .12s var(--ease-out-expo) forwards; overflow-wrap: break-word; }
.ecom-hero__subhead { margin: 26px 0 0; max-width: 520px; font-size: 19px; line-height: 1.6; color: var(--ecom-ink-soft); opacity: 0; animation: revealUp .8s .22s var(--ease-out-expo) forwards; }
.ecom-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; opacity: 0; animation: revealUp .8s .32s var(--ease-out-expo) forwards; }
.ecom-hero__stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; opacity: 0; animation: revealUp .8s .42s var(--ease-out-expo) forwards; }
.ecom-hero__divider { width: 1px; background: rgba(20,18,31,.1); }
.ecom-stat { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.ecom-stat--text { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.ecom-stat__label { color: var(--ecom-muted); font-size: 13.5px; font-weight: 600; margin-top: 2px; }

.ecom-hero__art { position: relative; opacity: 0; animation: fadeIn 1s .3s ease forwards; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.ecom-hero__glow { position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.18), transparent 66%); filter: blur(10px); animation: floatY 9s ease-in-out infinite; }
.ecom-hero__img { position: relative; width: 112%; max-width: 560px; height: auto; mix-blend-mode: multiply; animation: floatY 8s ease-in-out infinite; }
.ecom-hero__art--pitch { min-height: 420px; }
.ecom-pitch__shine { position: relative; z-index: 2; text-align: center; font-weight: 800; letter-spacing: -.04em; line-height: .94; font-size: clamp(40px, 5.5vw, 74px); }

.ecom-built-across { max-width: var(--container-max); margin: 64px auto 0; padding-top: 34px; border-top: 1px solid rgba(20,18,31,.07); display: flex; flex-wrap: wrap; align-items: center; gap: 14px 44px; opacity: .75; }
.ecom-built-across__label { font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--ecom-muted); }
.ecom-built-across span:not(.ecom-built-across__label) { font-weight: 700; color: #3a3550; }

/* ==========================================================================
   About / split panel
   ========================================================================== */
.ecom-split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; min-width: 0; }
@media (max-width: 860px) { .ecom-split { grid-template-columns: 1fr; } }
.ecom-panel { background: linear-gradient(180deg, #faf8ff, #f3efff); border: 1px solid rgba(109,52,232,.12); border-radius: 28px; padding: 46px; box-shadow: 0 30px 60px -30px rgba(91,33,232,.28); min-width: 0; }
.ecom-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.ecom-tag { padding: 9px 15px; border-radius: 999px; background: #fff; border: 1px solid rgba(109,52,232,.16); font-weight: 700; font-size: 13.5px; color: #5a23d6; }
.ecom-panel-art { position: relative; display: grid; place-items: center; min-height: 440px; }
.ecom-glow-circle { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.16), transparent 70%); animation: glowPulse 6s ease-in-out infinite; }
.ecom-panel-art__img { position: relative; width: 100%; max-width: 480px; height: auto; }

/* ==========================================================================
   What We Do cards
   ========================================================================== */
.ecom-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; min-width: 0; }
@media (max-width: 960px) { .ecom-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .ecom-cards { grid-template-columns: 1fr; } }
.ecom-card { background: #fff; border: 1px solid var(--ecom-border); border-radius: 24px; padding: 34px; position: relative; overflow: hidden; min-height: 250px; min-width: 0; transition: transform .35s var(--ease-out-expo), box-shadow .35s, border-color .35s; }
.ecom-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -24px rgba(91,33,232,.3); border-color: rgba(109,52,232,.2); }
.ecom-card__icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--ecom-accent), var(--ecom-accent-2)); display: grid; place-items: center; box-shadow: 0 12px 26px rgba(109,52,232,.3); }
.ecom-card__title { margin: 22px 0 0; font-size: 21px; font-weight: 800; letter-spacing: -.02em; position: relative; z-index: 2; max-width: 66%; }
.ecom-card__text { margin: 10px 0 0; color: var(--ecom-ink-soft); font-size: 15.5px; line-height: 1.6; position: relative; z-index: 2; max-width: 60%; }
.ecom-card__img { position: absolute; right: -6px; bottom: -6px; width: 184px; height: 168px; object-fit: contain; object-position: bottom right; pointer-events: none; z-index: 1; transition: transform .35s var(--ease-out-expo); }
.ecom-card:hover .ecom-card__img { transform: scale(1.05); }
@media (max-width: 560px) {
  .ecom-card { padding: 26px; min-height: 220px; }
  .ecom-card__title, .ecom-card__text { max-width: 100%; }
  .ecom-card__img { width: 110px; height: 100px; opacity: .8; }
}

/* ==========================================================================
   Growth Framework timeline
   ========================================================================== */
.ecom-timeline { position: relative; min-width: 0; }
.ecom-tl-track { position: absolute; left: 0; right: 0; top: 34px; height: 3px; background: rgba(109,52,232,.14); border-radius: 2px; }
.ecom-tl-fill { background: linear-gradient(90deg, var(--ecom-accent), #a855f7); width: 100%; }
.ecom-tl-grid { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; min-width: 0; }
@media (max-width: 900px) { .ecom-tl-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } .ecom-tl-track { display: none; } }
@media (max-width: 560px) { .ecom-tl-grid { grid-template-columns: 1fr; } }
.ecom-step { min-width: 0; }
.ecom-node { width: 70px; height: 70px; border-radius: 20px; background: #f4f1ff; border: 1px solid rgba(109,52,232,.14); display: grid; place-items: center; margin: 0 auto; }
.ecom-step__body { text-align: center; margin-top: 16px; }
.ecom-step__n { font-size: 12px; font-weight: 800; color: #a99fc7; }
.ecom-step__title { font-size: 17px; font-weight: 800; letter-spacing: -.02em; margin-top: 2px; }
.ecom-step__text { font-size: 13.5px; color: #6b6580; margin-top: 5px; line-height: 1.45; }

/* ==========================================================================
   Investment Focus mosaic
   ========================================================================== */
.ecom-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 236px; gap: 22px; min-width: 0; }
@media (max-width: 900px) { .ecom-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; } }
@media (max-width: 560px) { .ecom-mosaic { grid-template-columns: 1fr; } }
.fc-card { position: relative; display: block; overflow: hidden; border-radius: 26px; background: linear-gradient(158deg, #fff 54%, #f6f2ff); border: 1px solid var(--ecom-border); box-shadow: 0 18px 44px -30px rgba(91,33,232,.32); padding: 28px; color: var(--ecom-ink); text-decoration: none; transition: transform .45s var(--ease-out-expo), box-shadow .45s; min-width: 0; }
.fc-card:hover { transform: translateY(-4px); color: var(--ecom-ink); }
.fc-feature { grid-column: span 2; grid-row: span 2; padding: 34px; box-shadow: 0 22px 50px -34px rgba(91,33,232,.4); }
.fc-wide { grid-column: span 2; }
.fc-small { grid-column: span 1; }
@media (max-width: 900px) { .fc-feature, .fc-wide, .fc-small { grid-column: span 2; } .fc-feature { grid-row: span 2; } }
@media (max-width: 560px) { .fc-feature, .fc-wide, .fc-small { grid-column: span 1; grid-row: span 1; } }
.fc-glow { position: absolute; right: -2%; top: 6%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.2), transparent 66%); }
.fc-icon { position: relative; z-index: 2; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: #f4f0ff; }
.fc-icon i { width: 22px; height: 22px; color: var(--ecom-accent); }
.fc-arrow { position: absolute; z-index: 3; top: 28px; right: 28px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(109,52,232,.2); background: #fff; display: grid; place-items: center; }
.fc-arrow i { width: 18px; height: 18px; color: var(--ecom-accent); }
.fc-text { position: absolute; z-index: 2; left: 28px; bottom: 26px; max-width: 60%; }
.fc-text h3 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.fc-feature .fc-text h3 { font-size: 30px; }
.fc-text p { margin: 9px 0 0; font-size: 14.5px; line-height: 1.5; color: var(--ecom-ink-soft); }
@media (max-width: 560px) {
  .fc-text { max-width: 78%; left: 22px; right: 22px; bottom: 20px; }
  .fc-img { max-width: 34%; opacity: .85; }
}
.fc-img { position: absolute; z-index: 1; right: 3%; top: 50%; transform: translateY(-50%); height: 90%; width: auto; max-width: 45%; object-fit: contain; filter: drop-shadow(0 18px 26px rgba(91,33,232,.16)); }

/* ==========================================================================
   Why India
   ========================================================================== */
.ecom-india { position: relative; padding: clamp(3.5rem, 9vw, 7.5rem) clamp(1.25rem, 4vw, 1.75rem); background: var(--ecom-dark); color: #fff; overflow: clip; }
.ecom-map { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); height: 112%; width: auto; object-fit: contain; object-position: right; opacity: .9; pointer-events: none; }
@media (max-width: 820px) { .ecom-map { opacity: .14; height: 70%; } }
.ecom-india__head { position: relative; max-width: 620px; min-width: 0; }
.ecom-metrics { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; max-width: 900px; min-width: 0; }
@media (max-width: 820px) { .ecom-metrics { grid-template-columns: repeat(2, 1fr); } }
.ecom-metric { background: rgba(255,255,255,.04); border: 1px solid rgba(183,148,255,.18); border-radius: 20px; padding: 26px; min-width: 0; }
.ecom-metric__icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(124,58,237,.2); display: grid; place-items: center; }
.ecom-metric__icon i { width: 22px; height: 22px; color: #c4a8ff; }
.ecom-metric .ecom-stat { font-size: 34px; margin-top: 18px; }
.ecom-metric__rule { height: 2px; width: 28px; background: var(--ecom-accent); margin: 8px 0; border-radius: 2px; }
.ecom-metric__label { color: #b9b3cf; font-size: 14px; font-weight: 600; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.ecom-cta { position: relative; max-width: 1160px; margin: 0 auto; border-radius: clamp(20px, 4vw, 36px); overflow: clip; background: linear-gradient(135deg, #6d28d9, #7c3aed 45%, #9333ea); padding: clamp(2.75rem, 8vw, 5rem) clamp(1.5rem, 5vw, 2.5rem); text-align: center; box-shadow: 0 40px 90px -30px rgba(109,52,232,.6); }
.ecom-cta__inner { position: relative; }
.ecom-cta__headline { margin: 22px auto 0; max-width: 760px; color: #fff; font-size: clamp(32px, 4.6vw, 56px); letter-spacing: -.03em; font-weight: 800; line-height: 1.06; overflow-wrap: break-word; }
.ecom-cta__text { margin: 20px auto 0; max-width: 600px; color: rgba(255,255,255,.86); font-size: 18px; line-height: 1.6; }
.ecom-cta .btn-pill { margin-top: 36px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.ecom-footer { background: var(--ecom-dark); color: #fff; padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 1.75rem) 2.1rem; }
.ecom-footer__inner { max-width: var(--container-max); margin: 0 auto; }
.ecom-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; min-width: 0; }
@media (max-width: 860px) { .ecom-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ecom-footer__grid { grid-template-columns: 1fr; } }
.ecom-footer__blurb { margin: 18px 0 0; max-width: 340px; color: #a49dbe; font-size: 15px; line-height: 1.6; }
.ecom-newsletter { margin-top: 22px; }
.ecom-newsletter__label { font-weight: 700; font-size: 15px; }
.ecom-newsletter__form { display: flex; gap: 8px; margin-top: 12px; max-width: 360px; min-width: 0; }
.ecom-newsletter__form input { flex: 1; min-width: 0; padding: 13px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; font-family: inherit; font-size: 14.5px; outline: none; }
.ecom-newsletter__msg { height: 0; overflow: hidden; color: #8ef0c0; font-size: 13.5px; font-weight: 600; transition: height .3s; margin-top: 0; }
.ecom-newsletter__msg.is-visible { height: 20px; margin-top: 8px; }
.ecom-footer__heading { font-weight: 800; font-size: 14px; letter-spacing: .04em; color: #fff; }
.ecom-footer__links { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.ecom-footer__links a { color: #a49dbe; font-size: 15px; }
.ecom-footer__contact { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; color: #a49dbe; font-size: 15px; line-height: 1.5; }
.ecom-footer__email { color: #c4a8ff; }
.ecom-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.ecom-footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; color: #c4a8ff; }
.ecom-footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: #7a7392; font-size: 13.5px; }
.ecom-footer__legal { display: flex; gap: 22px; }
.ecom-footer__legal a { color: #7a7392; }

/* ==========================================================================
   Pitch Your Brand page
   ========================================================================== */
.ecom-pitch__trust { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.ecom-pitch__trust div { display: flex; align-items: center; gap: 10px; color: #54506a; font-weight: 600; font-size: 14.5px; }

.ecom-pitch__trust { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.ecom-pitch__trust div { display: flex; align-items: center; gap: 10px; color: #54506a; font-weight: 600; font-size: 14.5px; }
.ecom-pstep { position: relative; display: flex; gap: 22px; padding: 16px 0; }
.ecom-pstep__icon { width: 56px; height: 56px; flex: none; border-radius: 16px; background: linear-gradient(135deg, var(--ecom-accent), var(--ecom-accent-2)); display: grid; place-items: center; box-shadow: 0 12px 26px rgba(109,52,232,.3); z-index: 1; }

.ecom-form-card { background: #fff; border: 1px solid var(--ecom-border); border-radius: 28px; box-shadow: 0 30px 60px -30px rgba(91,33,232,.2); padding: 28px 34px 34px; min-width: 0; }
.ecom-form { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.ecom-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; min-width: 0; }
@media (max-width: 620px) { .ecom-form__row { grid-template-columns: 1fr; } }
.ecom-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ecom-field label { font-weight: 700; font-size: 13px; color: #2a2740; }
.ecom-field input, .ecom-field select, .ecom-field textarea {
  width: 100%; padding: 13px 15px; border-radius: 13px; border: 1px solid rgba(20,18,31,.12);
  background: #fff; font-size: 15px; color: var(--ecom-ink); outline: none; font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.ecom-field input:focus, .ecom-field select:focus, .ecom-field textarea:focus { border-color: var(--ecom-accent); box-shadow: 0 0 0 3px rgba(124,58,237,.12); }
.ecom-field textarea { resize: vertical; line-height: 1.55; }
.ecom-field__err { display: none; font-size: 12.5px; font-weight: 600; color: #ef4444; }
.ecom-field__err.is-visible { display: block; }
.ecom-phone-row { display: flex; gap: 8px; min-width: 0; }
.ecom-ccode { width: 88px; flex: 0 0 88px; min-width: 0; padding-left: 10px; padding-right: 26px; }
.ecom-phone-row input[name="phone"] { flex: 1 1 auto; min-width: 0; }
.ecom-dropzone { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 28px 18px; border: 1.5px dashed rgba(109,52,232,.3); border-radius: 14px; cursor: pointer; font-size: 14px; color: var(--ecom-ink-soft); transition: border-color .2s, background .2s; text-align: center; }
.ecom-dropzone:hover, .ecom-dropzone.is-dragover { border-color: var(--ecom-accent); background: rgba(124,58,237,.04); }
.ecom-dropzone__sub { font-size: 13px; color: #928bab; }
.ecom-dropzone__sub.is-error { color: #ef4444; }
.ecom-consent { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-size: 14.5px; color: #4a4560; line-height: 1.5; }
.ecom-consent input { width: 20px; height: 20px; flex: none; margin-top: 1px; accent-color: var(--ecom-accent); cursor: pointer; }
.ecom-form__submit { align-self: flex-start; margin-top: 8px; }
.ecom-form__status { font-size: 14px; margin: 0; }

.p-hero-grid { min-width: 0; }
.p-hero-art { position: relative; min-height: 460px; opacity: 0; animation: fadeIn 1s .3s ease forwards; display: flex; align-items: center; justify-content: center; }
@media (max-width: 900px) { .p-hero-art { min-height: 320px; } }
.p-hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 78%; height: 70%; border-radius: 50%; background: radial-gradient(circle, rgba(124,77,255,.22), transparent 66%); filter: blur(30px); animation: glowPulse 7s ease-in-out infinite; pointer-events: none; }
.p-hero-glow--2 { bottom: 2%; left: 8%; top: auto; transform: none; width: 78%; height: 120px; background: radial-gradient(ellipse, rgba(124,77,255,.14), transparent 70%); filter: blur(14px); animation: glowPulse 9s ease-in-out .5s infinite; }
.ecom-pitch__shine { position: relative; z-index: 2; text-align: center; font-weight: 800; letter-spacing: -.04em; line-height: .94; font-size: clamp(38px, 5.2vw, 68px); }

.p-float { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.p-float--1 { top: 6%; left: 2%; background: linear-gradient(135deg,#7c3aed,#5b21e8); color: #fff; box-shadow: 0 16px 34px rgba(91,33,232,.32); transform: rotate(-3deg); animation: floatY 6s ease-in-out infinite; }
.p-float--2 { top: 12%; right: 0; background: rgba(124,77,255,.12); border: 1px solid rgba(124,77,255,.22); color: #4a2bcf; box-shadow: 0 12px 30px rgba(91,33,232,.14); transform: rotate(2.5deg); animation: floatY2 7s ease-in-out .4s infinite; }
.p-float--3 { top: 44%; left: -2%; background: #fff; border: 1px solid rgba(20,18,31,.08); color: #14121f; box-shadow: 0 16px 40px rgba(20,18,31,.1); transform: rotate(-2deg); animation: floatY 8s ease-in-out .8s infinite; }
.p-float--3 i { color: #6d34e8; }
.p-float--4 { bottom: 18%; left: 8%; background: #fff; border: 1px solid rgba(20,18,31,.08); color: #14121f; box-shadow: 0 16px 40px rgba(20,18,31,.1); transform: rotate(2deg); animation: floatY2 6.5s ease-in-out 1.1s infinite; }
.p-float--4 i { color: #6d34e8; }
.p-float--5 { bottom: 8%; right: 4%; background: linear-gradient(135deg,#7c3aed,#5b21e8); color: #fff; box-shadow: 0 16px 34px rgba(91,33,232,.32); transform: rotate(-2.5deg); animation: floatY 7.5s ease-in-out .6s infinite; }
@media (max-width: 900px) { .p-float { display: none; } }

.p-twinkle { position: absolute; z-index: 4; color: #7c4dff; width: 20px; height: 20px; }
.p-twinkle--1 { top: 20%; left: 44%; animation: twinkle 3.4s ease-in-out infinite; }
.p-twinkle--2 { top: 38%; right: 14%; width: 16px; height: 16px; color: #a855f7; animation: twinkle 2.8s ease-in-out .6s infinite; }
.p-twinkle--3 { bottom: 32%; left: 30%; width: 14px; height: 14px; animation: twinkle 3.8s ease-in-out 1.2s infinite; }
@media (max-width: 900px) { .p-twinkle { display: none; } }

/* What You Get cards */
.p-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; min-width: 0; }
@media (max-width: 900px) { .p-why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .p-why { grid-template-columns: 1fr; } }
.p-wcard { background: #faf9ff; border: 1px solid rgba(20,18,31,.07); border-radius: 22px; padding: 28px; transition: transform .35s var(--ease-out-expo), box-shadow .35s, border-color .35s; min-width: 0; }
.p-wcard:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -26px rgba(91,33,232,.3); }
.p-wcard__icon { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, var(--ecom-accent), var(--ecom-accent-2)); display: grid; place-items: center; box-shadow: 0 10px 22px rgba(109,52,232,.3); }
.p-wcard h3 { margin: 18px 0 0; font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.p-wcard p { margin: 8px 0 0; color: #5b5670; font-size: 14.5px; line-height: 1.55; }
.p-wcard--highlight { background: linear-gradient(135deg,#6d28d9,#7c3aed); border-color: transparent; color: #fff; }
.p-wcard--highlight p { color: rgba(255,255,255,.85); }
.p-wcard--highlight .p-wcard__icon { background: rgba(255,255,255,.18); }

/* Who should apply */
.p-who { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; min-width: 0; }
@media (max-width: 860px) { .p-who { grid-template-columns: 1fr; } }
.p-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-width: 0; }
@media (max-width: 480px) { .p-who-grid { grid-template-columns: 1fr; } }
.p-who-item { display: flex; align-items: center; gap: 14px; padding: 20px; background: #fff; border: 1px solid rgba(20,18,31,.08); border-radius: 18px; min-width: 0; }
.p-who-item--wide { grid-column: span 2; }
@media (max-width: 480px) { .p-who-item--wide { grid-column: span 1; } }
.p-who-item span:first-child { width: 44px; height: 44px; flex: none; border-radius: 12px; background: #f1ecff; display: grid; place-items: center; }
.p-who-item span:last-child { font-weight: 700; font-size: 15.5px; }

/* Process timeline (vertical) */
.p-steps { position: relative; min-width: 0; }
.p-vline { position: absolute; left: 27px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(180deg, var(--ecom-accent), rgba(124,58,237,.15)); }
@media (max-width: 560px) { .p-vline { display: none; } }

/* FAQ accordion */
.p-faq { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.p-faq-item { border: 1px solid rgba(20,18,31,.1); border-radius: 18px; overflow: hidden; background: #fff; transition: box-shadow .3s, border-color .3s; }
.p-faq-item.is-open { border-color: rgba(109,52,232,.3); box-shadow: 0 16px 34px -24px rgba(91,33,232,.3); }
.p-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; font-weight: 700; font-size: 17px; color: var(--ecom-ink); }
.p-faq-ico { width: 22px; height: 22px; color: var(--ecom-accent); flex: none; transition: transform .3s; }
.p-faq-item.is-open .p-faq-ico { transform: rotate(45deg); }
.p-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.p-faq-a p { margin: 0; padding: 0 24px 22px; color: #5b5670; font-size: 15.5px; line-height: 1.6; }

.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
