/* ============================================================
   VELONOVA — style.css
   Brand: #fda1a2 coral | #474787 purple-mid | #2c2c54 purple-deep | #222222 dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');

/* ── Google Sans (local) ─────────────────────────────────── */
@font-face { font-family: 'Google Sans'; src: url('fonts/GoogleSans-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Google Sans'; src: url('fonts/GoogleSans-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Google Sans'; src: url('fonts/GoogleSans-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Google Sans'; src: url('fonts/GoogleSans-MediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Google Sans'; src: url('fonts/GoogleSans-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Google Sans'; src: url('fonts/GoogleSans-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --purple-deep:    #2c2c54;
  --purple-mid:     #474787;
  --purple-dark:    #1a1a3e;
  --coral:          #fda1a2;
  --coral-dark:     #f87070;
  --dark:           #222222;
  --white:          #ffffff;
  --gray-soft:      #f8f8fb;
  --lavender-pale:  #f0f0fa;
  --coral-pale:     #fff5f5;
  --text-muted:     #64648a;
  --border:         #e4e4f0;

  --gradient-hero:   linear-gradient(145deg, #1a1a3e 0%, #2c2c54 55%, #3e3e72 100%);
  --gradient-purple: linear-gradient(135deg, #474787 0%, #2c2c54 100%);
  --gradient-coral:  linear-gradient(135deg, #fda1a2 0%, #f87070 100%);
  --gradient-accent: linear-gradient(135deg, #2c2c54 0%, #fda1a2 100%);

  --shadow-sm:  0 1px 3px rgba(44,44,84,.08);
  --shadow-md:  0 4px 16px rgba(44,44,84,.12);
  --shadow-lg:  0 12px 40px rgba(44,44,84,.16);
  --shadow-xl:  0 24px 64px rgba(44,44,84,.20);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --nav-h: 72px;
  --max-w: 1180px;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Google Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-family: 'Noto Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.eyebrow-purple { color: var(--purple-mid); }

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 50px 0; }
.section-sm { padding: 40px 0; }
.bg-gray    { background: var(--gray-soft); }
.bg-lavender { background: var(--lavender-pale); }
.bg-dark    { background: var(--purple-dark); color: var(--white); }
.bg-dark p  { color: rgba(255,255,255,.65); }

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

.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 32px; }
.mb-64 { margin-bottom: 40px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Google Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient-coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(253,161,162,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(253,161,162,.45);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border: 1.5px solid var(--border);
  color: var(--purple-deep);
}
.btn-outline-dark:hover {
  border-color: var(--purple-mid);
  background: var(--lavender-pale);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* arrow icon inside button */
.arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow,
.read-link:hover .arrow,
.blog-card:hover .arrow { transform: translateX(6px); }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: 'Google Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  transition: color .3s;
}
.nav.scrolled .nav-logo { color: var(--dark); }
.logo-spark {
  flex-shrink: 0;
  margin-left: 1px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Google Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width .25s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--purple-deep); }

.nav-cta .btn-primary { padding: 10px 22px; font-size: .85rem; }
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav.scrolled .nav-menu-btn span { background: var(--dark); }

/* mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--purple-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  opacity: .8;
  transition: opacity .2s, color .2s;
}
.nav-mobile a:hover { opacity: 1; color: var(--coral); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(253,161,162,.12) 0%, transparent 55%),
                    radial-gradient(circle at 80% 20%, rgba(71,71,135,.4) 0%, transparent 50%),
                    radial-gradient(circle at 60% 80%, rgba(44,44,84,.6) 0%, transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253,161,162,.15);
  border: 1px solid rgba(253,161,162,.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--coral);
  margin-bottom: 28px;
  font-family: 'Google Sans', sans-serif;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3.8rem);
}
.hero h1 .highlight {
  display: inline;
}
.hero h1 .highlight > span,
.hero h1 .highlight {
  background: var(--gradient-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: .1em;
  animation: bounce 2.5s infinite;
}
.hero-scroll .scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust strip ────────────────────────────────────────── */
.trust-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.trust-label {
  font-size: .78rem;
  font-weight: 500;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-logo-item {
  font-family: 'Google Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--border);
  opacity: .7;
  transition: opacity .2s, color .2s;
  white-space: nowrap;
}
.trust-logo-item:hover { opacity: 1; color: var(--text-muted); }

/* ── Section Headers ────────────────────────────────────── */
.section-header { max-width: 680px; }
.section-header.center { margin: 0 auto; text-align: center; max-width: 860px; }
.section-header h2 { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 900px) {
  .section-header h2 { white-space: normal; }
  .section-header.center { max-width: 100%; }
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; }
.eyebrow { margin-bottom: 10px; }
.mt-16 { margin-top: 12px; }

/* ── Who I Help ─────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.who-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.who-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all .25s var(--ease-out);
}
.who-item:hover {
  border-color: rgba(71,71,135,.2);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.who-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--lavender-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.who-item p {
  font-size: .95rem;
  color: var(--dark);
  font-weight: 500;
  margin: 0;
}
.who-visual {
  position: relative;
}
.who-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  transition: all .3s var(--ease-out);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-card-primary {
  background: var(--gradient-purple);
  border-color: transparent;
  color: var(--white);
}
.stat-card-primary p { color: rgba(255,255,255,.7); }
.stat-num {
  font-family: 'Google Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card-primary .stat-num { color: var(--coral); }
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-card-primary .stat-label { color: rgba(255,255,255,.65); }

/* ── Services ───────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(71,71,135,.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-icon-1 { background: #f0f0fa; }
.service-icon-2 { background: #fff5f5; }
.service-icon-3 { background: #f0faf5; }
.service-icon-4 { background: #faf0ff; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--purple-deep); }
.service-card p { font-size: .92rem; line-height: 1.7; }
.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
  color: var(--purple-mid);
  background: var(--lavender-pale);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ── Process ─────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0;
  position: relative;
  margin-top: 40px;
  align-items: start;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 4px);
  right: calc(16.66% + 4px);
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--purple-mid), var(--border));
}
.process-step { text-align: center; padding: 0 24px; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--purple-mid);
  font-family: 'Google Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all .3s var(--ease-spring);
}
.process-step:hover .step-number {
  background: var(--gradient-purple);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.1);
}
.process-step h3 { margin-bottom: 12px; color: var(--purple-deep); }
.process-step p { font-size: .92rem; max-width: 320px; margin: 0 auto; }
.process-connector { width: 100%; height: 2px; background: linear-gradient(90deg, rgba(240,112,96,0.4), rgba(127,119,221,0.4)); align-self: center; transform: scaleX(0); transition: transform 1.2s cubic-bezier(0.16,1,0.3,1); }
.process-connector.drawn { transform: scaleX(1); }

/* ── Why It Works ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all .25s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(71,71,135,.2);
}
.why-num {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--purple-deep); }
.why-card p { font-size: .9rem; }

#who .mt-16 { padding-bottom: 10px; }

.section-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.7; }

/* ── Studio Section ──────────────────────────────────────── */
.studio {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.studio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 30%, rgba(253,161,162,.12) 0%, transparent 50%),
                    radial-gradient(circle at 15% 70%, rgba(71,71,135,.3) 0%, transparent 50%);
  pointer-events: none;
}
.studio-inner {
  position: relative;
  z-index: 1;
}
.studio-header {
  max-width: 600px;
  margin-bottom: 40px;
}
/* Eyebrow + New badge row */
.studio-header > .eyebrow,
.studio-header > .new-badge {
  display: inline-flex;
  vertical-align: middle;
}
.studio-header > .eyebrow { margin-right: 8px; }
.studio-header h2 { color: var(--white); }
.studio-header p { color: rgba(255,255,255,.65); font-size: 1.05rem; }
.studio-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.studio-role-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .3s var(--ease-out);
  backdrop-filter: blur(8px);
}
.studio-role-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(253,161,162,.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
}
.role-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(253,161,162,.15);
  border: 1px solid rgba(253,161,162,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.studio-role-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.role-title {
  font-family: 'Google Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.studio-role-card p { color: rgba(255,255,255,.55); font-size: .9rem; }
.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.role-tag {
  font-size: .72rem;
  font-weight: 500;
  font-family: 'Google Sans', sans-serif;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 3px 10px;
  color: rgba(255,255,255,.65);
}
.studio-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.studio-phase {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}
.studio-phase:last-child { border-right: none; }
.studio-phase:hover { background: rgba(255,255,255,.04); }
.phase-num {
  font-family: 'Google Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--coral);
  opacity: .7;
  margin-bottom: 8px;
}
.studio-phase h4 { color: var(--white); font-size: .95rem; margin-bottom: 6px; }
.studio-phase p { font-size: .82rem; color: rgba(255,255,255,.45); }
.studio-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.studio-cta p { color: rgba(255,255,255,.55); font-size: .95rem; }

/* ── Wins ────────────────────────────────────────────────── */
.wins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.win-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.win-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-coral);
}
.win-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.win-metric {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral-dark);
  margin-bottom: 8px;
  line-height: 1;
}
.win-card h4 { color: var(--purple-deep); margin-bottom: 8px; font-size: .95rem; }
.win-card p { font-size: .85rem; line-height: 1.6; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
/* Testimonial author logo (replaces initials avatar) */
.author-logo {
  width: 42px; height: 42px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.author-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 5px;
  display: block;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px; left: 16px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(240,112,96,0.12);
  line-height: 1;
  pointer-events: none;
}
.testimonial-text {
  font-size: .93rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 24px;
  padding-top: 20px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: .85rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .92rem; color: var(--purple-deep); }
.author-role { font-size: .8rem; color: var(--text-muted); }

/* ── About ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: var(--gradient-purple);
  overflow: hidden;
  position: relative;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  position: relative;
  z-index: 1;
}
.about-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Google Sans', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  z-index: 0;
}
.about-float-card {
  position: absolute;
  bottom: -46px;
  right: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.about-float-card .num {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-deep);
}
.about-float-card .label { font-size: .75rem; color: var(--text-muted); }
.about-content h2 { margin-bottom: 20px; }
.about-content > p { font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.tools-section { margin-top: 32px; }
.tools-label {
  font-family: 'Google Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tool-tag {
  font-size: .8rem;
  font-weight: 500;
  font-family: 'Google Sans', sans-serif;
  background: var(--lavender-pale);
  color: var(--purple-mid);
  border-radius: 100px;
  padding: 5px 14px;
  transition: all .2s;
}
.tool-tag:hover {
  background: var(--purple-mid);
  color: var(--white);
}

/* ── Blog Preview ────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(71,71,135,.15);
}
.blog-card-img {
  height: 180px;
  background: var(--gradient-purple);
  position: relative;
  overflow: hidden;
}
.blog-card-img.alt1 { background: linear-gradient(135deg, #2c2c54 0%, #fda1a2 100%); }
.blog-card-img.alt2 { background: linear-gradient(135deg, #474787 0%, #2c2c54 100%); }
.blog-card-img.alt3 { background: linear-gradient(135deg, #1a1a3e 0%, #474787 100%); }
.blog-vol {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Google Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.25);
  border-radius: 100px;
  padding: 4px 10px;
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-tag {
  font-size: .72rem;
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--purple-mid);
}
.blog-date { font-size: .78rem; color: var(--text-muted); }
.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--purple-deep);
  line-height: 1.4;
}
.blog-card p { font-size: .88rem; flex: 1; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.read-time { font-size: .78rem; color: var(--text-muted); }
.read-link {
  font-size: .82rem;
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
  color: var(--purple-mid);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.read-link:hover { gap: 8px; color: var(--purple-deep); }
.blog-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Final CTA ───────────────────────────────────────────── */
.final-cta {
  background: var(--gradient-purple);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 72px 0;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(253,161,162,.15) 0%, transparent 60%);
}
.final-cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 500px; margin: 0 auto 36px; }
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--purple-dark);
  color: var(--white);
  padding: 80px 0 36px;
}
.footer-compact {
  padding: 32px 0 20px;
}
.footer-row-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo-compact {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: 'Google Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.footer-links-compact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links-compact a {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links-compact a:hover { color: var(--coral); }
.footer-social-compact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.footer-social-compact a {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-social-compact a:hover { color: var(--coral); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  text-align: center;
  padding-top: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 12px;
}
.footer-legal a {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--coral); }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--coral); }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Section Break Divider ───────────────────────────────── */
.section-break {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240,112,96,0.4), rgba(127,119,221,0.4), transparent);
  margin: 0;
}

/* ── Service Card Hover Depth ───────────────────────────── */
.service-card {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}

/* ── Process Step Number Glow ───────────────────────────── */
.step-number {
  transition: all .3s var(--ease-spring), -webkit-text-stroke 0.3s ease;
}

/* ── Sprint Price Pop ───────────────────────────────────── */
.sprint-price {
  transition: transform 0.25s ease;
}
.sprint-card:hover .sprint-price {
  transform: scale(1.08);
}

/* ── Blog Read Link Underline Animation ─────────────────── */
.read-link {
  position: relative;
}
.read-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s ease;
}
.blog-card:hover .read-link::after {
  width: 100%;
}

