:root {
  --eerie: #1C1C1C;
  --silver: #A5A4A4;
  --porcelain: #D1D1D1;
  --cultured: #F7F7F7;
  --ink: var(--eerie);
  --paper: var(--cultured);
  --hairline: rgba(28, 28, 28, 0.12);
  --hairline-strong: rgba(28, 28, 28, 0.22);
  --hairline-inv: rgba(247, 247, 247, 0.16);
  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: "Raleway", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.005em;
}

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

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

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section {
  padding: 120px 0;
  position: relative;
}
section + section {
  border-top: 1px solid var(--hairline);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  transition: width 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 247, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--hairline);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 90px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  --logo-h: 40px;
  --logo-w: 194px;
  --mark-w: 24px;
  display: block;
  position: relative;
  width: var(--logo-w);
  height: var(--logo-h);
  overflow: hidden;
  transition: width 350ms cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-logo .logo-full {
  position: absolute;
  left: 0;
  top: 0;
  height: var(--logo-h);
  width: auto;
  max-width: none;
  display: block;
  pointer-events: none;
  transition: opacity 200ms ease-out 120ms;
}
.nav-logo .logo-mark {
  position: absolute;
  top: 0;
  height: var(--logo-h);
  width: auto;
  max-width: none;
  display: block;
  left: calc(var(--logo-w) - var(--mark-w));
  transition: left 350ms cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}

.nav.scrolled .nav-logo {
  width: var(--mark-w);
}
.nav.scrolled .nav-logo .logo-full {
  opacity: 0;
  transition: opacity 160ms ease-out 0ms;
}
.nav.scrolled .nav-logo .logo-mark {
  left: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  justify-content: center;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  opacity: 0.82;
  transition: opacity 0.15s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cultured);
  padding: 12px 22px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.25s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.nav-cta svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
}

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-burger span::before, .nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}
.nav-burger span::before {
  top: -7px;
}
.nav-burger span::after {
  top: 7px;
}

@media (max-width: 820px) {
  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: grid;
  }
}
.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 60;
  padding: 24px var(--pad);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.32, 0.72, 0.24, 1), visibility 0s linear 240ms;
}
.mobile-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.32, 0.72, 0.24, 1), visibility 0s;
}
.mobile-panel .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-panel nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-panel nav a {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 360ms cubic-bezier(0.32, 0.72, 0.24, 1);
}
.mobile-panel.open nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-panel.open nav a:nth-child(1) {
  transition-delay: 80ms;
}
.mobile-panel.open nav a:nth-child(2) {
  transition-delay: 140ms;
}
.mobile-panel.open nav a:nth-child(3) {
  transition-delay: 200ms;
}
.mobile-panel.open nav a:nth-child(4) {
  transition-delay: 260ms;
}
.mobile-panel.open nav a:nth-child(5) {
  transition-delay: 320ms;
}
.mobile-panel.open nav a:nth-child(6) {
  transition-delay: 380ms;
}
.mobile-panel .foot {
  margin-top: auto;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-panel,
  .mobile-panel nav a {
    transition: none;
    transform: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--cultured);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #000;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cultured);
}
.btn-secondary:hover svg {
  transform: translateX(3px);
}

.btn-primary,
.nav-cta,
.form .submit {
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.nav-cta::after,
.form .submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.18) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.btn-primary:hover::after,
.nav-cta:hover::after,
.form .submit:hover::after {
  transform: translateX(120%);
}

