@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg-cream-1: #FBF7F0;
  --bg-cream-2: #F5EFE3;
  --bg-cream-3: #EFE6D5;
  --bg-card: rgba(251, 247, 240, 0.92);
  --bg-card-hover: rgba(251, 247, 240, 0.99);
  --bg-beige: #F5EFE3;
  --bg-eucalyptus: #E5E8DC;
  --bg-rose-pale: #EBD8D5;
  --bg-sage-pale: #DDE3D0;
  --bg-cocoa-pale: #E8DAD0;
  --bg-dark: #2A1F2A;
  --bg-dark-deep: #1A0F1A;
  --text-main: #2A1F2A;
  --text-secondary: #3A2F2A;
  --text-muted: #6B6B65;
  --accent-plum: #5C2E3E;
  --accent-rose: #D4A8B0;
  --accent-sage: #7A8B7C;
  --accent-caramel: #C49A7A;
  --accent-amber: #B8845A;
  --accent-eucalyptus: #9BAA8F;
  --accent-cocoa: #A87E68;
  --border-soft: rgba(42, 31, 42, 0.85);
  --border-hard: #2A1F2A;
  --pastel-plum: #E5C8C5;
  --pastel-rose: #F0DCD8;
  --pastel-sage: #C8D4C5;
  --pastel-caramel: #E8D2B8;
  --pastel-amber: #E8D0B5;
  --pastel-eucalyptus: #C5D0C5;
  --pastel-cocoa: #E0C8B0;
  --shadow-soft: 0 16px 40px rgba(42, 31, 42, 0.10);
  --shadow-soft-deep: 0 24px 56px rgba(42, 31, 42, 0.16);
  --shadow-stamp: 8px 8px 0px var(--accent-plum);
  --shadow-stamp-deep: 14px 14px 0px var(--accent-plum);
  --font-editorial: 'Cormorant Garamond', serif;
  --font-swiss: 'Inter', sans-serif;
  --font-tech: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-swiss);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--bg-cream-1) 0%, var(--bg-cream-2) 50%, var(--bg-cream-3) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

strong, p, span, a, li, h1, h2, h3, h4, h5, h6, button, label, input, textarea, select { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-style: italic;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

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

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

button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }

ul, ol { list-style: none; }

::selection { background: var(--accent-plum); color: var(--bg-cream-1); }

.fp-mono { font-family: var(--font-tech); }
.fp-editorial { font-family: var(--font-editorial); font-style: italic; }
.fp-swiss { font-family: var(--font-swiss); }

.fp-eyebrow {
  font-family: var(--font-tech);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-main);
}

.fp-stamp {
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fp-tech-label {
  font-family: var(--font-tech);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-main);
}

.fp-pullquote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-main);
}

.fp-h1-hero {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 9vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.fp-h2-section {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.fp-h2-tech {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fp-h3-sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
}

.fp-h4-item {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
}

.fp-editorial-accent {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.5;
}

.fp-body { font-family: var(--font-swiss); font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.fp-body-sm { font-family: var(--font-swiss); font-size: 13px; line-height: 1.7; color: var(--text-secondary); }

.fp-divider-line {
  height: 2.5px;
  width: 220px;
  background: var(--accent-plum);
  border-radius: 100px;
  position: relative;
}
.fp-divider-line::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--accent-rose);
}

.fp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  padding: 18px 32px;
  border-radius: 100px;
  border: 1.5px solid var(--border-hard);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
}

.fp-pill-primary {
  background: linear-gradient(135deg, var(--accent-plum) 0%, var(--accent-amber) 100%);
  color: var(--bg-cream-1);
  box-shadow: 6px 6px 0px var(--border-hard);
  border-color: var(--border-hard);
}
.fp-pill-primary:hover {
  box-shadow: 10px 10px 0px var(--border-hard);
  transform: translate(-2px, -2px);
  outline: 2.5px solid var(--accent-rose);
  outline-offset: 4px;
}

