/* ========================================
   Theme Variables
======================================== */
:root {
  --bg-primary: #000000;
  --bg-secondary: #0d0d0d;
  --bg-card: #111111;
  --bg-input: #111111;
  --text-primary: #ffffff;
  --text-secondary: #999999;
  --text-muted: #555555;
  --border-color: rgba(242, 57, 128, 0.2);
  --border-subtle: #222222;
  --pink: #f23980;
  --pink-light: #ff6eb4;
  --pink-glow: rgba(242, 57, 128, 0.15);
  --shadow-card: 0 20px 60px rgba(242, 57, 128, 0.1);
  --nav-scrolled: rgba(0, 0, 0, 0.92);
  --footer-bg: #0d0d0d;
  --footer-border: rgba(242, 57, 128, 0.3);
  --surface-glass: rgba(255, 255, 255, 0.04);
  --surface-elevated: rgba(255, 255, 255, 0.03);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.35);
  --shadow-button: 0 16px 42px rgba(242, 57, 128, 0.24);
  --particle-primary: rgba(242, 57, 128, 0.32);
  --particle-secondary: rgba(255, 255, 255, 0.28);
  --particle-link: rgba(242, 57, 128, 0.15);
  --instagram-start: #f09433;
  --instagram-mid-a: #e6683c;
  --instagram-mid-b: #dc2743;
  --instagram-mid-c: #cc2366;
  --instagram-end: #bc1888;
  --facebook: #1877f2;
  --linkedin: #0a66c2;
  --tiktok: #69c9d0;
  --x-hover: #ffffff;
  --max-width: 1280px;
  --nav-height: 88px;
  --sticky-offset: 98px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-card: #ffffff;
  --bg-input: #f9f9f9;
  --text-primary: #0a0a0a;
  --text-secondary: #555555;
  --text-muted: #999999;
  --border-color: rgba(242, 57, 128, 0.25);
  --border-subtle: #e5e5e5;
  --pink: #f23980;
  --pink-light: #d4246a;
  --pink-glow: rgba(242, 57, 128, 0.08);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08);
  --nav-scrolled: rgba(255, 255, 255, 0.92);
  --footer-bg: #f0f0f0;
  --footer-border: rgba(242, 57, 128, 0.18);
  --surface-glass: rgba(255, 255, 255, 0.88);
  --surface-elevated: rgba(255, 255, 255, 0.8);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.08);
  --shadow-button: 0 12px 32px rgba(242, 57, 128, 0.18);
  --particle-primary: rgba(242, 57, 128, 0.28);
  --particle-secondary: rgba(10, 10, 10, 0.2);
  --particle-link: rgba(242, 57, 128, 0.12);
  --x-hover: #000000;
}