.form {
  background: var(--ink);
  border: none;
  color: var(--cultured);
  border-radius: 4px;
  padding: clamp(28px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form .row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form .row:focus-within label {
  color: var(--cultured);
}
.form label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cultured);
}
.form input,
.form select {
  font: inherit;
  font-size: 16px;
  padding: 14px 0;
  background: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(209, 209, 209, 0.4);
  color: var(--cultured);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form input:focus,
.form select:focus {
  border-bottom-color: var(--cultured);
}
.form input::placeholder {
  color: var(--silver);
}
.form select {
  padding-right: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='%23F7F7F7' stroke-width='1.4' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 10px;
}
.form .submit {
  margin-top: 8px;
  padding: 18px 24px;
  background: var(--cultured);
  color: var(--ink);
  border: 1px solid var(--cultured);
  border-radius: 2px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.form .submit svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.form .submit:hover {
  transform: translateY(-1px);
  background: var(--ink);
  color: var(--cultured);
  border-color: var(--cultured);
}
.form .submit:hover svg {
  transform: translateX(3px);
}
.form .hint {
  font-size: 12px;
  color: var(--silver);
  margin-top: -4px;
}

body.has-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
body.has-reveal .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
body.has-reveal .reveal.delay-1 {
  transition-delay: 0.08s;
}
body.has-reveal .reveal.delay-2 {
  transition-delay: 0.16s;
}
body.has-reveal .reveal.delay-3 {
  transition-delay: 0.24s;
}
body.has-reveal .reveal.delay-4 {
  transition-delay: 0.32s;
}

.reveal .eyebrow::before {
  width: 0;
}

.reveal.in .eyebrow::before {
  width: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
.hero {
  padding: 0;
  background-color: var(--cultured);
  background-image: linear-gradient(rgba(28, 28, 28, 0.06) 0.5px, transparent 0.5px), linear-gradient(90deg, rgba(28, 28, 28, 0.06) 0.5px, transparent 0.5px);
  background-size: 32px 32px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 62fr 38fr;
  min-height: 600px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  gap: clamp(32px, 4vw, 64px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 80px) 0;
}

.hero-h1 {
  margin-top: 24px;
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}

.hero-h1-cont {
  margin-top: 6px;
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  opacity: 0.62;
}

.hero-body {
  margin-top: 28px;
  max-width: 48ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: #555;
}

.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 4vw, 64px) 0;
}

.hero-illustration {
  width: 100%;
  max-width: 616px;
  height: auto;
  display: block;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero.animate .eyebrow {
  animation: heroFadeUp 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) 0.08s both;
}
.hero.animate .hero-h1 {
  animation: heroFadeUp 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both;
}
.hero.animate .hero-h1-cont {
  animation: heroFadeUp 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) 0.32s both;
}
.hero.animate .hero-body {
  animation: heroFadeUp 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) 0.44s both;
}
.hero.animate .hero-ctas {
  animation: heroFadeUp 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) 0.56s both;
}
.hero.animate .hero-illustration {
  animation: heroFadeIn 0.9s ease 0.18s both;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(48px, 6vw, 64px);
    padding-bottom: clamp(48px, 6vw, 64px);
    gap: clamp(24px, 4vw, 40px);
  }
  .hero-visual {
    order: -1;
    padding: 0;
  }
  .hero-illustration {
    max-width: 462px;
  }
  .hero-content {
    padding: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero.animate .eyebrow,
  .hero.animate .hero-h1,
  .hero.animate .hero-h1-cont,
  .hero.animate .hero-body,
  .hero.animate .hero-ctas,
  .hero.animate .hero-illustration {
    animation: none !important;
  }
}
.proof {
  padding-top: 120px;
  padding-bottom: 120px;
}

.carousel-wrapper {
  margin-top: clamp(32px, 4vw, 48px);
  overflow: hidden;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.carousel-track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 auto;
  width: clamp(240px, 30vw, 320px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--ink);
  border: 1px solid var(--hairline-inv);
  border-radius: 10px;
  transition: background 0.3s ease;
}
.testimonial-card:hover {
  background: #272727;
}
.testimonial-card .t-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--silver), var(--porcelain));
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.testimonial-card .t-identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card .t-identity strong {
  font-weight: 700;
  font-size: 14px;
  color: var(--cultured);
  line-height: 1.2;
}
.testimonial-card .t-identity span {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.testimonial-card blockquote {
  margin: 0;
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(247, 247, 247, 0.82);
  letter-spacing: 0.005em;
}
.testimonial-card .t-stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--cultured);
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
  }
}
.problem {
  background: var(--ink);
  color: var(--cultured);
  text-align: center;
}
.problem .eyebrow {
  color: var(--porcelain);
  display: flex;
  justify-content: center;
  align-items: center;
}

.problem-h2 {
  margin-top: 24px;
  font-size: clamp(32px, 4.8vw, 60px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--cultured);
}

.problem-body {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 80ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: var(--silver);
}

.problem-close {
  margin-top: clamp(40px, 5vw, 64px);
  margin-left: auto;
  margin-right: auto;
  max-width: 60ch;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--cultured);
}

.features h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 24ch;
}

.feat-grid {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
}
@media (max-width: 900px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  padding: clamp(22px, 2.4vw, 30px);
  background: var(--ink);
  color: var(--cultured);
  border: 1px solid var(--hairline-inv);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s ease;
}
.feat-card:hover {
  background: #252525;
}
.feat-card .feat-icon {
  width: 28px;
  height: 28px;
  color: var(--cultured);
  margin-bottom: 6px;
  opacity: 0.75;
}
.feat-card .feat-icon svg {
  width: 100%;
  height: 100%;
}
.feat-card strong {
  font-size: clamp(15px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--cultured);
  display: block;
}
.feat-card p {
  margin: 0;
  font-size: 14px;
  color: var(--porcelain);
  line-height: 1.5;
}