.fp-pill-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border-color: var(--border-hard);
  box-shadow: 5px 5px 0px var(--accent-rose);
}
.fp-pill-secondary:hover {
  box-shadow: 9px 9px 0px var(--accent-rose);
  transform: translate(-2px, -2px);
  outline: 2.5px solid var(--accent-plum);
  outline-offset: 4px;
}

.fp-pill-ghost {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-hard);
}
.fp-pill-ghost:hover {
  background: rgba(92, 46, 62, 0.10);
  transform: translateY(-2px);
}

.fp-stamp-marker {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 100px;
  background: var(--accent-plum);
  opacity: 0.7;
}

.fp-card-floating {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-soft), var(--shadow-stamp);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 48px 40px;
}
.fp-card-floating:hover {
  transform: scale(1.04) rotate(0deg) skewX(0deg);
  z-index: 35;
  position: relative;
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-soft-deep), var(--shadow-stamp-deep);
  outline: 2.5px solid var(--accent-rose);
  outline-offset: 6px;
}
.fp-card-floating .fp-corner-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: var(--accent-plum);
  opacity: 0.5;
  transition: all 0.4s ease;
}
.fp-card-floating:hover .fp-corner-dot { width: 7px; height: 7px; opacity: 0.85; }
.fp-card-floating .fp-corner-dot.tl { top: 8px; left: 8px; }
.fp-card-floating .fp-corner-dot.tr { top: 8px; right: 8px; }
.fp-card-floating .fp-corner-dot.bl { bottom: 8px; left: 8px; }
.fp-card-floating .fp-corner-dot.br { bottom: 8px; right: 8px; }

.fp-card-inverse {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-deep) 100%);
  color: var(--bg-cream-1);
}
.fp-card-inverse h2, .fp-card-inverse h3, .fp-card-inverse h4 { color: var(--bg-cream-1); }
.fp-card-inverse .fp-body, .fp-card-inverse .fp-body-sm { color: var(--accent-rose); }

.fp-skew-card-l { transform: rotate(-1.2deg) skewX(-0.8deg); }
.fp-skew-card-r { transform: rotate(1.2deg) skewX(0.8deg); }
.fp-skew-pill { transform: rotate(2deg); }

.fp-section {
  position: relative;
  padding: 100px 0;
  width: 100%;
}
.fp-section-tight { padding: 60px 0; }
.fp-section-spacer { padding: 140px 0; }

.fp-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

.fp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fp-grid-bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(180px, auto); gap: 18px; }

.fp-bento-1 { grid-column: span 4; grid-row: span 2; }
.fp-bento-2 { grid-column: span 2; grid-row: span 1; }
.fp-bento-3 { grid-column: span 2; grid-row: span 1; }
.fp-bento-4 { grid-column: span 3; grid-row: span 1; }
.fp-bento-5 { grid-column: span 3; grid-row: span 1; }

.fp-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 0 60px;
  overflow: hidden;
  max-width: 100vw;
}

.fp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 31, 42, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 31, 42, 0.10) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  opacity: 0.6;
}

.fp-hero-particle {
  position: absolute;
  border-radius: 100px;
  pointer-events: none;
  background: var(--accent-plum);
  opacity: 0.55;
}

.fp-pastel-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.fp-matte-glass {
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 240, 0.42);
  backdrop-filter: blur(38px) saturate(160%);
  -webkit-backdrop-filter: blur(38px) saturate(160%);
  pointer-events: none;
}

.fp-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='0.85'/></filter><rect width='100' height='100' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.018;
  pointer-events: none;
}

.fp-corner-bracket {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--text-main);
  opacity: 0.5;
  border-style: solid;
  border-width: 0;
}

.fp-coord-stamp {
  position: absolute;
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-main);
  opacity: 0.5;
  text-transform: uppercase;
}

.fp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  background: rgba(251, 247, 240, 0.94);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border-bottom: 1.5px solid rgba(42, 31, 42, 0.20);
  box-shadow: 0 4px 24px rgba(42, 31, 42, 0.06);
  z-index: 100;
  display: flex;
  align-items: center;
  padding-left: 28px;
  padding-right: 28px;
}