/* ── About Photo Parallax Tilt ──────────────────────────── */
.about-photo {
  transition: transform 0.1s ease-out;
}

/* ── Coffee with Tanya ──────────────────────────────────── */
.coffee-section {
  background: var(--gray-soft);
}
.coffee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.coffee-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .3s var(--ease-out);
  text-decoration: none;
}
.coffee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(253,161,162,.4);
}
.coffee-card-num {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
  background: rgba(253,161,162,.1);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.coffee-card-body h3 {
  font-size: 1rem;
  color: var(--purple-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}
.coffee-card-body p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.coffee-date {
  display: inline-block;
  margin-top: 12px;
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
  color: var(--text-muted);
  opacity: .7;
}
@media (max-width: 768px) {
  .coffee-grid { grid-template-columns: 1fr; }
}

/* ── Responsive Visibility ───────────────────────────────── */
.mobile-only { display: none; }
@media (max-width: 390px) {
  .desktop-only { display: none; }
  .mobile-only { display: inline; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .wins-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-phases { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { aspect-ratio: 16/9; max-height: 400px; margin-top: -20px; }
  .about-photo img { object-position: center -40px !important; }
  .about-float-card { bottom: auto !important; top: -20px; right: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 44px 0; }
  .grid-2, .grid-3, .who-grid, .why-grid { grid-template-columns: 1fr; }
  .studio-team { grid-template-columns: 1fr; }
  .studio-phases { grid-template-columns: 1fr; }
  /* process-grid moved to 540px below */
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .nav-mobile { display: flex; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .wins-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
  .hero .container { padding: 0 16px; }
  .why-card { padding: 24px 20px; gap: 14px; }
  .why-num { font-size: 1.3rem; width: 28px; }
  .tools-icons-grid { flex-wrap: nowrap !important; gap: 8px !important; }
  .tool-icon-item img { width: 24px !important; height: 24px !important; }
  .tool-icon-monday img { width: 32px !important; height: 32px !important; }
}

@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .process-connector { display: none; }
}

@media (max-width: 480px) {
  .wins-grid { grid-template-columns: 1fr; }
  .trust-logos { justify-content: center; }
}

/* ── Contact Modal ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,62,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(24px);
  transition: transform .35s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-soft);
  color: var(--text-muted);
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: var(--border); color: var(--dark); }
.modal-header { margin-bottom: 28px; }
.modal-header h3 { font-size: 1.4rem; color: var(--purple-deep); margin-bottom: 6px; }
.modal-header p  { font-size: .9rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'Google Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Google Sans', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--border); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(71,71,135,.1);
}
.form-success {
  text-align: center;
  padding: 32px 0;
}
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c2c54, #fda1a2);
  color: white;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h4 { color: var(--purple-deep); margin-bottom: 8px; }
.form-success p  { font-size: .9rem; }

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 28px 20px; }
}

/* ── Scroll Progress Line ────────────────────────────────── */
.scroll-line#scrollLine {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #f07060, #7f77dd);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Word-by-word Hero Reveal ────────────────────────────── */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-reveal {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.word-reveal.in {
  transform: translateY(0);
  opacity: 1;
}

/* ── Magnetic Ambient Word ───────────────────────────────── */
.hero-ambient-word {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  user-select: none;
}

/* ── Section Header Char Animation ───────────────────────── */
.char-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.char-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero Canvas ─────────────────────────────────────────── */
/* ── Hero Gradient Blobs ─────────────────────────────────── */
.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat var(--dur, 7s) ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: rgba(240,112,96,0.35); top: -100px; left: -80px; --dur: 8s; }
.blob-2 { width: 600px; height: 600px; background: rgba(83,74,183,0.28); top: -150px; left: 35%; --dur: 11s; animation-delay: -3s; }
.blob-3 { width: 400px; height: 400px; background: rgba(29,158,117,0.22); bottom: -80px; right: -60px; --dur: 9s; animation-delay: -5s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.06); }
  66% { transform: translate(-15px, 15px) scale(0.96); }
}

