/* =========================================================
   PUSHUP DESIGN — Premium Redesign
   ========================================================= */

@font-face {
  font-family: 'Forma DJR Display';
  src: url('../assets/fonts/FormaDJRDisplay-Light-Testing.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Forma DJR Display';
  src: url('../assets/fonts/FormaDJRDisplay-Medium-Testing.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Forma DJR Display';
  src: url('../assets/fonts/FormaDJRDisplay-MediumItalic-Testing.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Forma DJR Display';
  src: url('../assets/fonts/FormaDJRDisplay-Italic-Testing.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Forma DJR Display';
  src: url('../assets/fonts/FormaDJRDisplay-BoldItalic-Testing.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Forma DJR Display';
  src: url('../assets/fonts/FormaDJRDisplay.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../assets/fonts/Satoshi-Variable.ttf') format('truetype-variations'),
       url('../assets/fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #c9fd13;
  --green-dim: rgba(201, 253, 19, 0.15);
  --cream: #f5f4ef;
  --cream-dark: #eae8e1;
  --black: #0a0a0a;
  --dark: #111111;
  --darker: #050505;
  --white: #ffffff;
  --muted: #7a7a7a;
  --muted-dark: rgba(255, 255, 255, 0.5);
  --border: rgba(10, 10, 10, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);

  --font-display: 'Forma DJR Display', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ================ Typography ================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: 1px;
}

h1 em, h2 em, h3 em, h4 em, h5 em,
.hero__title em, .problem__title em, .solution__title em,
.portfolio__title em, .services__title em, .process__title em,
.testimonials__title em, .pricing__title em, .faq__title em,
.cta-band__title em, .plan__name em, .plan__price em,
.testimonial__quote em, .process__step-title em, .faq__q em,
em, .italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
}

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

.label--dark { color: var(--muted-dark); }
.label--dark::before { background: var(--green); }

/* ================ Layout ================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

/* ================ Navbar ================ */

.nav {
  position: fixed;
  top: 26px;
  left: 16px;
  right: 16px;
  z-index: 100;
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.4s var(--ease);
  color: var(--white);
}

.nav__logo img {
  height: 16px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav__menu {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0 auto;
}

.nav__menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 8px;
  transition: color 0.25s var(--ease);
}

.nav__menu a:hover { color: var(--white); }

.nav__right { display: flex; align-items: center; gap: 8px; }

.nav__login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav__login:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.nav__login svg { flex-shrink: 0; }

.nav__cta {
  background: var(--green);
  color: var(--black);
  padding: 10px 16px 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 253, 19, 0.3);
}

.nav__cta .btn__arrow { width: 12px; height: 12px; display: inline-flex; }

.nav__burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav__burger-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.nav__burger-icon svg {
  position: absolute;
  inset: 0;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav__burger-close { opacity: 0; transform: rotate(-45deg); }

.nav.is-open .nav__burger { background: rgba(255, 255, 255, 0.16); }
.nav.is-open .nav__burger-bars { opacity: 0; transform: rotate(45deg); }
.nav.is-open .nav__burger-close { opacity: 1; transform: rotate(0); }

/* Mobile drawer — hidden on desktop */
.nav__drawer {
  display: none;
}

@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }

  /* Hide desktop login (it moves into the drawer) */
  .nav__login { display: none; }

  /* Tighten header so everything fits the mobile bar cleanly */
  .nav {
    padding: 8px 8px 8px 16px;
    gap: 8px;
    top: 12px;
    left: 12px;
    right: 12px;
  }

  /* Slightly larger logo on mobile */
  .nav__logo img { height: 20px; }

  /* Shrink the Book a Call CTA so it fits on one line */
  .nav__cta {
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.05em;
    gap: 5px;
    white-space: nowrap;
    border-radius: 8px;
  }
  .nav__cta .btn__arrow { width: 10px; height: 10px; }

  /* Drawer panel */
  .nav__drawer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 14px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transform-origin: top right;
    transform: translateY(-10px) scale(0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.22s var(--ease),
      transform 0.22s var(--ease),
      visibility 0s linear 0.22s;
  }
  .nav.is-open .nav__drawer {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.22s var(--ease),
      transform 0.22s var(--ease),
      visibility 0s;
  }

  .nav__drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .nav__drawer-menu a {
    display: block;
    padding: 13px 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 10px;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }
  .nav__drawer-menu a:active,
  .nav__drawer-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
  }

  .nav__drawer-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  }
  .nav__drawer-login:hover,
  .nav__drawer-login:active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
  }
  .nav__drawer-login svg { flex-shrink: 0; }

  .nav__drawer-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__drawer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav__drawer-socials a:hover,
  .nav__drawer-socials a:active {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
  }
  .nav__drawer-socials img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
  }

}

