/* ========================================
   DesignPulse Landing Page Styles
   ======================================== */

/* --- Page Transition --- */
.page-transition {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  inset: 0;
  background: var(--color-bg-dark, #1a1a1a);
  clip-path: circle(0% at 50% 100%);
  will-change: clip-path;
}

.page-transition--enter {
  animation: ptEnter 0.4s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.page-transition--reveal {
  clip-path: circle(150% at 50% 100%);
  animation: ptReveal 0.35s cubic-bezier(0.5, 0, 0, 1) forwards;
}

/* Page starts covered, don't flash content */
.page-transition--cover {
  clip-path: circle(150% at 50% 100%);
}

@keyframes ptEnter {
  from { clip-path: circle(0% at 50% 100%); }
  to   { clip-path: circle(150% at 50% 100%); }
}

@keyframes ptReveal {
  from { clip-path: circle(150% at 50% 100%); }
  to   { clip-path: circle(0% at 50% 100%); }
}

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

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-bg: #F2EFE6;
  --color-bg-card: #E9E6DD;
  --color-bg-dark: #1d1d1d;
  --color-text-dark: #1a1a1a;
  --color-text-light: #ffffff;
  --color-text-muted-dark: rgba(0, 0, 0, 0.5);
  --color-text-muted-light: rgba(255, 255, 255, 0.5);
  --color-accent-orange: #FF4100;
  --color-border-light: rgba(0, 0, 0, 0.06);

  /* Fonts */
  --font-primary: "Satoshi", "Satoshi Placeholder", sans-serif;
  --font-display: "Inter Display", "Inter", sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --max-width: 1440px;
  --max-width-narrow: 800px;
  --nav-height: 60px;
  --card-padding: 6px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* --- Font Faces --- */
@font-face {
  font-family: "Satoshi";
  src: url("../third-party-fonts/bc1f4cb2e1bff5ab.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Satoshi";
  src: url("../third-party-fonts/e8c682716a0011dd.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Satoshi";
  src: url("../third-party-fonts/b4ea55ab000a302c.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

/* Inter Display - Latin subset only */
@font-face {
  font-family: "Inter Display";
  src: url("../fonts/iwWTDc49ENF2tCHbqlNARXw6Ug.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.latin-UCM45LQF.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.latin-TETRYDF7.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

/* --- Base --- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--card-padding);
}

/* --- Section Cards --- */
.section-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  margin: 0 var(--card-padding);
  padding: var(--space-3xl) var(--space-2xl);
}

.section-card + .section-card {
  margin-top: var(--card-padding);
}

/* --- Pill Labels --- */
.pill-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: var(--space-xl);
}

/* ========================================
   Header / Navigation
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(242, 239, 230, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Logo: dark by default (white SVG → black via filter) */
.header__logo img {
  filter: brightness(0);
  transition: filter 0.3s ease;
}

/* When hero is still in view, header stays transparent */
.header--transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.header--transparent .header__link {
  color: var(--color-text-light);
}

.header--transparent .header__link--login {
  color: var(--color-text-light);
}

/* White logo (native) when over hero */
.header--transparent .header__logo img {
  filter: none;
}

/* Hide header when scrolling down */
.header--hidden {
  transform: translateY(-100%);
}

/* Header starts inside hero flow, becomes fixed on scroll */
.header--in-hero {
  position: absolute;
  top: var(--card-padding);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__nav-left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  justify-self: start;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-self: center;
}

.header__logo img {
  height: 28px;
  width: auto;
}

.header__nav-right {
  display: flex;
  align-items: center;
  justify-self: end;
}

.header__link {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.3s ease;
  line-height: 1.3em;
}

.header__link:hover {
  opacity: 1;
}

.header__link--login {
  opacity: 1;
  color: var(--color-text-dark);
}

/* Mobile menu button */
.header__menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: var(--space-xs);
  transition: color 0.3s ease;
}

.header--transparent .header__menu-btn {
  color: var(--color-text-light);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  overflow: hidden;
  margin: var(--card-padding);
  border-radius: var(--radius-md);
  transition: margin 0.4s ease, border-radius 0.4s ease;
}

.hero--expanded {
  margin: 0;
  border-radius: 0;
}

.hero__bg {
  position: absolute;
  inset: -40px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #8BA4AD;
}

.hero__bg-art {
  position: absolute;
  inset: -60px;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  object-fit: cover;
  filter: blur(18px) brightness(0.7) saturate(1.4);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--color-text-light);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.hero__subheadline {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero__urgency {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__urgency-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* Hero CTA button - glass effect */
.hero .btn--primary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-text-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 22px;
}

.hero .btn--primary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text-light);
  border: none;
  padding: 14px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--secondary:hover {
  opacity: 0.7;
}

/* Dark CTA button (used in pricing, footer) */
.btn--primary {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

/* ========================================
   Social Proof Row (two cards side by side)
   ======================================== */
.social-proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-padding);
  margin: var(--card-padding) var(--card-padding) 0;
}

.social-proof {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
}

.social-proof__text {
  font-size: 14px;
  color: var(--color-text-muted-dark);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.social-proof__carousel {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.social-proof__track {
  display: flex;
  gap: var(--space-2xl);
  animation: logoScroll 30s linear infinite;
  width: max-content;
}

.social-proof__track:hover {
  animation-play-state: paused;
}

.social-proof__logo {
  height: 24px;
  width: auto;
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.social-proof__logo:hover {
  opacity: 1;
}

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

/* ========================================
   Featured In (right card in social proof row)
   ======================================== */
.featured-in {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.featured-in__text {
  font-size: 14px;
  color: var(--color-text-muted-dark);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.featured-in__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.featured-in__logo {
  height: 20px;
  opacity: 0.8;
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
  text-align: center;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.stats__number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
  color: var(--color-text-dark);
}

.stats__description {
  font-size: 15px;
  color: var(--color-text-muted-dark);
  line-height: 1.4;
}

/* ========================================
   Work Section (Scroll-Locked Case Studies)
   ======================================== */
.work {
  height: 200vh;
  margin: var(--card-padding) var(--card-padding) 0;
}

.work__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-padding);
  padding: var(--card-padding) 0;
}

.work__left {
  background: var(--color-bg-dark);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-2xl) var(--space-3xl);
  overflow: hidden;
  position: relative;
}

.work__left .pill-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 0;
  position: absolute;
  top: var(--space-2xl);
  left: var(--space-3xl);
  z-index: 2;
}

.work__names-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}

.work__names {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.work__name {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: color 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  line-height: 1.15;
  padding: var(--space-xs) 0;
  text-align: left;
  white-space: nowrap;
  flex-shrink: 0;
}

.work__name.active {
  color: #ffffff;
  transform: scale(1.05);
  transform-origin: left center;
}

.work__name:hover:not(.active) {
  color: rgba(255, 255, 255, 0.35);
}

.work__badge {
  display: block;
  font-size: 13px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

.work__name.active .work__badge {
  color: rgba(255, 255, 255, 0.6);
}

.work__right {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work__project {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.work__project.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 3-row slider layout */
.work__slider-rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  height: 100%;
  justify-content: center;
  padding: var(--space-lg) 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.work__slider-row {
  overflow: hidden;
  width: 100%;
}

.work__slider-track {
  display: flex;
  gap: var(--space-sm);
  width: max-content;
}

.work__slider-row--left .work__slider-track {
  animation: workSlideLeft 40s linear infinite;
  will-change: transform;
}

.work__slider-row--right .work__slider-track {
  animation: workSlideRight 40s linear infinite;
  will-change: transform;
}

.work__slider-track img {
  height: calc((100vh - var(--space-sm) * 2 - var(--space-lg) * 2) / 2);
  max-height: 380px;
  width: auto;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  flex-shrink: 0;
}

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

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

/* ========================================
   Featured Build (Saynote)
   ======================================== */
.featured-build__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.featured-build__info {
  padding: var(--space-lg) 0;
}

.featured-build__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
}

.featured-build__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.featured-build__description {
  font-size: 16px;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.featured-build__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-dark);
  font-weight: 500;
  margin-bottom: var(--space-xl);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.featured-build__link:hover {
  opacity: 1;
}

.featured-build__metrics {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.featured-build__metric {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 15px;
  line-height: 1.5;
}

.featured-build__metric-icon {
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 2px;
}

.featured-build__metric-value {
  font-weight: 700;
  color: var(--color-text-dark);
}

.featured-build__metric-label {
  color: var(--color-text-muted-dark);
  font-weight: 400;
}

/* Screenshots column */
.featured-build__screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.featured-build__screen {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg);
}

.featured-build__screen img {
  width: 100%;
  height: auto;
}

/* Standalone screenshot carousel below featured build info */
.featured-build__carousel {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding-bottom: var(--space-md);
  scroll-snap-type: x mandatory;
}

.featured-build__carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.featured-build__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.featured-build__carousel-dot.active {
  background: rgba(0, 0, 0, 0.6);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
  margin: var(--card-padding) var(--card-padding) 0;
  border-radius: var(--radius-md);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-padding);
}

.pricing__card {
  background: var(--color-accent-orange);
  border-radius: var(--radius-sm);
  padding: var(--space-2xl);
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
}

.pricing__card--trial {
  background: var(--color-bg-dark);
}

.pricing__card .pricing__cta {
  margin-top: auto;
}

.pricing__card--trial .pricing__cta {
  background: var(--color-text-light);
  color: var(--color-bg-dark);
}

.pricing__label {
  font-size: 13px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.pricing__amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
}

.pricing__period {
  font-size: 18px;
  opacity: 0.8;
}

.pricing__subtitle {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: var(--space-xl);
}

.pricing__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing__highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 15px;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.pricing__row {
  padding: var(--space-md) 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-light);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.pricing__row-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__row-text strong {
  font-weight: 700;
}

.pricing__row-detail {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.pricing__cta {
  width: 100%;
  text-align: center;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  border-radius: var(--radius-sm);
  padding: 18px 28px;
  font-size: 16px;
  font-weight: 600;
}

.pricing__social-proof {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

.pricing__card--trial .pricing__social-proof {
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Founder Story
   ======================================== */
.founder {
  color: var(--color-text-dark);
}

.founder__inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.founder__label {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
}

.founder__text {
  font-size: 18px;
  color: var(--color-text-muted-dark);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.founder__highlight {
  color: var(--color-text-dark);
  font-weight: 700;
}

.founder__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.founder__link {
  font-size: 15px;
  color: var(--color-text-muted-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.founder__link:hover {
  color: var(--color-text-dark);
}

/* ========================================
   Process / Screenshots Section
   ======================================== */
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.process__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  transition: transform 0.3s ease;
}

.process__card:hover {
  transform: translateY(-4px);
}

.process__card img {
  width: 100%;
  height: auto;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  background: var(--color-bg-dark);
  border-radius: var(--radius-sm);
  margin: var(--card-padding) var(--card-padding) 0;
  padding: var(--space-3xl) var(--space-2xl);
  color: var(--color-text-light);
}

.faq__inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  gap: var(--space-md);
}

.faq__question:hover {
  opacity: 0.8;
}

.faq__question-text {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

.faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--color-text-light);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq__icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 500px;
}

.faq__answer-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: var(--space-lg);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-bg-dark);
  border-radius: var(--radius-sm);
  margin: var(--card-padding) var(--card-padding);
  color: var(--color-text-light);
  overflow: hidden;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-2xl);
  gap: var(--space-2xl);
}

.footer__col-title {
  font-size: 13px;
  color: var(--color-text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-text-light);
}

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

.footer__logo-watermark {
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  overflow: hidden;
}

.footer__logo-watermark img {
  width: 100%;
  height: auto;
  opacity: 0.15;
  filter: brightness(0) invert(1);
  transition: opacity 0.6s ease, filter 0.6s ease;
  cursor: pointer;
}

.footer__logo-watermark:hover img {
  opacity: 0.4;
  filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-reveal.revealed {
  animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   Responsive (Mobile < 810px)
   ======================================== */
@media (max-width: 810px) {
  :root {
    --space-4xl: 64px;
    --space-5xl: 80px;
  }

  .header__nav-left {
    display: none;
  }

  .header__nav-right {
    display: none;
  }

  .header__logo {
    justify-self: start;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
  }

  .header__menu-btn {
    display: flex;
  }

  /* Mobile nav overlay */
  .header__nav-left.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    padding: var(--space-xl);
    gap: var(--space-lg);
    z-index: 99;
  }

  .header__nav-left.open .header__link {
    color: var(--color-text-dark);
  }

  .hero__headline {
    font-size: 36px;
  }

  .hero__subheadline {
    font-size: 16px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .social-proof-row {
    grid-template-columns: 1fr;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .stats__number {
    font-size: 42px;
  }

  /* Work section - stack on mobile, disable scroll-lock */
  .work {
    height: auto;
  }

  .work__sticky {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
  }

  .work__left {
    padding: var(--space-xl);
    min-height: 250px;
  }

  .work__left .pill-label {
    top: var(--space-md);
    left: var(--space-xl);
  }

  .work__names-wrapper {
    mask-image: linear-gradient(to bottom, transparent 5%, black 25%, black 75%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 5%, black 25%, black 75%, transparent 95%);
  }

  .work__name {
    font-size: 24px;
  }

  .work__right {
    min-height: 350px;
  }

  .work__slider-track img {
    height: 160px;
    max-height: 160px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing__amount {
    font-size: 42px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .footer__cta-title {
    font-size: 28px;
  }

  .faq__title {
    font-size: 28px;
  }

  .featured-build__title {
    font-size: 28px;
  }
}

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