.hero { position: relative; overflow: hidden; }
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero .hero-scroll { position: relative; z-index: 2; }

/* ── Who Single Column ───────────────────────────────────── */
.who-single { grid-template-columns: 1fr; max-width: 680px; }

/* ── Studio Highlight ────────────────────────────────────── */
.studio-eyebrow-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  letter-spacing: .12em;
}
/* Shimmer on the whole eyebrow text */
.studio-eyebrow-highlight {
  background: linear-gradient(90deg,
    var(--purple-mid) 0%,
    #fda1a2 30%,
    var(--purple-mid) 60%,
    #fda1a2 80%,
    var(--purple-mid) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: eyebrowShimmer 3.5s linear infinite;
}
@keyframes eyebrowShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}
/* "· New" pill badge */
.new-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: linear-gradient(135deg, #fda1a2 0%, #474787 100%);
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  -webkit-text-fill-color: white;
  color: white;
  box-shadow: 0 0 12px rgba(253,161,162,.5);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 10px rgba(253,161,162,.4); }
  50%       { box-shadow: 0 0 22px rgba(253,161,162,.9), 0 0 8px rgba(71,71,135,.5); }
}

.studio-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.studio-label-row .eyebrow { margin-bottom: 0; }

/* ── Sprint Packages ─────────────────────────────────────── */
.sprints-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 0;
}
.sprint-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.sprint-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44,44,84,.10);
  border-color: rgba(253,161,162,.5);
}
.sprint-card-featured {
  border-color: #fda1a2;
  background: linear-gradient(145deg, #fff 60%, rgba(253,161,162,.06));
}
.sprint-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sprint-icon { font-size: 2rem; }
.sprint-price {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-deep);
}
.sprint-card h3 {
  font-size: 1.15rem;
  color: var(--purple-deep);
  margin: 0;
}
.sprint-desc {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.sprint-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sprint-list li {
  font-size: .875rem;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
}
.sprint-list li::before {
  content: '\2713 ';
  position: absolute;
  left: 0;
  color: #fda1a2;
  font-weight: 700;
}
.sprint-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.sprint-tag {
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.btn-sm {
  padding: 8px 16px;
  font-size: .8rem;
}
.sprints-note {
  text-align: center;
  margin-top: 40px;
  font-size: .9rem;
  color: var(--text-muted);
}
.sprints-note a {
  color: var(--purple-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .sprints-grid { grid-template-columns: 1fr; }
}

/* ── AI Stack Section (reuses .studio styles) ────────────── */
.ai-stack-section .studio-team {
  grid-template-columns: repeat(3, 1fr);
}
.ai-stack-section .role-icon {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
.ai-stack-section .role-icon img {
  display: block;
}
.midjourney-logo {
  border-radius: 5px;
}
@media (max-width: 768px) {
  .ai-stack-section .studio-team { grid-template-columns: 1fr; }
}

/* ── Tool Icon Grid (About) ──────────────────────────────── */
.tools-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.tool-icon-item {
  position: relative;
  cursor: default;
}
.tool-icon-item img {
  width: 28px; height: 28px;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
  opacity: .85;
}
.tool-icon-item:hover img {
  transform: translateY(-3px) scale(1.1);
  opacity: 1;
}
.tool-icon-item::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  font-size: .7rem;
  font-family: 'Google Sans', sans-serif;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  z-index: 10;
}
.tool-icon-item:hover::after { opacity: 1; }
.tool-icon-monday img { width: 36px !important; height: 36px !important; }

/* ── Modal Required Field Indicator ─────────────────────── */
.req { color: #fda1a2; font-weight: 700; margin-left: 2px; }
.form-note { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ── Footer Legal — see .footer-bottom block ──────────── */

/* ── Global Polish & Transitions ─────────────────────────── */

/* Smooth link color transitions */
a { transition: color .2s ease, opacity .2s ease; }

/* Button micro-interactions */
.btn {
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(253,161,162,.35);
}
.btn-outline:hover, .btn-outline-dark:hover {
  box-shadow: 0 6px 18px rgba(71,71,135,.15);
}

/* Card hover polish */
.service-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(44,44,84,.10);
  border-color: rgba(253,161,162,.4);
}

.why-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(44,44,84,.08);
}

.studio-role-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.studio-role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.15);
}

.testimonial-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(44,44,84,.09);
}