/* ================ Buttons ================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--green {
  background: var(--green);
  color: var(--black);
}
.btn--green:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 253, 19, 0.35);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  border-color: transparent;
}

.btn--ghost-dark-invert {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(10, 10, 10, 0.15);
}
.btn--ghost-dark-invert:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
  border-color: transparent;
}

.btn--brand-blue {
  background: #2f6bff;
  color: var(--white);
}
.btn--brand-blue:hover {
  background: #1f56e0;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(47, 107, 255, 0.35);
}

.btn__arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn__arrow { transform: translate(3px, -3px); }

/* ================ Hero ================ */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 12px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
  }
}

.hero__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0a0c12;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  padding: 0 clamp(32px, 6vw, 80px);
  text-align: center;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

/* Hero 2-column layout — left for copy, right (bigger) for rail */
.hero__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.25fr);
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}

.hero__left {
  display: flex;
  align-items: center;
  text-align: left;
  min-width: 0;
  padding: clamp(120px, 12vw, 180px) 0 clamp(60px, 6vw, 80px);
}

.hero__left .hero__content {
  margin: 0;
  text-align: left;
  max-width: 640px;
}

.hero__left .hero__desc {
  margin: 0 0 36px;
}

.hero__left .hero__proof {
  justify-content: flex-start;
}

.hero__right {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.hero__rail-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(80px, 12vh, 140px) 16px clamp(20px, 3vh, 36px);
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.55) 60%,
    transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
  z-index: 5;
}

.hero__rail-cta > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.hero__rail-cta svg {
  width: 14px;
  height: 14px;
  color: currentColor;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.hero__right:hover .hero__rail-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__rail-cta:hover > span {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 253, 19, 0.35);
}

.hero__rail-cta:hover svg {
  transform: translate(3px, -3px);
}

/* Vertical work rail — two columns scrolling in opposite directions */
.hero__vrail {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.4vw, 22px);
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 6%,
    rgba(0, 0, 0, 0.9) 14%,
    #000 22%,
    #000 78%,
    rgba(0, 0, 0, 0.9) 86%,
    rgba(0, 0, 0, 0.4) 94%,
    transparent 100%);
  mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 6%,
    rgba(0, 0, 0, 0.9) 14%,
    #000 22%,
    #000 78%,
    rgba(0, 0, 0, 0.9) 86%,
    rgba(0, 0, 0, 0.4) 94%,
    transparent 100%);
}

.hero__vrail-col {
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Stagger the second column slightly via animation delay (not layout offset) */
.hero__vrail-col:nth-child(2) .hero__vrail-track {
  animation-delay: -8s;
}

.hero__vrail-track {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 22px);
  padding-bottom: clamp(12px, 1.4vw, 22px);
  width: 100%;
  will-change: transform;
}

.hero__vrail-track--up {
  animation: scroll-vrail-up 32s linear infinite;
}

.hero__vrail-track--down {
  animation: scroll-vrail-down 38s linear infinite;
}

.hero__vrail-item {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 12 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.hero__vrail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll-vrail-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scroll-vrail-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__vrail-track--up,
  .hero__vrail-track--down { animation: none; }
}

/* Stack on tablets and mobile — rail goes below the content */
@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: clamp(28px, 5vw, 48px);
  }
  .hero__left {
    justify-content: center;
    text-align: center;
    padding: clamp(120px, 18vw, 180px) 0 0;
  }
  .hero__left .hero__content { text-align: center; margin: 0 auto; }
  .hero__left .hero__desc { margin: 0 auto 36px; }
  .hero__left .hero__cta-group { align-items: center; }
  .hero__left .hero__proof { justify-content: center; }

  .hero__right {
    height: clamp(300px, 48vh, 440px);
    min-height: 0;
    padding-bottom: clamp(20px, 4vw, 32px);
  }

  /* Reveal the rail CTA on mobile — no hover needed */
  .hero__rail-cta {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.hero__stage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(5, 6, 12, 0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: var(--white);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  padding: 8px 16px 8px 12px;
  background: rgba(201, 253, 19, 0.08);
  border: 1px solid rgba(201, 253, 19, 0.15);
  border-radius: 100px;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.3px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: rgba(255, 255, 255, 0.6);
}

.hero__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--white);
}

.hero__desc {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.6);
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

@media (min-width: 901px) {
  .hero__left .hero__cta-group { align-items: flex-start; }
}