.fp-header.scrolled {
  background: rgba(251, 247, 240, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

.fp-header-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-plum), var(--accent-rose), var(--accent-caramel));
  opacity: 0.7;
  transform-origin: 0 0;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

.fp-logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fp-logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1.5px solid var(--border-hard);
  background: linear-gradient(135deg, var(--accent-plum) 0%, var(--accent-rose) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px var(--border-hard), 0 0 24px rgba(92, 46, 62, 0.28);
  animation: fp-logo-sway 6s ease-in-out infinite;
  position: relative;
  flex-shrink: 0;
}
.fp-logo-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 100px;
  border: 0.5px solid var(--accent-plum);
  pointer-events: none;
}

@keyframes fp-logo-sway {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}

.fp-logo-mark svg { width: 26px; height: 26px; }

.fp-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.fp-logo-domain {
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-main);
}
.fp-logo-name {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--text-main);
  margin-top: 2px;
}

.fp-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  padding: 0 24px;
}

.fp-nav-item {
  position: relative;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-main);
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 100px;
}
.fp-nav-item:hover {
  background: rgba(92, 46, 62, 0.12);
  transform: translateY(-1px);
}
.fp-nav-item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: var(--accent-rose);
  transition: transform 0.4s ease;
}
.fp-nav-item:hover::after { transform: translateX(-50%) scaleX(1); }
.fp-nav-item.active { font-weight: 700; }
.fp-nav-item.active::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 1.5px;
  background: var(--accent-plum);
}

.fp-nav-divider {
  width: 1.5px;
  height: 28px;
  background: var(--accent-plum);
  opacity: 0.6;
}

.fp-header-cta {
  margin-left: auto;
}

.fp-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  border: 1.5px solid var(--border-hard);
  background: var(--bg-cream-1);
  box-shadow: 4px 4px 0px var(--accent-plum);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.fp-burger span {
  width: 18px;
  height: 1.5px;
  background: var(--text-main);
  border-radius: 100px;
  transition: transform 0.4s ease;
}
.fp-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.fp-burger.open span:nth-child(2) { opacity: 0; }
.fp-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.fp-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 247, 240, 0.42);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  padding: 40px 32px 60px;
}
.fp-mobile-menu.open { transform: translateY(0); }

.fp-mobile-logo {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(251, 247, 240, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(42, 31, 42, 0.20);
  z-index: 101;
  padding: 0 18px;
  align-items: center;
  gap: 10px;
  display: none;
}
.fp-mobile-logo .fp-logo-mark { width: 40px; height: 40px; }
.fp-mobile-logo .fp-logo-domain { font-size: 11px; }
.fp-mobile-logo .fp-logo-name { font-size: 13px; }
.fp-mobile-logo .fp-burger { margin-left: auto; }

.fp-mobile-nav { display: flex; flex-direction: column; }
.fp-mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  color: var(--text-main);
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(122, 139, 124, 0.30);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fp-mobile-nav a .fp-mono-num {
  font-family: var(--font-tech);
  font-size: 14px;
  color: var(--accent-plum);
  font-weight: 500;
  letter-spacing: 0.08em;
  width: 32px;
}
.fp-mobile-menu.open .fp-mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}
.fp-mobile-menu.open .fp-mobile-nav a:nth-child(1) { transition-delay: 0.07s; }
.fp-mobile-menu.open .fp-mobile-nav a:nth-child(2) { transition-delay: 0.14s; }
.fp-mobile-menu.open .fp-mobile-nav a:nth-child(3) { transition-delay: 0.21s; }
.fp-mobile-menu.open .fp-mobile-nav a:nth-child(4) { transition-delay: 0.28s; }
.fp-mobile-menu.open .fp-mobile-nav a:nth-child(5) { transition-delay: 0.35s; }
.fp-mobile-menu.open .fp-mobile-nav a:nth-child(6) { transition-delay: 0.42s; }
.fp-mobile-menu.open .fp-mobile-nav a:nth-child(7) { transition-delay: 0.49s; }

