/* ============================================
   LYNKVA — components.css
   Nav, gallery cards, plus button, segmented
   control, testimonial, pricing, footer
   ============================================ */

/* ---------- Nav (plain white, thin) ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.875rem;
  padding-inline: clamp(1rem, 2.5vw, 1.6rem);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.logo svg {
  width: 1.625rem;
  height: 1.625rem;
  color: var(--ink);
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.9rem;
  font-size: var(--t-small);
  color: var(--ink);
}

.nav-links a {
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-login {
  font-size: var(--t-small);
}

@media (max-width: 56.25rem) {
  .nav-links,
  .nav-login {
    display: none;
  }
}

/* ---------- Gallery: pinned horizontal scroll strip ----------
   Vertical scroll drives horizontal movement (ScrollTrigger pin+scrub).
   Falls back to a native side-scroller when JS/motion is unavailable. */
.gallery-section {
  overflow: hidden;
}

.gallery {
  display: flex;
  gap: 0.875rem;
  padding-inline: var(--edge);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery.is-dragging {
  cursor: grabbing;
}

.gcard {
  position: relative;
  /* reference: 2 cards per viewport — (100vw − 2×8px edge − 14px gap) / 2 */
  flex: 0 0 calc(50vw - 0.9375rem);
  border-radius: var(--r-panel);
  overflow: hidden;
  aspect-ratio: 973 / 920;
  isolation: isolate;
}

@media (max-width: 45rem) {
  .gcard {
    flex-basis: 86vw;
  }
}

.gcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.07'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* bottom scrim so labels read like exactly.ai */
.gcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.38), transparent 42%);
}

/* top-left feature tag — echoes the pop-up category badge. Dark glass so it
   stays legible on both bright and dark cover photos. */
.gcard-badge {
  position: absolute;
  top: clamp(1.2rem, 2.6vw, 2.1rem);
  left: clamp(1.4rem, 3vw, 2.5rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.375rem 0.8125rem;
  border-radius: var(--r-pill);
  background: rgba(18, 20, 24, 0.34);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  color: #fff;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 500;
  white-space: nowrap;
}

.gcard-badge::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.gcard-label {
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.5rem);
  bottom: clamp(1.2rem, 2.6vw, 2.1rem);
  z-index: 2;
  color: #fff;
}

.gcard-label b {
  display: block;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 400;
}

.gcard-label span {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(255, 255, 255, 0.62);
}

/* translucent glass "+" circle that morphs into a "Read more" pill,
   bottom-right, exactly.ai style */
.plus-btn {
  position: absolute;
  right: clamp(1.2rem, 2.4vw, 2rem);
  bottom: clamp(1.2rem, 2.4vw, 2rem);
  z-index: 2;
  height: 3.75rem;
  min-width: 3.75rem;
  padding: 0;
  border-radius: 62.4375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  color: #fff;
  transition: background 0.25s, padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.plus-ico {
  display: grid;
  place-items: center;
  width: 1.5rem;
  opacity: 1;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s;
}

.plus-ico svg {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
}

.plus-more {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.95rem;
  transition: max-width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}

/* on card hover (or keyboard focus) the icon collapses and the label opens */
.gcard:hover .plus-btn,
.plus-btn:focus-visible {
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.22);
}

.gcard:hover .plus-ico,
.plus-btn:focus-visible .plus-ico {
  width: 0;
  opacity: 0;
}

.gcard:hover .plus-more,
.plus-btn:focus-visible .plus-more {
  max-width: 11.25rem;
  opacity: 1;
}