.hero__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero__cta-link::after {
  content: "→";
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.hero__cta-link:hover {
  color: var(--green);
}
.hero__cta-link:hover::after {
  transform: translateX(3px);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.hero__proof-avatars {
  display: flex;
}

.hero__proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c94218, #6e1d06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  font-style: italic;
  margin-left: -8px;
  border: 2px solid var(--darker);
}

.hero__proof-avatar:first-child { margin-left: 0; }

.hero__proof-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  animation: bounceY 2.5s ease-in-out infinite;
}

@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ================ Logo Strip ================ */

.logos {
  padding: 40px 0;
  background: var(--cream);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos__track {
  display: flex;
  gap: 60px;
  animation: scroll-logos 30s linear infinite;
  will-change: transform;
}

.logos__item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 1px;
  color: var(--black);
  text-transform: uppercase;
  opacity: 0.35;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================ How It Works ================ */

.how {
  background: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0;
}

.how__head {
  margin-bottom: 80px;
  max-width: 800px;
}

.how__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 0.95;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 16px;
}

.how__title em { color: var(--black); }

.how__lead {
  margin-top: 24px;
  max-width: 64ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--muted);
}
.how__lead strong { color: var(--black); font-weight: 600; }

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

@media (max-width: 900px) {
  .how__steps { grid-template-columns: 1fr; gap: 32px; }
}

.how__step { max-width: 340px; }

.how__step-illu {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background: var(--cream-dark);
  overflow: hidden;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
}

.how__step:hover .how__step-illu { transform: translateY(-6px); }

.how__step-illu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how__step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.how__step-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.how__step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.how__divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  margin-top: 30px;
}

/* ================ Tilted Feature Cards ================ */

.features {
  background: var(--darker);
  color: var(--white);
  padding: clamp(120px, 14vw, 180px) 0;
  overflow: hidden;
}

.features__head {
  margin-bottom: 80px;
  max-width: 800px;
}

.features__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 0.95;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 16px;
}


.features__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 1200px;
}

@media (max-width: 1100px) {
  .features__cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

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

.feature-card {
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}

.feature-card:nth-child(1) { transform: rotate(-2.5deg) translateY(8px); }
.feature-card:nth-child(2) { transform: rotate(1.5deg) translateY(-12px); }
.feature-card:nth-child(3) { transform: rotate(-1deg) translateY(4px); }
.feature-card:nth-child(4) { transform: rotate(2deg) translateY(-8px); }

.feature-card:hover {
  transform: rotate(0) translateY(-12px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.feature-card--dark {
  background: var(--dark);
  border: 1px solid var(--border-dark);
  color: var(--white);
}

.feature-card--green {
  background: var(--green);
  color: var(--black);
}

.feature-card--cream {
  background: var(--cream);
  color: var(--black);
}

.feature-card--blue {
  background: #3a4af0;
  color: var(--white);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-card__icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.feature-card--green .feature-card__icon,
.feature-card--cream .feature-card__icon {
  background: rgba(0, 0, 0, 0.08);
}

.feature-card--dark .feature-card__icon img,
.feature-card--blue .feature-card__icon img {
  filter: brightness(0) invert(1);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-top: clamp(80px, 11vw, 120px);
  margin-bottom: 12px;
  min-height: 2.3em; /* reserve room for 2 lines so titles align across cards */
  display: flex;
  align-items: flex-end;
}

.feature-card__text {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.7;
}

/* ================ Priorities (overlapping text) ================ */

.priorities {
  background: var(--cream);
  padding: clamp(100px, 14vw, 180px) 0;
  overflow: hidden;
}

.priorities__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.priorities__label {
  margin-bottom: 32px;
}

.priorities__label .label { justify-content: center; }

.priorities__stack {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.95;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 48px;
}

.priorities__word {
  display: block;
}

.priorities__word:nth-child(1) { transform: translateX(-4%); }
.priorities__word:nth-child(2) { transform: translateX(2%); color: rgba(10, 10, 10, 0.15); }
.priorities__word:nth-child(3) { transform: translateX(-2%); }

.priorities__word em {
  font-style: italic;
  font-weight: 700;
}

.priorities__text {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* ================ Portfolio ================ */

.portfolio {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
}

.portfolio__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.portfolio__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 12px;
}


.portfolio__all {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}

.portfolio__all:hover { color: var(--black); gap: 14px; }

.portfolio__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.portfolio__grid--triple {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .portfolio__grid,
  .portfolio__grid--triple { grid-template-columns: 1fr; }
}

.work-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 11;
  background: var(--cream-dark);
  transition: transform 0.5s var(--ease);
  color: var(--white);
}

.work-card--wide { aspect-ratio: 16 / 9; }
.work-card--tall { aspect-ratio: auto; }
.work-card--square { aspect-ratio: 1 / 1; }

.work-card__mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.work-card__mockup img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
  transition: transform 0.8s var(--ease);
}
.work-card:hover .work-card__mockup img {
  transform: scale(1.04);
}

.work-card:hover { transform: translateY(-6px); }

.work-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-card:hover .work-card__bg { transform: scale(1.05); }

.work-card__bg-label {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 120px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.2;
  padding: 40px;
  text-align: center;
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.work-card__body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
}

.work-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tag--dark { background: rgba(0, 0, 0, 0.7); color: var(--white); border-color: rgba(0, 0, 0, 0.1); }

.work-card__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(8px);
  background: var(--white);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.work-card:hover .work-card__btn {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

/* ================ Services ================ */

.services {
  background: var(--darker);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
}

.services__head {
  margin-bottom: 60px;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-top: 12px;
}


.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.service {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}

.service:hover {
  border-color: rgba(201, 253, 19, 0.2);
  background: rgba(201, 253, 19, 0.02);
  transform: translateY(-4px);
}

.service__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.service__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-dim);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}

.service__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  flex: 1;
}