/* ========================================
   Base
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top, var(--pink-glow), transparent 30%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section,
.service-section {
  position: relative;
  padding: 120px 0;
}

.section::before,
.service-section::before,
.page-hero::before,
.hero::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.section-dark,
.service-section.section-dark {
  background:
    radial-gradient(circle at top right, rgba(242, 57, 128, 0.08), transparent 30%),
    var(--bg-primary);
}

.section-soft,
.service-section.section-soft {
  background:
    radial-gradient(circle at top left, rgba(242, 57, 128, 0.06), transparent 34%),
    var(--bg-secondary);
}

.section-divider {
  width: min(calc(100% - 40px), var(--max-width));
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.8;
}

.section-header {
  position: relative;
  max-width: 760px;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Syne", sans-serif;
  letter-spacing: 0;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1;
}

h2 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
}

h4 {
  font-size: 20px;
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--text-secondary);
}

.lead {
  font-size: 18px;
  max-width: 760px;
}

.text-white {
  color: var(--text-primary);
}

.text-pink {
  color: var(--pink);
}

.copy-stack {
  display: grid;
  gap: 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-pink {
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(242, 57, 128, 0.92), rgba(242, 57, 128, 0.68));
}

.btn,
.btn-outline,
.btn-subtle,
.filter-button,
.theme-toggle,
.service-pill {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.btn,
.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 168px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  overflow: hidden;
}

.btn::before,
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.45s ease;
}

.btn:hover::before,
.btn-outline:hover::before,
.btn:focus-visible::before,
.btn-outline:focus-visible::before {
  left: 140%;
}

.btn {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  box-shadow: var(--shadow-button);
}

.btn:hover,
.btn:focus-visible {
  transform: scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 0 30px rgba(242, 57, 128, 0.32);
}

.btn-outline {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

[data-theme="light"] .btn-outline {
  border-color: var(--border-color);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  border-color: transparent;
}

.btn-subtle,
.text-link,
.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-weight: 500;
}

.learn-link {
  opacity: 0.8;
}

.learn-link:hover,
.text-link:hover,
.btn-subtle:hover,
.learn-link:focus-visible,
.text-link:focus-visible,
.btn-subtle:focus-visible {
  opacity: 1;
  transform: translateX(4px);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.cta-spacer {
  margin-top: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* ========================================
   Header / Navbar
======================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: var(--nav-scrolled);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .site-header.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: var(--nav-height);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-link img {
  height: 38px;
  width: auto;
}

.nav-desktop {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  transition: color 0.25s ease;
}

[data-theme="light"] .nav-link {
  color: rgba(10, 10, 10, 0.82);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--pink);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: scale(1.06);
}

.theme-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon svg {
  width: 18px;
  height: 18px;
}

html[data-theme="dark"] .theme-icon--moon,
html:not([data-theme="light"]) .theme-icon--moon {
  opacity: 1;
  transform: scale(1);
}

html[data-theme="light"] .theme-icon--sun {
  opacity: 1;
  transform: scale(1);
}

.nav-cta {
  min-width: 170px;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--surface-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .menu-toggle {
  border-color: rgba(0, 0, 0, 0.08);
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle.active span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 960;
  display: grid;
  place-items: start center;
  padding: calc(var(--nav-height) + 24px) 20px 20px;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

[data-theme="light"] .mobile-drawer {
  background: rgba(255, 255, 255, 0.72);
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-panel {
  width: min(100%, 520px);
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--bg-card), rgba(0, 0, 0, 0.9));
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transform: translateY(-18px);
  transition: transform 0.3s ease;
}

[data-theme="light"] .mobile-panel {
  background: linear-gradient(180deg, var(--bg-card), rgba(255, 255, 255, 0.96));
}

.mobile-drawer.open .mobile-panel {
  transform: translateY(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  background: var(--surface-elevated);
  border: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible,
.mobile-nav-link.active {
  color: var(--pink);
  border-color: var(--border-color);
  background: rgba(242, 57, 128, 0.06);
}

.mobile-panel .btn {
  width: 100%;
}

/* ========================================
   Hero
======================================== */
.hero,
.page-hero {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(242, 57, 128, 0.06) 0%, transparent 70%),
    radial-gradient(circle at top, rgba(242, 57, 128, 0.12), transparent 28%),
    var(--bg-primary);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  place-items: center;
}