/* Step number smooth pulse on hover */
.process-step {
  transition: transform .25s ease;
}
.process-step:hover {
  transform: translateY(-4px);
}

/* Nav link underline animation */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: #fda1a2;
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Smooth scroll reveal */
.reveal {
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}

/* Section background transitions */
section { transition: background .3s ease; }

/* Footer link hover — handled in .footer-nav-col a above */

/* Author logo subtle scale */
.author-logo {
  transition: transform .2s ease;
}
.testimonial-card:hover .author-logo {
  transform: scale(1.08);
}

/* Blog card image zoom */
.blog-card-img {
  overflow: hidden;
}
.blog-card-img img {
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

/* Eyebrow tag subtle glow on section hover */
.eyebrow {
  transition: letter-spacing .3s ease;
}

/* Sprint card button */
.sprint-footer .btn {
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.sprint-footer .btn:hover {
  background: var(--purple-deep);
  color: white;
  border-color: var(--purple-deep);
  transform: translateX(2px);
}


/* Smooth image load */
img {
  transition: opacity .3s ease;
}

/* Hero heading letter-spacing on load */
.hero h1 {
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) both;
}
.hero-sub {
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .15s both;
}
.hero-actions {
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .28s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Marquee / Ticker ────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 6px 0;
}
.marquee-row-1 { animation: marqueeScroll 35s linear infinite; }
.marquee-row-2 { animation: marqueeScroll 40s linear infinite reverse; margin-top: 12px; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-pill {
  flex-shrink: 0;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  transition: border-color .2s, box-shadow .2s;
}
.marquee-pill:hover {
  border-color: var(--coral);
  box-shadow: 0 4px 16px rgba(253,161,162,.12);
}

/* ── Who Pills Grid (static) ─────────────────────────────── */
.who-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.who-pill {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  transition: border-color .2s, box-shadow .2s;
}
.who-pill:hover {
  border-color: var(--coral);
  box-shadow: 0 4px 16px rgba(253,161,162,.12);
}
@media (max-width: 768px) {
  .who-pills-grid { gap: 8px; }
  .who-pill { font-size: .82rem; padding: 10px 18px; }
}

/* ── UX Polish — Section rhythm & transitions ─────────────── */

/* Consistent section padding */
@media (min-width: 900px) {
  .section { padding: 50px 0; }
}


/* Staggered reveal delays for grid children */
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* Smooth CTA pulse on hero */
.hero-actions .btn-primary {
  animation: ctaGlow 3s ease-in-out 1.5s infinite;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(253,161,162,.2); }
  50% { box-shadow: 0 8px 32px rgba(253,161,162,.4); }
}

/* Light scroll-triggered parallax via reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer responsive */
@media (max-width: 600px) {
  .footer-row-main { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links-compact { gap: 16px; }
  .footer-social-compact { gap: 12px; }
}

/* ── RTL Support ─────────────────────────────────────────── */
[dir="rtl"] { direction: rtl; text-align: right; }
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-actions { justify-content: flex-end; }
[dir="rtl"] .section-header.center { text-align: center; }
[dir="rtl"] .about-grid { direction: rtl; }
[dir="rtl"] .about-float-card { right: auto; left: -16px; }
[dir="rtl"] .footer-row-main { flex-direction: row-reverse; }
[dir="rtl"] .arrow { transform: scaleX(-1); }
[dir="rtl"] .testimonial-card::before { left: auto; right: 16px; }
[dir="rtl"] .sprint-footer { flex-direction: row-reverse; }
[dir="rtl"] .form-row { flex-direction: row-reverse; }
.lang-switch { font-size: .85rem; text-decoration: none; padding: 4px 8px; border: 1px solid var(--border); border-radius: 4px; color: var(--dark); }
.lang-switch:hover { color: var(--coral); border-color: var(--coral); }
.nav-links .lang-switch { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.7); }
.nav-links .lang-switch:hover { border-color: var(--coral); color: var(--coral); }