.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service .tag {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  border-color: var(--border-dark);
}

/* ================ Process ================ */

.process {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
}

.process__head {
  margin-bottom: 60px;
}

.process__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 12px;
}


.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.process__step {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: padding-left 0.35s var(--ease);
}

.process__step:hover { padding-left: 20px; }

@media (max-width: 720px) {
  .process__step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .process__step-visual { display: none; }
}

.process__step-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  font-style: italic;
  color: var(--green);
  line-height: 1;
}

.process__step-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.process__step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 50ch;
}

.process__step-visual {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
}

/* ================ Testimonials ================ */

.testimonials {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
}

.testimonials__head {
  margin-bottom: 48px;
}

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 12px;
}


.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid var(--border);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 1px;
}

.testimonial__quote em {
  font-style: italic;
  font-weight: 700;
  color: var(--black);
}

.testimonial__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #8ab800);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  font-style: italic;
}

.testimonial__who { line-height: 1.3; }
.testimonial__name { font-weight: 700; font-size: 14px; }
.testimonial__role { font-size: 12px; color: var(--muted); }

/* ================ Pricing ================ */

.pricing {
  background: var(--darker);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
}

.pricing__head {
  text-align: center;
  margin-bottom: 60px;
}

.pricing__head .label { justify-content: center; color: var(--muted-dark); }
.pricing__head .label::before { background: var(--green); }

.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-top: 12px;
  margin-bottom: 16px;
}


.pricing__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}

@media (max-width: 900px) { .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

.plan {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
  border: 1px solid var(--border-dark);
}

.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}

.plan--featured {
  background: var(--white);
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.plan--featured:hover { border-color: transparent; }
.plan--featured .plan__text { color: var(--muted); }
.plan--featured .plan__hint { color: var(--muted); }
.plan--featured .plan__period { color: var(--muted); }
.plan--featured .plan__feat-list { border-color: var(--border); }
.plan--featured .plan__feat { color: var(--black); }

.plan__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.plan__header {
  margin-bottom: 28px;
}

.plan__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.plan__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.plan__price-wrap { margin-bottom: 24px; }

.plan__price {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.plan__period {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  font-style: normal;
}

.plan--featured .plan__period { color: var(--muted); }

.plan__hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.plan__feat-list {
  list-style: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
  flex: 1;
}

.plan__feat {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.plan__check {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plan--featured .plan__check {
  background: rgba(201, 253, 19, 0.2);
  color: #5a7a00;
}

.plan__cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.plan--featured .btn--green {
  background: var(--black);
  color: var(--white);
}
.plan--featured .btn--green:hover {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 12px 32px rgba(201, 253, 19, 0.35);
}

/* ================ FAQ ================ */

.faq {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
}

.faq__wrap {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

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

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 16px;
}


.faq__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.faq__list {
  border-top: 1px solid var(--border);
}

.faq__item { border-bottom: 1px solid var(--border); }

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.25s var(--ease);
}

.faq__q:hover { color: var(--muted); }

.faq__toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.faq__item[data-open="true"] .faq__toggle {
  background: var(--green);
  color: var(--black);
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq__item[data-open="true"] .faq__a { max-height: 400px; }

.faq__a-inner {
  padding: 0 60px 24px 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ================ CTA Band ================ */

.cta-section {
  padding: 0 0 clamp(80px, 10vw, 140px);
  background: var(--cream);
}

.cta-band {
  background: var(--green);
  color: var(--black);
  border-radius: var(--radius-xl);
  margin: 0 var(--gutter);
  padding: clamp(60px, 8vw, 100px) clamp(32px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  pointer-events: none;
}

.cta-band--with-illu {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  gap: clamp(16px, 2.5vw, 32px);
  padding: clamp(10px, 1.2vw, 14px);
}

.cta-band--with-illu::before { display: none; }

.cta-band--with-illu .cta-band__content {
  padding: clamp(12px, 2vw, 22px) clamp(8px, 1.5vw, 20px);
  align-self: center;
}

.cta-band__illu {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  aspect-ratio: 16 / 9;
}

.cta-band__illu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .cta-band--with-illu {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cta-band__illu { aspect-ratio: 4 / 3; }
}

.cta-band__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-weight: 500;
}

.cta-band__title em {
  font-style: italic;
  font-weight: 700;
}

.cta-band__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.7);
  margin-bottom: 22px;
  max-width: 48ch;
}

.cta-band__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================ Blog ================ */

.blog-hero {
  background: var(--cream);
  padding: clamp(120px, 14vw, 180px) 0 clamp(36px, 5vw, 56px);
}

.blog-hero__head { max-width: 920px; }

.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin: 16px 0 18px;
  color: var(--black);
}

.blog-hero__title em { font-style: italic; font-weight: 700; }

.blog-hero__lead {
  max-width: 64ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--muted);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(10, 10, 10, 0.06);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--black);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
}
.blog-tag:hover { background: var(--black); color: var(--white); }
.blog-tag[aria-pressed="true"] { background: var(--black); color: var(--white); }