.fp-footer {
  background: var(--bg-dark);
  color: var(--bg-cream-1);
  padding: 80px 0 40px;
  position: relative;
}
.fp-footer h4 { color: var(--bg-cream-1); }
.fp-footer a { color: var(--accent-rose); }
.fp-footer a:hover { color: var(--bg-cream-1); }

.fp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.fp-footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 247, 240, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(251, 247, 240, 0.7);
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.fp-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--bg-cream-1);
  border: 1.5px solid var(--border-hard);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(42, 31, 42, 0.18), 6px 6px 0px var(--accent-plum);
  z-index: 200;
  font-family: var(--font-swiss);
  color: var(--text-main);
}
.fp-cookie-banner.is-hidden { display: none; }
.fp-cookie-banner p { font-size: 13px; line-height: 1.65; margin-bottom: 14px; color: var(--text-main); }
.fp-cookie-buttons { display: flex; gap: 8px; }
.fp-cookie-buttons button {
  flex: 1;
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: 1.5px solid var(--border-hard);
  transition: all 0.3s ease;
}
.fp-cookie-accept { background: var(--accent-plum); color: var(--bg-cream-1); }
.fp-cookie-accept:hover { background: var(--bg-dark); }
.fp-cookie-decline { background: transparent; color: var(--text-main); }
.fp-cookie-decline:hover { background: rgba(92, 46, 62, 0.10); }

.fp-faq-item {
  border-bottom: 1px solid rgba(42, 31, 42, 0.20);
  padding: 20px 0;
}
.fp-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 0;
  color: var(--text-main);
}
.fp-faq-icon {
  font-family: var(--font-tech);
  font-size: 18px;
  color: var(--accent-plum);
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  border: 1.5px solid var(--accent-plum);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.fp-faq-item.open .fp-faq-icon { background: var(--accent-plum); color: var(--bg-cream-1); }
.fp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: var(--font-swiss);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.fp-faq-item.open .fp-faq-answer {
  max-height: 500px;
  padding-top: 12px;
}

.fp-form-field { margin-bottom: 18px; }
.fp-form-label {
  display: block;
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: 600;
}
.fp-form-input, .fp-form-textarea, .fp-form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(251, 247, 240, 0.94);
  border: 1.5px solid var(--border-hard);
  border-radius: 14px;
  font-family: var(--font-swiss);
  font-size: 15px;
  color: var(--text-main);
  transition: all 0.3s ease;
}
.fp-form-input:focus, .fp-form-textarea:focus, .fp-form-select:focus {
  outline: 2.5px solid var(--accent-plum);
  outline-offset: 3px;
  background: var(--bg-cream-1);
}
.fp-form-textarea { resize: vertical; min-height: 140px; }

.fp-stat-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-bottom: 1px solid rgba(42, 31, 42, 0.12);
}
.fp-stat-key { font-family: var(--font-tech); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); min-width: 130px; }
.fp-stat-val { font-family: var(--font-tech); font-size: 12px; color: var(--text-main); }

.fp-marker-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid rgba(42, 31, 42, 0.4);
  border-radius: 100px;
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-main);
}
.fp-marker-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background: var(--accent-plum);
}

.fp-asym-cap {
  display: inline-block;
  padding: 12px 22px;
  background: var(--bg-dark);
  color: var(--bg-cream-1);
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 100px;
  transform: rotate(3deg);
  box-shadow: 3px 3px 0px var(--accent-rose);
}

.fp-scroll-h {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-plum) transparent;
}
.fp-scroll-h::-webkit-scrollbar { height: 6px; }
.fp-scroll-h::-webkit-scrollbar-thumb { background: var(--accent-plum); border-radius: 100px; }
.fp-scroll-h > * { scroll-snap-align: start; flex-shrink: 0; }