/* ---------- Showcase drawer (slide-in case study) ---------- */
.showcase {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.showcase.is-open {
  visibility: visible;
}

.showcase-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.showcase.is-open .showcase-backdrop {
  opacity: 1;
}

.showcase-panel {
  position: relative;
  width: min(41.25rem, 100%);
  max-height: 88vh;
  background: var(--bg);
  border-radius: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 1.875rem 5rem -1.25rem rgba(0, 0, 0, 0.4);
  overflow: hidden; /* clip rounded corners; the inner region scrolls */
  opacity: 0;
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

/* the actual scroll region, so the close button can stay pinned above it */
.showcase-scroll {
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.showcase-scroll::-webkit-scrollbar {
  display: none;
}

.showcase.is-open .showcase-panel {
  opacity: 1;
  transform: scale(1);
}

/* cover photo (same image as the gallery card), full-bleed at the top */
.showcase-cover {
  height: clamp(11.875rem, 30vw, 16.25rem);
  background-size: cover;
  background-position: center;
  background-color: var(--card-gray);
}

.showcase-inner {
  padding: clamp(1.8rem, 4vw, 2.8rem);
}

.showcase-close {
  position: absolute;
  z-index: 3;
  top: clamp(1rem, 2.2vw, 1.4rem);
  right: clamp(1rem, 2.2vw, 1.4rem);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  color: var(--ink);
  box-shadow: 0 0.125rem 0.625rem -0.125rem rgba(0, 0, 0, 0.25);
  transition: background 0.2s;
}

.showcase-close:hover {
  background: #fff;
}

.showcase-close svg {
  width: 1.125rem;
  height: 1.125rem;
}

.showcase-cat {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
}

.showcase-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.015em;
}

/* emotional lead line, set a touch larger */
.showcase-lead {
  margin-top: 0.7rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

/* flowing narrative */
.showcase-story {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  gap: 1.05rem;
}

.showcase-story p {
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* emotional payoff */
.showcase-highlight {
  margin-top: 1.5rem;
  padding: 1.1rem 1.3rem;
  border-radius: 1rem;
  background: var(--accent-tint);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 500;
  text-wrap: pretty;
}

/* how-to steps */
.showcase-how {
  margin-top: clamp(1.8rem, 4vw, 2.4rem);
}

.showcase-how-title {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
}

.showcase-steps {
  list-style: none;
  counter-reset: scs;
  display: grid;
  gap: 0.75rem;
}

.showcase-steps li {
  counter-increment: scs;
  position: relative;
  padding-left: 2.2rem;
  font-size: var(--t-body);
  line-height: 1.5;
  color: var(--ink-2);
}

.showcase-steps li::before {
  content: counter(scs);
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  font-variant-numeric: tabular-nums;
}

/* call to action */
.showcase-cta {
  margin-top: clamp(1.8rem, 4vw, 2.4rem);
  width: 100%;
}

/* gradient art fills (stand-ins for salon photography) */
.art-forest { background: linear-gradient(155deg, #4c5a4a 0%, #2d3a2e 55%, #1d2620 100%); }
.art-cream { background: linear-gradient(155deg, #e8d9c4 0%, #c9a97e 60%, #a97f52 100%); }
.art-slate { background: linear-gradient(155deg, #aab6c2 0%, #67737f 60%, #454e58 100%); }
.art-terra { background: linear-gradient(155deg, #d98e63 0%, #b25f3a 55%, #7e3c22 100%); }
.art-mauve { background: linear-gradient(155deg, #cbb2c0 0%, #96687e 60%, #5e3c4e 100%); }

/* photo fills — real business photography (paths relative to this CSS file) */
.art-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* background-color = dominant tint, painted instantly so the card never
   flashes white while the webp streams in (smooth first paint) */
.art-salon { background-color: #c6baba; background-image: url("../assets/salon.webp"); }
.art-barbershop { background-color: #98847d; background-image: url("../assets/barbershop.webp"); }
.art-nails { background-color: #908398; background-image: url("../assets/nails.webp"); }
.art-pet { background-color: #c5b3a3; background-image: url("../assets/pet.webp"); }
.art-spa { background-color: #a08875; background-image: url("../assets/spa.webp"); }

/* ---------- Segmented control (dark pill) ---------- */
.segment {
  display: inline-flex;
  gap: 0;
  padding: 0.375rem;
  background: rgba(30, 30, 30, 0.82);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  border-radius: var(--r-pill);
}

.segment button {
  padding: 0.75rem 1.625rem;
  border-radius: var(--r-pill);
  font-size: var(--t-small);
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.segment button:hover {
  color: rgba(255, 255, 255, 0.8);
}

.segment button.is-on {
  background: #fff;
  color: var(--ink);
}

/* ---------- Testimonials ---------- */
.tsm {
  max-width: 58.75rem;
  margin-inline: auto;
  padding-block: clamp(2.2rem, 4.5vw, 3.6rem);
}

.tsm + .tsm {
  border-top: 0.09375rem dotted var(--line-dot);
}

.tsm-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: var(--t-small);
  color: var(--ink-2);
  margin-bottom: 1.3rem;
}

.tsm-meta .sep {
  width: 0.0625rem;
  height: 0.875rem;
  background: var(--line-dot);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.125rem;
  font-size: 0.95rem;
}

.tsm-quote {
  font-family: var(--font);
  font-size: 1.3125rem;
  line-height: 2rem;
  color: var(--ink-2);
  max-width: 53.75rem;
}

.tsm-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.tsm-ava {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.tsm-name {
  font-size: var(--t-small);
  color: var(--ink);
}

.tsm-role {
  font-size: var(--t-small);
  color: var(--text-gray);
}

/* ---------- Pricing cards ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--edge);
  padding-inline: var(--edge);
}

.plan {
  position: relative;
  background: var(--card-gray);
  border-radius: var(--r-panel);
  padding: clamp(2.2rem, 4vw, 3.75rem) clamp(1.8rem, 3.5vw, 3.75rem) clamp(1.8rem, 3vw, 2.5rem);
}

/* Featured (Pro) card */
.plan--featured {
  outline: 0.125rem solid var(--accent);
  outline-offset: -0.125rem;
}

.plan-badge {
  position: absolute;
  top: clamp(1.4rem, 3vw, 2rem);
  right: clamp(1.4rem, 3vw, 2rem);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ---------- Billing cycle toggle ---------- */
.pay-toggle {
  display: flex;
  gap: 0.25rem;
  margin: clamp(2rem, 5vw, 3rem) auto clamp(3rem, 6vw, 4.5rem);
  padding: 0.3125rem;
  border-radius: var(--r-pill);
  background: var(--pill-gray);
  /* block-level flex + max-content width so margin-inline auto centers it */
  width: max-content;
  max-width: 100%;
}

.pay-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: var(--r-pill);
  font-size: var(--t-small);
  color: var(--text-gray-2);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.pay-toggle button.is-on {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.08);
}

.pay-save {
  padding: 0.125rem 0.5rem;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 500;
}

/* ---------- Language switch (nav) ---------- */
.lang-switch {
  display: inline-flex;
  gap: 0.125rem;
  padding: 0.1875rem;
  border-radius: var(--r-pill);
  background: var(--pill-gray);
}

.lang-switch button {
  padding: 0.375rem 0.625rem;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-gray-2);
  transition: background 0.2s, color 0.2s;
}

.lang-switch button.is-on {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.08);
}

/* ---------- Plan price ---------- */
.plan-price {
  position: relative;
  padding-top: 1.7rem;
  margin-bottom: 1.6rem;
}

.plan-was {
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--t-body);
  color: var(--text-gray);
  text-decoration: line-through;
  line-height: 1.4;
}

.plan-amt {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.plan-num {
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.plan-num--sm {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.plan-per {
  font-size: var(--t-body);
  color: var(--text-gray);
}

.plan-note {
  margin-top: 0.6rem;
  min-height: 2.6em;
  font-size: var(--t-small);
  color: var(--text-gray);
}

.plan-glyph {
  width: 4rem;
  height: 4rem;
  color: #e3e3e3;
  margin-bottom: 2.6rem;
}

.plan h3 {
  font-size: var(--t-feature);
  margin-bottom: 0.9rem;
}

.plan-desc {
  font-size: var(--t-feature);
  line-height: 1.5;
  color: var(--text-gray);
  min-height: 4.4em;
  margin-bottom: 1.8rem;
}

.plan-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.2rem;
}

.plan-list {
  border-top: 0.09375rem dotted var(--line-dot);
  padding-top: 1.8rem;
  display: grid;
  gap: 0.85rem;
}

.plan-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: var(--t-small);
  color: var(--ink-2);
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0.125rem;
  top: 0.52em;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: var(--ink);
}

.plan-new {
  margin-left: 0.6rem;
  padding: 0.125rem 0.625rem;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 0.78rem;
}

@media (max-width: 60rem) {
  .pricing {
    grid-template-columns: 1fr;
  }

  .plan-desc {
    min-height: 0;
  }
}

/* ---------- FAQ (categorized accordion) ---------- */
.faq {
  width: min(48.75rem, 100%);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
}

.faq-group {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
}

.faq-group + .faq-group {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.faq-cat {
  font-size: var(--t-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  margin-bottom: 0.4rem;
}

.faq-item {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-ico {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: none;
  color: var(--text-gray-2);
}

.faq-ico::before,
.faq-ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 0.125rem;
}

.faq-ico::before {
  width: 0.875rem;
  height: 0.1rem;
  transform: translate(-50%, -50%);
}

.faq-ico::after {
  width: 0.1rem;
  height: 0.875rem;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-ico::after {
  transform: translate(-50%, -50%) scaleY(0);
}

/* explicit collapse — robust even where the UA details style is absent */
.faq-item:not([open]) .faq-ans {
  display: none;
}

.faq-ans {
  padding: 0 0 1.4rem;
  max-width: 62ch;
}

.faq-ans p {
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--text-gray);
}

.faq-ans a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

/* ---------- Footer (black, Lumira-style columns + watermark) ---------- */
.footer {
  background: var(--black);
  color: #fff;
  /* tucked under main's rounded bottom corners (exactly.ai seam) */
  margin-top: calc(var(--r-join) * -1);
  padding: calc(clamp(3.5rem, 7vw, 5.5rem) + var(--r-join)) 0 0;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  width: min(var(--w-content), 100% - var(--gutter) * 2);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-logo svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent);
}

.footer-tagline {
  margin-top: 1rem;
  max-width: 36ch;
  font-size: var(--t-small);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
  font-size: var(--t-small);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col a {
  display: block;
  padding-block: 0.35rem;
  font-size: var(--t-small);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: clamp(1.5rem, 3vw, 2rem);
  font-size: var(--t-small);
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.footer-socials a {
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #fff;
}

/* in flow so the full word is visible — no clipping; the bottom half
   melts away with a progressive backdrop blur */
.footer-watermark {
  position: relative;
  z-index: 1;
  margin-top: clamp(1rem, 3vw, 2rem);
  text-align: center;
  font-size: clamp(7rem, 24vw, 21rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #1c1c1c;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.footer-watermark::after {
  content: "";
  position: absolute;
  inset: 50% 0 0 0;
  backdrop-filter: blur(0.875rem);
  -webkit-backdrop-filter: blur(0.875rem);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 60%);
  mask-image: linear-gradient(to bottom, transparent, #000 60%);
}

@media (max-width: 47.5rem) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}