.blog-list {
  background: var(--cream);
  padding: clamp(20px, 3vw, 40px) 0 clamp(80px, 10vw, 140px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  color: var(--black);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(10, 10, 10, 0.16);
}

.post-card__cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--cream-dark, #ecebe5);
}

.post-card__body {
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.post-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.post-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-card__tag::before { content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--green); margin-right: 6px; vertical-align: middle; }

.post-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.15;
  color: var(--black);
}

.post-card__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.blog-empty {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) 20px;
  color: var(--muted);
  font-size: 15px;
}

/* ================ Single post ================ */

.post {
  background: var(--cream);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.post-hero {
  padding: clamp(120px, 14vw, 180px) 0 clamp(28px, 4vw, 44px);
}

.post-hero__container { max-width: 800px; margin: 0 auto; padding: 0 var(--gutter); }

.post-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.post-hero__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-hero__tag::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--green); margin-right: 7px; vertical-align: middle; }

.post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.3px;
  font-weight: 500;
  margin: 0 0 20px;
  color: var(--black);
}
.post-hero__title em { font-style: italic; font-weight: 700; }

.post-hero__excerpt {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 68ch;
  margin-bottom: 24px;
}

.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.post-hero__meta-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }

.post-cover {
  max-width: 1080px;
  margin: 0 auto clamp(28px, 4vw, 56px);
  padding: 0 var(--gutter);
}
.post-cover img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--cream-dark, #ecebe5);
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: var(--black);
}

.post-body > * + * { margin-top: 1.25em; }

.post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.3px;
  font-weight: 500;
  margin-top: 2em;
  margin-bottom: 0.4em;
  color: var(--black);
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
  font-weight: 500;
  margin-top: 1.6em;
  margin-bottom: 0.3em;
  color: var(--black);
}

.post-body p {
  color: rgba(10, 10, 10, 0.78);
}

.post-body strong { color: var(--black); font-weight: 600; }
.post-body em { font-style: italic; }

.post-body a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity 0.2s var(--ease);
}
.post-body a:hover { opacity: 0.6; }

.post-body ul, .post-body ol {
  padding-left: 1.4em;
  color: rgba(10, 10, 10, 0.78);
}
.post-body li + li { margin-top: 0.4em; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }

.post-body blockquote {
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 24px;
  margin: 1.8em 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  font-style: italic;
  color: var(--black);
}

.post-body code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.88em;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.05);
  color: var(--black);
}

.post-body pre {
  background: var(--darker);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-xl);
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.55;
}
.post-body pre code { background: none; padding: 0; color: inherit; font-size: inherit; }

.post-body img,
.post-body figure {
  width: 100%;
  border-radius: var(--radius-xl);
  margin: 1.8em 0;
}
.post-body figure img { width: 100%; display: block; border-radius: var(--radius-xl); }
.post-body figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }

.post-body hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 1.5em 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.post-body th, .post-body td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.post-body thead { background: rgba(10, 10, 10, 0.04); }
.post-body th { font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.post-body tbody tr:last-child td { border-bottom: 0; }

.post-body .callout {
  background: rgba(201, 253, 19, 0.12);
  border: 1px solid rgba(201, 253, 19, 0.5);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.55;
}

.post-foot {
  max-width: 720px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}
.post-foot__back {
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.post-foot__back:hover { opacity: 0.6; }

/* ================ Pricing page hero / breadcrumb / compare ================ */

.page-hero {
  background: var(--cream);
  padding: clamp(120px, 14vw, 180px) 0 clamp(40px, 5vw, 64px);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--muted); transition: color 0.25s var(--ease); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb [aria-current="page"] { color: var(--black); }

.page-hero__head { max-width: 920px; }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin: 16px 0 24px;
  color: var(--black);
}

.page-hero__title em { font-style: italic; font-weight: 700; }

.page-hero__lead {
  max-width: 64ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--muted);
}
.page-hero__lead strong { color: var(--black); font-weight: 600; }