.feat-cta {
  margin-top: clamp(40px, 5vw, 56px);
}

.portfolio .pf-head h2 {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 20ch;
}
.portfolio .pf-intro {
  margin-top: 16px;
  font-size: clamp(15px, 1.1vw, 17px);
  color: #3a3a3a;
  line-height: 1.6;
  max-width: 52ch;
}

.pf-grid {
  margin-top: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(260px, 26vw, 340px);
  gap: 12px;
}
.pf-grid .pf-card:nth-child(1),
.pf-grid .pf-card:nth-child(2) {
  grid-column: span 3;
}
.pf-grid .pf-card:nth-child(3),
.pf-grid .pf-card:nth-child(4),
.pf-grid .pf-card:nth-child(5) {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(200px, 38vw, 280px);
  }
  .pf-grid .pf-card:nth-child(1),
  .pf-grid .pf-card:nth-child(2),
  .pf-grid .pf-card:nth-child(3),
  .pf-grid .pf-card:nth-child(4),
  .pf-grid .pf-card:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 560px) {
  .pf-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(180px, 55vw, 260px);
  }
}

.pf-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cultured);
  border-radius: 2px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pf-card:hover {
  transform: translateY(-3px);
}
.pf-card:hover .pf-img {
  transform: scale(1.05);
}
.pf-card:hover .pf-desc {
  max-height: 60px;
  opacity: 1;
  margin-top: 3px;
}
.pf-card:hover .pf-tags {
  max-height: 40px;
  opacity: 1;
  margin-top: 7px;
}
.pf-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.pf-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pf-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.8) 100%);
}

.pf-body {
  position: relative;
  z-index: 1;
  padding: 12px;
  width: 100%;
}

.pf-meta {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 5px;
}

.pf-desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--porcelain);
  max-width: 44ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.pf-tags {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.pf-tags span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 6px;
  border: 1px solid rgba(247, 247, 247, 0.25);
  border-radius: 2px;
  color: var(--porcelain);
}