.fp-grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.fp-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--text-main);
}
.fp-spec-table tr { border-bottom: 1px solid rgba(42, 31, 42, 0.15); }
.fp-spec-table td { padding: 10px 8px; vertical-align: top; }
.fp-spec-table td:first-child { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.14em; width: 40%; }

.fp-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.fp-marquee-inner {
  display: inline-flex;
  gap: 60px;
  animation: fp-marquee-scroll 30s linear infinite;
  padding-right: 60px;
}
@keyframes fp-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fp-bullet-dotted {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.fp-bullet-dotted::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: var(--accent-plum);
}

@media (max-width: 1100px) {
  .fp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .fp-footer-grid { grid-template-columns: 1fr 1fr; }
  .fp-nav { display: none; }
  .fp-header { display: none; }
  .fp-mobile-logo { display: flex; }
  .fp-burger { display: flex; }
  .fp-header-cta { display: none; }
  .fp-header { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 760px) {
  .fp-container { padding: 0 16px; }
  .fp-section { padding: 70px 0; }
  .fp-section-spacer { padding: 90px 0; }
  .fp-grid-2, .fp-grid-3, .fp-grid-4 { grid-template-columns: 1fr; }
  .fp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .fp-grid-bento { grid-template-columns: repeat(2, 1fr); }
  .fp-bento-1, .fp-bento-2, .fp-bento-3, .fp-bento-4, .fp-bento-5 { grid-column: span 2; grid-row: auto; }
  .fp-card-floating { padding: 32px 24px; }
  .fp-skew-card-l, .fp-skew-card-r { transform: none; }
  .fp-cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .fp-hero { min-height: auto; padding: 100px 0 40px; }
  .fp-footer-bottom { flex-direction: column; align-items: flex-start; }
  .fp-corner-bracket { display: none; }
  .fp-coord-stamp { display: none; }
  .fp-pastel-blob { width: 280px !important; height: 280px !important; }
  .fp-hero-grid { display: none; }
  .fp-noise { display: none; }
  .fp-matte-glass { display: none; }
  [data-hero-grid] { grid-template-columns: 1fr !important; }
  .fp-hero .fp-card-floating { padding: 28px 20px; }
  .fp-hero .fp-card-floating h1.fp-h1-hero { font-size: clamp(32px, 10vw, 48px); }
  .fp-hero [data-hero-grid] > .fp-card-floating:first-child img { height: 240px; }
  .fp-hero .fp-skew-pill { flex-direction: column; text-align: center; padding: 20px 24px; }
  .fp-hero .fp-card-floating > div[style*="grid-template-columns: 1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media (min-width: 761px) {
  [data-hero-grid] { grid-template-columns: 1.05fr 1fr !important; gap: 32px !important; }
}

@media (min-width: 1100px) {
  .fp-mobile-logo { display: none !important; }
}

.fp-stagger-fade > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fp-stagger-fade.visible > * { opacity: 1; transform: translateY(0); }
.fp-stagger-fade.visible > *:nth-child(1) { transition-delay: 0.0s; }
.fp-stagger-fade.visible > *:nth-child(2) { transition-delay: 0.1s; }
.fp-stagger-fade.visible > *:nth-child(3) { transition-delay: 0.2s; }
.fp-stagger-fade.visible > *:nth-child(4) { transition-delay: 0.3s; }
.fp-stagger-fade.visible > *:nth-child(5) { transition-delay: 0.4s; }
.fp-stagger-fade.visible > *:nth-child(6) { transition-delay: 0.5s; }
.fp-stagger-fade.visible > *:nth-child(7) { transition-delay: 0.6s; }
.fp-stagger-fade.visible > *:nth-child(8) { transition-delay: 0.7s; }

.fp-prlx { transition: transform 0.3s ease-out; }

.fp-input-required-error {
  outline: 2.5px solid #c0392b !important;
  outline-offset: 3px;
}

.fp-thanks-wrap {
  text-align: center;
  padding: 120px 24px;
  max-width: 720px;
  margin: 0 auto;
}