.pricing--page {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

/* Comparison table */
.compare {
  background: var(--cream);
  padding: clamp(60px, 8vw, 120px) 0;
  border-top: 1px solid var(--border);
}

.compare__head { margin-bottom: 48px; max-width: 720px; }

.compare__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-top: 12px;
  color: var(--black);
}
.compare__title em { font-style: italic; font-weight: 700; }

.compare__table {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
}

.compare__row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
  gap: 16px;
  padding: 18px clamp(20px, 2.5vw, 36px);
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.45;
}

.compare__row:last-child { border-bottom: 0; }

.compare__row--head {
  background: var(--cream-dark, #ecebe5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 14px;
  padding-bottom: 14px;
}

.compare__row--ours {
  background: rgba(201, 253, 19, 0.12);
  font-weight: 500;
}

.compare__row--ours strong { color: var(--black); font-weight: 700; }

.compare__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  max-width: 80ch;
}

@media (max-width: 760px) {
  .compare__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 20px;
  }
  .compare__row--head { display: none; }
  .compare__row > div::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
  }
}

/* ================ Project Sprints ================ */

.sprints {
  background: var(--cream);
  color: var(--black);
  padding: clamp(60px, 8vw, 110px) 0;
}

.sprints__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.sprints__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--black);
}
.sprints__title em { font-style: italic; font-weight: 700; }

.sprints__lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.55;
}

.sprints__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .sprints__grid { grid-template-columns: 1fr; max-width: 440px; }
}

.sprint {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 12px 36px rgba(10, 10, 10, 0.05);
}

.sprint:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 10, 10, 0.18);
  box-shadow: 0 20px 56px rgba(10, 10, 10, 0.10);
}

.sprint--featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: 0 24px 64px rgba(10, 10, 10, 0.28);
}
.sprint--featured:hover { border-color: var(--black); }

.sprint__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.sprint__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sprint__duration {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--black);
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--green);
}
.sprint--featured .sprint__duration {
  background: rgba(201, 253, 19, 0.2);
  color: var(--green);
}

.sprint__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: inherit;
}

.sprint__price {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: inherit;
}

.sprint__price-flat {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.sprint--featured .sprint__price-flat { color: rgba(255, 255, 255, 0.5); }

.sprint__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 4px 0 20px;
}
.sprint--featured .sprint__text { color: rgba(255, 255, 255, 0.7); }

.sprint__feat-list {
  list-style: none;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
  flex: 1;
}
.sprint--featured .sprint__feat-list { border-color: rgba(255, 255, 255, 0.12); }

.sprint__feat {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--black);
}
.sprint--featured .sprint__feat { color: rgba(255, 255, 255, 0.85); }

.sprint__check {
  color: var(--black);
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sprints__note {
  margin-top: 36px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.sprints__note a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(10, 10, 10, 0.3);
  text-underline-offset: 3px;
}
.sprints__note a:hover { text-decoration-color: var(--black); }

/* ================ Calculator link band (on pricing page) ================ */

.calc-link {
  background: var(--cream);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--border);
}

.calc-link__inner {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.calc-link__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 100% at 100% 50%, rgba(201, 253, 19, 0.18), transparent 70%);
  pointer-events: none;
}

.calc-link__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 540px;
  position: relative;
}
.calc-link__title em { font-style: italic; font-weight: 700; color: var(--white); }

.calc-link__lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  max-width: 540px;
  position: relative;
}

.calc-link .btn {
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .calc-link__inner { flex-direction: column; align-items: flex-start; }
  .calc-link .btn { width: 100%; justify-content: center; }
}

/* ================ Cost Calculator ================ */

.calc {
  background: var(--cream);
  /* No top padding — the page-hero above already provides spacing.
     No border-top — there's no visual section change since both are cream. */
  padding: 0 0 clamp(60px, 8vw, 110px);
}

.calc__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.calc__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--black);
}
.calc__title em { font-style: italic; font-weight: 700; }

.calc__lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.55;
}

.calc__wrap {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 0 28px 72px rgba(10, 10, 10, 0.10);
}

.calc__controls {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.calc__label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 16px;
}