.hero-content {
  max-width: 980px;
  text-align: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.word-swap {
  display: inline-block;
  color: var(--pink);
  transition: opacity 0.5s ease;
}

.word-swap.fade-out {
  opacity: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 18px;
}

.hero-actions {
  justify-content: center;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.metric-card {
  padding: 22px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

[data-theme="light"] .metric-card {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(0, 0, 0, 0.06);
}

.metric-card strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 28px;
  color: var(--text-primary);
}

.metric-card span {
  color: var(--text-secondary);
  font-size: 14px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  transition: opacity 0.25s ease, transform 0.25s ease;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator.hidden {
  opacity: 0;
  transform: translate(-50%, 8px);
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

.page-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 340px;
  padding-top: calc(var(--nav-height) + 76px);
  padding-bottom: 70px;
  background:
    radial-gradient(circle at center top, rgba(242, 57, 128, 0.14), transparent 42%),
    var(--bg-primary);
}

/* ========================================
   Layout Utilities
======================================== */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  will-change: transform;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

[data-theme="light"] .card {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(242, 57, 128, 0.46);
  box-shadow: 0 24px 70px rgba(242, 57, 128, 0.14);
}

[data-theme="light"] .card:hover,
[data-theme="light"] .card:focus-within {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon,
.value-icon,
.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--pink);
  margin-bottom: 20px;
}

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

.feature-item {
  position: relative;
  min-height: 260px;
  padding: 32px 28px 28px 36px;
  border-left: 1px solid rgba(242, 57, 128, 0.64);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.feature-number {
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: "Syne", sans-serif;
  font-size: clamp(56px, 9vw, 90px);
  font-weight: 800;
  line-height: 1;
  color: rgba(242, 57, 128, 0.08);
}

.feature-item h3 {
  margin-bottom: 12px;
}

.highlight-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.highlight-band .card {
  padding: 26px;
}

/* ========================================
   Services
======================================== */
.services-sticky-nav {
  position: sticky;
  top: var(--sticky-offset);
  z-index: 80;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .services-sticky-nav {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
  border-color: rgba(0, 0, 0, 0.05);
}

.services-pill-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.services-pill-row::-webkit-scrollbar {
  display: none;
}

.service-pill {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  white-space: nowrap;
}

[data-theme="light"] .service-pill {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.service-pill.active,
.service-pill:hover,
.service-pill:focus-visible {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  border-color: transparent;
}

.service-section {
  min-height: 100px;
}

.service-section .section-header {
  max-width: 860px;
}

.service-number {
  position: absolute;
  top: 26px;
  right: 10px;
  font-family: "Syne", sans-serif;
  font-size: clamp(88px, 12vw, 120px);
  font-weight: 800;
  line-height: 1;
  color: rgba(242, 57, 128, 0.05);
  pointer-events: none;
}

.service-subheading {
  margin: 20px 0 14px;
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 500;
}

.service-rich-copy {
  max-width: 840px;
}

.package-grid {
  display: grid;
  gap: 24px;
}

.tier-card,
.info-card,
.mini-card,
.process-step,
.belief-card {
  gap: 16px;
}

.tier-card .pill,
.info-card .pill,
.mini-card .pill {
  width: fit-content;
  background: rgba(242, 57, 128, 0.12);
  color: var(--pink-light);
}

.tier-card.popular {
  border-color: rgba(242, 57, 128, 0.56);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
}

.includes-list,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.includes-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
}

.includes-list svg,
.check-list svg {
  flex: 0 0 auto;
  margin-top: 6px;
  color: var(--pink);
}

.note-line {
  font-size: 14px;
  color: var(--text-muted);
}

.note-block {
  padding: 22px 24px;
  border-left: 2px solid var(--pink);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.03);
}

.support-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
}

.feature-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-promo-grid .card {
  padding: 26px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(242, 57, 128, 0.12);
  color: var(--pink);
  font-family: "Syne", sans-serif;
}

.service-copy-blocks {
  display: grid;
  gap: 18px;
}

.service-copy-block {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.service-copy-block h4 {
  margin-bottom: 10px;
}

/* ========================================
   Portfolio
======================================== */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.filter-button {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

[data-theme="light"] .filter-button {
  border-color: rgba(0, 0, 0, 0.12);
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  border-color: transparent;
}

.filter-empty {
  display: none;
  max-width: 640px;
  margin: 32px auto 0;
  text-align: center;
}

.filter-empty.show {
  display: flex;
}

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

.project-card {
  padding: 0;
}

.project-card.filter-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.project-card.is-hidden {
  display: none;
}

.project-image-wrap {
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background:
    radial-gradient(circle at top left, rgba(242, 57, 128, 0.18), transparent 35%),
    var(--bg-secondary);
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stack-tag {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-theme="light"] .stack-tag {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.project-action {
  margin-top: auto;
}

.project-action.disabled {
  color: var(--text-muted);
  cursor: not-allowed;
}

/* ========================================
   About
======================================== */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 52px;
  align-items: center;
}

.story-copy {
  display: grid;
  gap: 20px;
}

.founder-frame {
  position: relative;
  padding: 18px 0 0 18px;
}

.founder-frame::before {
  content: "";
  position: absolute;
  inset: 0 18px 18px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--pink);
  box-shadow: 0 0 0 1px var(--pink), 0 0 40px rgba(242, 57, 128, 0.15);
}

.founder-frame img {
  position: relative;
  z-index: 1;
  min-height: 540px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.founder-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.founder-panel img {
  width: 100px;
  height: 100px;
  margin: 0 auto 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}

.founder-title {
  margin-top: 10px;
  color: var(--pink);
  font-style: italic;
}

.beliefs-grid {
  display: grid;
  gap: 22px;
}

.belief-card {
  padding: 0 0 0 28px;
  border-left: 3px solid var(--pink);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.belief-card:hover,
.belief-card:focus-within {
  transform: none;
  box-shadow: none;
  border-color: var(--pink);
}

.belief-card p {
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 3vw, 24px);
  line-height: 1.5;
  color: var(--text-primary);
}

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

/* ========================================
   Contact / FAQ
======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.contact-card,
.contact-info {
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  gap: 8px;
}

.field-row label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  padding: 14px 18px;
  color: var(--text-primary);
  border-radius: 10px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.field-row textarea {
  min-height: 140px;
  resize: vertical;
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(242, 57, 128, 0.12);
}

.field-row.has-error input,
.field-row.has-error select,
.field-row.has-error textarea {
  border-color: rgba(255, 90, 116, 0.88);
  box-shadow: 0 0 0 3px rgba(255, 90, 116, 0.1);
}

.field-error {
  min-height: 18px;
  color: rgba(255, 144, 162, 0.98);
  font-size: 13px;
}

.contact-submit {
  width: 100%;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  color: var(--text-primary);
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--pink);
}

.response-note {
  font-style: italic;
}

.form-success,
.form-failure {
  display: none;
  align-items: start;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
}

.form-success.show,
.form-failure.show {
  display: flex;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
}

.faq-question span {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  line-height: 1.35;
}

.faq-chevron {
  flex: 0 0 auto;
  color: var(--pink);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
}

/* ========================================
   CTA / Footer / Socials
======================================== */
.cta-band {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(242, 57, 128, 0.12), transparent 38%),
    var(--bg-primary);
}

.cta-band .section-header {
  max-width: 700px; /* adjust if needed */
  margin: 0 auto;
  text-align: center;
}

.cta-band .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-strip {
  padding: 34px 0;
  background:
    linear-gradient(90deg, rgba(242, 57, 128, 0.12), rgba(242, 57, 128, 0.02), rgba(242, 57, 128, 0.12)),
    var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer {
  position: relative;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 30px;
  padding: 72px 0 42px;
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-title {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-links a,
.footer-contact a {
  color: var(--text-secondary);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-links a:focus-visible,
.footer-contact a:focus-visible {
  color: var(--pink);
}

.social-links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

[data-theme="light"] .social-link {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.social-link:hover,
.social-link:focus-visible {
  transform: scale(1.1);
  color: var(--text-primary);
  border-color: transparent;
}

.social-link--instagram:hover,
.social-link--instagram:focus-visible {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--instagram-start), var(--instagram-mid-a), var(--instagram-mid-b), var(--instagram-mid-c), var(--instagram-end));
}

.social-link--facebook:hover,
.social-link--facebook:focus-visible {
  color: var(--text-primary);
  background: var(--facebook);
}

.social-link--linkedin:hover,
.social-link--linkedin:focus-visible {
  color: var(--text-primary);
  background: var(--linkedin);
}

.social-link--x:hover,
.social-link--x:focus-visible {
  color: var(--bg-primary);
  background: var(--x-hover);
}

[data-theme="light"] .social-link--x:hover,
[data-theme="light"] .social-link--x:focus-visible {
  color: var(--text-primary);
}

.social-link--tiktok:hover,
.social-link--tiktok:focus-visible {
  color: var(--text-primary);
  background:
    linear-gradient(135deg, var(--tiktok), rgba(255, 255, 255, 0.08)),
    rgba(0, 0, 0, 0.96);
}

.footer-bottom {
  padding: 18px 0 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========================================
   WhatsApp
======================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 980;
  opacity: 0;
  transform: translateX(22px);
  animation: floatIn 0.7s ease 1s forwards;
}

@keyframes floatIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.whatsapp-ring {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.2);
  animation: pulseRing 2.4s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.88);
    opacity: 0.55;
  }

  70% {
    transform: scale(1.16);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.whatsapp-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--text-primary);
  background: rgba(37, 211, 102, 0.98);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--bg-card);
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-link:focus-visible + .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ========================================
   Reveal
======================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

[data-reveal].visible,
.hero [data-reveal],
.page-hero [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1180px) {
  .project-grid,
  .grid-3,
  .values-grid,
  .feature-promo-grid,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-desktop,
  .nav-tools .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-shell {
    justify-content: space-between;
  }

  .feature-grid,
  .story-grid,
  .support-grid,
  .contact-grid,
  .cta-strip-inner,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    display: grid;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 78px;
    --sticky-offset: 86px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section,
  .service-section {
    padding: 96px 0;
  }

  .page-hero {
    min-height: 300px;
    padding-top: calc(var(--nav-height) + 58px);
  }

  .grid-3,
  .grid-4,
  .project-grid,
  .values-grid,
  .feature-promo-grid,
  .hero-metrics,
  .footer-top,
  .highlight-band {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .btn,
  .button-row .btn-outline {
    width: 100%;
  }

  .card,
  .project-content {
    padding: 24px;
  }

  .feature-item {
    min-height: auto;
    padding: 28px 22px 26px 28px;
  }

  .faq-question span {
    font-size: 18px;
  }

  .footer-top,
  .footer-bottom,
  .footer-brand,
  .footer-links,
  .footer-contact,
  .founder-panel {
    text-align: center;
  }

  .footer-social,
  .social-links {
    justify-content: center;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 540px) {
  .brand-link img {
    height: 34px;
  }

  .services-sticky-nav {
    top: 78px;
  }

  .service-number {
    right: 0;
    top: 18px;
    font-size: 88px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .scroll-indicator {
    bottom: 16px;
  }

  .project-image-wrap {
    height: 200px;
  }
}