.pf-foot {
  margin-top: clamp(28px, 3.5vw, 44px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-size: clamp(15px, 1.2vw, 17px);
  color: #3a3a3a;
}
.pf-foot .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.pf-foot .link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.pf-foot .link:hover svg {
  transform: translateX(3px);
}

.how {
  background: var(--ink);
  color: var(--cultured);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.how .eyebrow {
  color: var(--porcelain);
  display: flex;
  justify-content: center;
  align-items: center;
}

.how h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  max-width: 20ch;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.how-head {
  text-align: center;
}

.steps {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-inv);
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  padding: clamp(28px, 3.2vw, 40px) clamp(20px, 2vw, 28px) clamp(32px, 4vw, 48px);
  border-right: 1px solid var(--hairline-inv);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: default;
  transition: background 0.3s ease;
}
.step:last-child {
  border-right: 0;
}
.step:hover {
  background: rgba(247, 247, 247, 0.04);
}
@media (max-width: 900px) {
  .step:nth-child(2n) {
    border-right: 0;
  }
  .step:nth-child(1), .step:nth-child(2) {
    border-bottom: 1px solid var(--hairline);
  }
}
@media (max-width: 560px) {
  .step {
    border-right: 0;
    border-bottom: 1px solid var(--hairline-inv);
  }
  .step:last-child {
    border-bottom: 0;
  }
}
.step h3 {
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.step p {
  font-size: 14.5px;
  color: var(--porcelain);
  line-height: 1.55;
}

.step-n {
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(247, 247, 247, 0.15);
}

.pricing {
  background: var(--ink);
  color: var(--cultured);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.pricing .eyebrow {
  color: var(--porcelain);
  display: flex;
  justify-content: center;
}
.pricing .sub {
  color: var(--porcelain);
}
.pricing h2,
.pricing .sub {
  text-align: center;
}
.pricing h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  max-width: 22ch;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-left: auto;
  margin-right: auto;
}
.pricing .sub {
  margin-top: 18px;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--silver);
}

.price-grid {
  margin-top: clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
}
.price-grid.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}
@media (max-width: 1080px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .price-grid, .price-grid.two {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: var(--cultured);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
}
.price-card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.18);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
  flex: 1;
}
.price-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 1.5px;
  background: var(--ink);
}
.price-card.featured {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.5);
}
.price-card.featured .price-amt .cur,
.price-card.featured .price-amt .per {
  color: var(--silver);
}
.price-card.featured .price-setup,
.price-card.featured .price-foot {
  color: #666;
}
.price-card.featured li {
  color: #333;
}
.price-card.featured li::before {
  background: var(--ink);
}
.price-card.featured ul {
  border-top-color: var(--hairline);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  width: fit-content;
  margin: 0 auto;
  background: #FFFFFF;
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.featured-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.price-name {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.price-amt {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 5px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-amt .from {
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}
.price-amt .big {
  font-size: clamp(40px, 4.2vw, 52px);
  line-height: 0.95;
}
.price-amt .cur {
  font-size: 20px;
  font-weight: 600;
  color: var(--silver);
  margin-left: 2px;
}
.price-amt .per {
  font-size: 13px;
  color: var(--silver);
  font-weight: 500;
  margin-left: 4px;
}

.price-setup {
  font-size: 13px;
  color: var(--silver);
  margin-top: -8px;
}

.price-foot {
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px;
  color: var(--silver);
}

.price-banner {
  grid-column: 1/-1;
  border: 0.5px solid rgba(209, 209, 209, 0.4);
  border-radius: 4px;
  padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 36px);
  display: flex;
  align-items: flex-end;
  gap: clamp(24px, 4vw, 56px);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.price-banner:hover {
  border-color: #d1d1d1;
  background: rgba(28, 28, 28, 0.08);
}
@media (max-width: 900px) {
  .price-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.price-banner-left {
  flex: 7;
}

.price-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.price-banner-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
  transition: width 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.price-banner-title {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  color: var(--cultured);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.price-banner-desc {
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.65;
  color: rgba(247, 247, 247, 0.7);
}

.price-banner-right {
  flex: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: flex-end;
  justify-content: center;
  gap: 0;
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .price-banner-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
}

.price-banner-price {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  color: var(--cultured);
  white-space: nowrap;
}

.price-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--cultured);
  border-bottom: 1px solid var(--cultured);
  padding-bottom: 2px;
  white-space: nowrap;
}
.price-banner-cta svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.price-banner-cta:hover svg {
  transform: translateX(3px);
}

.bundle-line {
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 36px);
  border: 1px dashed var(--hairline-inv);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: clamp(15px, 1.1vw, 17px);
}
.bundle-line a {
  font-weight: 600;
  border-bottom: 1px solid var(--cultured);
  padding-bottom: 1px;
  color: var(--cultured);
}

.faq {
  background: var(--ink);
  color: var(--cultured);
  border-top: 1px solid var(--ink);
}
.faq .eyebrow {
  color: var(--silver);
}

.faq h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  max-width: 20ch;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.faq-list {
  margin-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--hairline-inv);
}

.faq-item {
  border-bottom: 1px solid var(--hairline-inv);
  transition: background 0.25s ease;
}
.faq-item:hover {
  background: rgba(247, 247, 247, 0.04);
}
.faq-item:hover .faq-q {
  padding-left: 6px;
}
.faq-item.open .faq-q .plus {
  background: var(--cultured);
  border-color: var(--cultured);
  transform: rotate(180deg);
}
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after {
  background: var(--ink);
}
.faq-item.open .faq-q .plus::after {
  transform: scaleY(0);
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: clamp(20px, 2.4vw, 28px) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  color: var(--cultured);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: padding-left 0.25s ease;
}
.faq-q .plus {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hairline-inv);
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.3s ease, background 0.2s, border-color 0.2s;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--cultured);
  transition: transform 0.3s ease;
}
.faq-q .plus::before {
  width: 12px;
  height: 1.5px;
}
.faq-q .plus::after {
  width: 1.5px;
  height: 12px;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-a > div {
  overflow: hidden;
}
.faq-a p {
  padding: 0 0 clamp(20px, 2.4vw, 28px) 0;
  max-width: 70ch;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--silver);
  line-height: 1.6;
}

.final {
  background: var(--cultured);
  color: var(--ink);
  border-top: 1px solid var(--hairline);
}
.final h2 {
  font-size: clamp(40px, 5.6vw, 76px);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.final h2 .em {
  color: var(--silver);
  font-style: italic;
  font-weight: 500;
}
.final .desc {
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  color: #555;
  line-height: 1.65;
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 72px);
  justify-items: center;
  text-align: center;
}

.final-left .hero-ctas {
  justify-content: center;
}

footer {
  background: var(--ink);
  color: var(--cultured);
  border-top: 1px solid var(--ink);
}

.footer-top {
  padding: clamp(64px, 7vw, 96px) var(--pad) clamp(40px, 5vw, 56px);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.footer-top img {
  height: 80px;
  width: auto;
  margin-top: -24px;
  margin-bottom: 8px;
  margin-left: -16px;
}
.footer-top .tag {
  font-size: 14px;
  color: var(--silver);
  max-width: 32ch;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--porcelain);
}
.footer-col a:hover {
  color: var(--cultured);
}

.footer-bottom {
  border-top: 1px solid var(--hairline-inv);
  padding: 24px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--silver);
}