.calc__label-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.calc__output {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
  color: var(--black);
  letter-spacing: 1px;
}

/* Slider */
.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  outline: none;
  cursor: grab;
  margin: 6px 0 12px;
}
.calc__slider:active { cursor: grabbing; }
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--black);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(201, 253, 19, 0.45);
  transition: transform 0.2s var(--ease);
}
.calc__slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc__slider::-webkit-slider-thumb:active { transform: scale(1.18); cursor: grabbing; }
.calc__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--black);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(201, 253, 19, 0.45);
  transition: transform 0.2s var(--ease);
}
.calc__slider::-moz-range-thumb:hover { transform: scale(1.12); }

.calc__scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  padding: 0 2px;
}

.calc__assumptions {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 72ch;
}

.calc__results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

@media (max-width: 920px) {
  .calc__results { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .calc__results { grid-template-columns: 1fr; }
}

.calc__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 14px);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.calc__card:hover {
  transform: translateY(-3px);
}

.calc__card--ours {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  position: relative;
}

.calc__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.calc__card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc__card--ours .calc__card-tag {
  color: var(--green);
}

.calc__card-best {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 100px;
  background: var(--green);
  color: var(--black);
  display: none;
}
.calc__card--ours .calc__card-best { display: inline-block; }

.calc__card-price {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.calc__card-period {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.45);
  letter-spacing: 0;
}
.calc__card--ours .calc__card-period { color: rgba(255, 255, 255, 0.5); }

.calc__card-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  min-height: 32px;
  margin-bottom: 14px;
}
.calc__card--ours .calc__card-sub { color: rgba(255, 255, 255, 0.65); }

.calc__card-meta {
  list-style: none;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.calc__card--ours .calc__card-meta {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.calc__summary {
  text-align: center;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--black);
  background: rgba(201, 253, 19, 0.16);
  border: 1px solid rgba(201, 253, 19, 0.45);
  border-radius: var(--radius-lg, 14px);
  padding: 18px 24px;
  margin-bottom: 24px;
}
.calc__summary strong { font-weight: 700; }

.calc__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 480px) {
  .calc__cta { flex-direction: column; }
  .calc__cta .btn { width: 100%; justify-content: center; }
}

/* ================ Footer ================ */

.footer {
  background: var(--cream);
  color: var(--black);
  padding: clamp(36px, 5vw, 60px) 0 18px;
}

/* Footer container now uses the same bounds as pricing/.container so the
   edges line up with the Growth (left) and Elite (right) plan cards. */

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__logo img {
  height: 24px;
  display: block;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.footer__socials a:hover {
  transform: translateY(-2px);
  opacity: 0.6;
}

.footer__socials img {
  width: 18px;
  height: 18px;
  filter: brightness(0);
}

.footer__nav {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.25s var(--ease);
}

.footer__nav a:hover { opacity: 0.55; }

.footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  font-size: 12px;
  color: rgba(10, 10, 10, 0.5);
  text-align: center;
}

@media (max-width: 700px) {
  .footer__top { align-items: flex-start; }
}

/* ================ Reveal Animation ================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================ Custom Cursor ================ */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor--visible { opacity: 1; }

.cursor--hover {
  width: 40px;
  height: 40px;
  background: var(--green);
}

/* ================ Selection & Scrollbar ================ */

::selection { background: var(--green); color: var(--black); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }

/* ================ Case Study Pages (preserved) ================ */

.case-hero {
  padding-top: 110px;
  padding-bottom: 40px;
  background: var(--cream);
}

.case-hero__tags { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
.case-hero .tag { background: var(--white); color: var(--black); border: 1px solid var(--border); }
.case-hero .tag--green { background: var(--green); border: none; }
.case-hero .tag--dark { background: var(--black); color: var(--white); border: none; }

.case-hero__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.3vw, 53px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.04;
  margin-bottom: 24px;
}

.case-hero__title em { font-style: italic; font-weight: 700; }

.case-hero__desc {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--black);
  max-width: 68ch;
  margin-bottom: 40px;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 720px) { .case-meta { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

.case-meta__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.case-meta__value {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.case-meta__value em { font-style: italic; font-weight: 700; }

.case-media { padding-top: 0; }
.case-media__main {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-body { padding: clamp(60px, 8vw, 100px) 0; }

.case-body__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

@media (max-width: 900px) { .case-body__grid { grid-template-columns: 1fr; gap: 24px; } }

.case-body__heading {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.9vw, 25px);
  line-height: 1.08;
  letter-spacing: 1px;
  font-weight: 500;
  position: sticky;
  top: 100px;
}

.case-body__heading em { font-style: italic; font-weight: 700; }

.case-body__text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 16px;
}

.case-body__text p:first-of-type { font-size: 18px; line-height: 1.55; }

.case-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding-bottom: clamp(60px, 9vw, 120px);
}

.case-gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-gallery__item--wide { grid-column: span 6; aspect-ratio: 21 / 9; }
.case-gallery__item--half { grid-column: span 3; }
.case-gallery__item--third { grid-column: span 2; }

@media (max-width: 720px) {
  .case-gallery__item--wide,
  .case-gallery__item--half,
  .case-gallery__item--third { grid-column: span 6; }
}

/* ================ Case Study ================ */

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.cs-back:hover { color: var(--black); }

/* --- Hero --- */
.cs-hero {
  padding: 120px 0 0;
  background: var(--cream);
}

.cs-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
}

.cs-hero__client {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.cs-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.cs-hero__title em { font-style: italic; font-weight: 700; }

.cs-hero__right {
  flex-shrink: 0;
  max-width: 380px;
  padding-top: 8px;
}

.cs-hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .cs-hero__top { flex-direction: column; gap: 24px; }
  .cs-hero__right { max-width: 100%; }
}

.cs-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .cs-meta-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.cs-meta-item__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.cs-meta-item__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

/* --- Stacked images --- */
.cs-images {
  padding: 0 0 clamp(16px, 2vw, 24px);
}

.cs-images__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 16px);
}

.cs-images__img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.cs-images__img img {
  width: 100%;
  height: auto;
  display: block;
}

.cs-images__img--placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 80px);
}

.cs-images__img--placeholder .cs-placeholder-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-align: center;
}

.cs-images__img--placeholder .cs-placeholder-label em {
  font-style: italic;
  font-weight: 700;
}

.cs-images__img--portrait { aspect-ratio: 3 / 4; }
.cs-images__img--square { aspect-ratio: 1; }

.cs-images__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 16px);
}

@media (max-width: 720px) {
  .cs-images__pair { grid-template-columns: 1fr; }
}

/* --- Story intro + expandable --- */
.cs-intro {
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
}

.cs-intro__lead {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 24ch;
  margin-bottom: 24px;
}

.cs-intro__lead em { font-style: italic; font-weight: 700; }

.cs-intro__excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.7);
  max-width: 60ch;
  margin-bottom: 40px;
}

.cs-story-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 8px;
  border-bottom: 1.5px solid var(--black);
  transition: color 0.3s, border-color 0.3s;
}

.cs-story-btn:hover {
  color: var(--green);
  border-color: var(--green);
}

.cs-story-btn svg {
  width: 11px;
  height: 11px;
  transition: transform 0.4s var(--ease);
}

.cs-story-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.cs-full-story {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease);
}

.cs-full-story.is-open {
  grid-template-rows: 1fr;
}

.cs-full-story__inner {
  overflow: hidden;
}

.cs-full-story__content {
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: 16px;
}

.cs-full-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

@media (max-width: 900px) {
  .cs-full-story__grid { grid-template-columns: 1fr; gap: 24px; }
}

.cs-full-story__heading {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  position: sticky;
  top: 96px;
}

.cs-full-story__heading em { font-style: italic; font-weight: 700; }

.cs-full-story__text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(10, 10, 10, 0.75);
  margin-bottom: 24px;
}

.cs-full-story__text p:first-of-type {
  font-size: 17px;
  color: var(--black);
}

.cs-full-story__text p:last-child { margin-bottom: 0; }

/* --- Impact metrics --- */
.cs-impact {
  padding: clamp(80px, 10vw, 128px) 0;
  background: var(--black);
  color: var(--white);
}

.cs-impact__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 56px;
}

.cs-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 900px) {
  .cs-impact__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .cs-impact__grid { grid-template-columns: 1fr; }
}

.cs-metric {
  padding: 32px 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cs-metric__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cs-metric__num em {
  font-style: italic;
  font-weight: 700;
  color: var(--green);
}

.cs-metric__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
  max-width: 22ch;
}

/* --- Credits --- */
.cs-credits {
  padding: clamp(64px, 8vw, 96px) 0;
  border-top: 1px solid var(--border);
}

.cs-credits__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.cs-credits__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
}

@media (max-width: 720px) {
  .cs-credits__grid { grid-template-columns: 1fr; gap: 32px; }
}

.cs-credits__col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.cs-credits__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-credits__list li {
  font-size: 14px;
  line-height: 2;
  color: rgba(10, 10, 10, 0.7);
}

/* --- Next case study --- */
.cs-next {
  padding: clamp(80px, 10vw, 128px) 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cs-next__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.cs-next__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--black);
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s;
}

.cs-next__title:hover { color: var(--green); }
.cs-next__title em { font-style: italic; font-weight: 700; }
