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

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

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* --- Root & fluid type --- */
:root {
  --bg: #0d0d0d;
  --text: #f0f0f0;
  --accent: #2d6a4f;
  --accent-soft: #6ecf9b;
  --accent-deep: #143d32;
  --accent-mid: #1b5e45;
  --font: 'Inter', sans-serif;

  --space-xs: clamp(0.5rem, 2vw, 0.75rem);
  --space-sm: clamp(0.75rem, 3vw, 1rem);
  --space-md: clamp(1rem, 4vw, 1.5rem);
  --space-lg: clamp(1.5rem, 5vw, 2.5rem);
  --space-xl: clamp(2rem, 8vw, 4rem);

  --text-xs: clamp(0.75rem, 2vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 2.2vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 2.5vw, 1rem);
  --text-lg: clamp(1.0625rem, 3vw, 1.125rem);
  --text-xl: clamp(1.25rem, 3.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 5vw, 2rem);
  --text-hero: clamp(2rem, 8vw, 3.25rem);

  --nav-height: 4rem;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --nav-scrolled-bg: rgba(13, 13, 13, 0.72);
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}

a,
button,
[role='button'],
label[for],
.nav-toggle {
  cursor: pointer;
}

input,
textarea,
select {
  -webkit-user-select: text;
  user-select: text;
  cursor: text;
}

input[type='checkbox'],
input[type='radio'],
input[type='range'],
input[type='button'],
input[type='submit'],
input[type='reset'],
input[type='file'] {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

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

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

@keyframes meshDrift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(4%, -3%) rotate(2deg) scale(1.05);
  }
  66% {
    transform: translate(-3%, 4%) rotate(-1.5deg) scale(1.03);
  }
}

@keyframes meshDriftAlt {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate(-5%, 5%) scale(1.08);
    opacity: 1;
  }
}

    @keyframes ctaGlowPulse {
      0%, 100% {
        box-shadow:
          0 0 24px rgba(110, 207, 155, 0.42),
          0 0 48px rgba(45, 106, 79, 0.38),
          0 4px 24px rgba(0, 0, 0, 0.4);
      }
      50% {
        box-shadow:
          0 0 36px rgba(110, 207, 155, 0.55),
          0 0 72px rgba(45, 106, 79, 0.48),
          0 6px 28px rgba(0, 0, 0, 0.35);
      }
    }

/* --- Layout --- */
.wrap {
  width: min(100% - var(--space-md) * 2, 72rem);
  margin-inline: auto;
}

section {
  padding-block: var(--space-xl);
  scroll-margin-top: calc(var(--nav-height) + var(--space-sm));
}

/* Reveal on scroll (Intersection Observer + .visible) */
main > section .reveal {
  opacity: 0;
  transform: translateY(30px);
}

main > section.visible .reveal {
  animation: fadeInUp 0.75s ease forwards;
  animation-delay: calc(var(--stagger, 0) * 0.1s);
}

/* --- Noscript fallback --- */
/* Without JavaScript, scroll-reveal never runs and .reveal would stay hidden. Each HTML page
   includes <noscript><style>…</style></noscript> after this stylesheet to force
   main > section .reveal visible. Do not add those overrides in this file; it would break animation for JS users. */

/* --- Glass card --- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass:hover {
  border-color: rgba(110, 207, 155, 0.26);
  box-shadow:
    0 0 0 1px rgba(110, 207, 155, 0.18),
    0 0 36px rgba(110, 207, 155, 0.32),
    0 0 72px rgba(45, 106, 79, 0.22),
    0 16px 44px rgba(0, 0, 0, 0.38);
}

/* --- Navbar --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--glass-border);
}

/* Homepage: blend nav into hero (no flat black bar above green mesh) */
body[data-nav='home'] .site-header:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
}

body[data-nav='home'] .hero-full {
  margin-top: calc(-1 * var(--nav-height));
  padding-top: calc(var(--nav-height) + var(--space-xl));
  min-height: calc(100svh + var(--nav-height));
}

.nav-inner {
  width: min(100% - var(--space-md) * 2, 72rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-leading {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  color: var(--accent-soft);
}

/* --- Logo icon --- */
.logo__icon {
  display: block;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.45rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: fixed;
  inset: var(--nav-height) var(--space-md) auto var(--space-md);
  padding: var(--space-md);
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.nav-links.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(240, 240, 240, 0.85);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-soft);
  outline: none;
}

.nav-links a.nav-link--active {
  color: var(--accent-soft);
  font-weight: 600;
}

/* --- Hero (full viewport) --- */
.hero-full {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: var(--space-xl);
}

.hero-full__mesh {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
      background:
        radial-gradient(ellipse 85% 70% at 15% 25%, rgba(45, 106, 79, 0.45), transparent 58%),
        radial-gradient(ellipse 75% 65% at 85% 75%, rgba(110, 207, 155, 0.26), transparent 55%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(20, 61, 50, 0.42), transparent 50%),
        radial-gradient(circle at 70% 15%, rgba(110, 207, 155, 0.14), transparent 40%);
  animation: meshDrift 28s ease-in-out infinite;
}

.hero-full__mesh::after {
  content: '';
  position: absolute;
  inset: 0;
      background:
        radial-gradient(ellipse 90% 80% at 80% 20%, rgba(45, 106, 79, 0.24), transparent 60%),
        radial-gradient(ellipse 70% 60% at 10% 80%, rgba(110, 207, 155, 0.16), transparent 55%);
  animation: meshDriftAlt 22s ease-in-out infinite;
}

.hero-full__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 70% at 50% 45%, transparent 0%, rgba(13, 13, 13, 0.65) 100%);
}

.hero-full__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  padding-inline: var(--space-md);
  text-align: center;
}

/* --- Commission status badge --- */
@keyframes commissionDotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.45;
  }
}

.hero-commission-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-inline: auto;
  margin-bottom: var(--space-md);
  padding: 0.35rem 0.85rem 0.35rem 0.65rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-soft);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-commission-badge__dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 10px rgba(110, 207, 155, 0.65);
  animation: commissionDotPulse 2.2s ease-in-out infinite;
}

.hero-commission-badge[data-status='open'] .hero-commission-badge__text--closed {
  display: none;
}

.hero-commission-badge[data-status='closed'] .hero-commission-badge__text--open {
  display: none;
}

.hero-commission-badge[data-status='closed'] {
  color: rgba(240, 240, 240, 0.52);
}

.hero-commission-badge[data-status='closed'] .hero-commission-badge__dot {
  background: rgba(200, 90, 90, 0.85);
  box-shadow: none;
  animation: none;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .hero-commission-badge__dot {
    animation: none;
  }
}

.hero-full__title {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--space-md);
}

.hero-full__sub {
  font-size: var(--text-lg);
  color: rgba(240, 240, 240, 0.72);
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  line-height: 1.55;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.hero-cta-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(145deg, var(--accent-soft), var(--accent) 55%, var(--accent-deep));
  color: var(--text);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: ctaGlowPulse 3.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-glow:hover {
  transform: translateY(-3px) scale(1.02);
}

.hero-cta-glow:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(110, 207, 155, 0.55);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-outline:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--accent-soft);
  background: rgba(110, 207, 155, 0.1);
  box-shadow: 0 0 24px rgba(110, 207, 155, 0.25);
}

.hero-cta-outline:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

.hero-deco {
  position: absolute;
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  line-height: 1;
      color: rgba(110, 207, 155, 0.38);
      text-shadow: 0 0 32px rgba(45, 106, 79, 0.55);
  pointer-events: none;
  user-select: none;
  animation: floatPulse 6s ease-in-out infinite;
  z-index: 2;
}

.hero-deco--1 {
  top: 14%;
  left: 8%;
  animation-duration: 7s;
  animation-delay: 0s;
}

.hero-deco--2 {
  top: 24%;
  right: 10%;
  animation-duration: 5.5s;
  animation-delay: -1s;
  font-size: clamp(1.75rem, 6vw, 3rem);
}

.hero-deco--3 {
  bottom: 20%;
  left: 12%;
  animation-duration: 6.5s;
  animation-delay: -2.5s;
}

@media (min-width: 768px) {
  .hero-deco--1 { left: 14%; }
  .hero-deco--2 { right: 16%; }
  .hero-deco--3 { left: 20%; }
}

/* --- About --- */
.about-section .about-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .about-section .about-grid {
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: start;
  }
}

.about-avatar {
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-inline: auto;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center center;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(45, 106, 79, 0.28);
  background: #141414;
}

@media (min-width: 768px) {
  .about-avatar {
    margin-inline: 0;
    width: 200px;
    height: 200px;
  }
}

.about-copy {
  min-width: 0;
  max-width: 42rem;
}

.about-copy .section-title {
  margin-bottom: var(--space-md);
}

.about-stats .section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.about-stats__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  max-width: 58rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .about-stats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-stats__card {
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-sm);
  min-height: 11rem;
}

.about-stats__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(110, 207, 155, 0.16), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.about-stats__icon {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--accent-soft);
  opacity: 0.92;
  margin-bottom: var(--space-xs);
}

.about-stats__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  color: var(--accent-soft);
  text-shadow: 0 0 40px rgba(110, 207, 155, 0.28);
}

.about-stats__meter {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 9rem;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.about-stats__meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-mid), var(--accent-soft));
  box-shadow: 0 0 16px rgba(110, 207, 155, 0.35);
  transform-origin: left center;
}

.about-stats__card--visits .about-stats__meter-fill {
  width: 92%;
}

.about-stats__card--tracks .about-stats__meter-fill {
  width: 76%;
}

.about-stats__card--reviews .about-stats__meter-fill {
  width: 48%;
}

.about-stats__label {
  position: relative;
  z-index: 1;
  margin: var(--space-xs) 0 0;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(240, 240, 240, 0.62);
  max-width: 16rem;
}

@media (prefers-reduced-motion: no-preference) {
  main > section.visible .about-stats__card.reveal .about-stats__meter-fill {
    animation: aboutStatsMeterIn 0.85s ease-out 0.15s both;
  }
}

@keyframes aboutStatsMeterIn {
  from {
    transform: scaleX(0.08);
    opacity: 0.5;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.about-body {
  font-size: var(--text-lg);
  color: rgba(240, 240, 240, 0.78);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: var(--space-lg);
}

/* --- Sections --- */
.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: var(--text-lg);
  color: rgba(240, 240, 240, 0.68);
  max-width: 52ch;
  margin-bottom: var(--space-lg);
}

.cards {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: var(--space-md);
}

.card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--accent-soft);
}

.card p {
  font-size: var(--text-sm);
  color: rgba(240, 240, 240, 0.75);
}

/* --- Services (What I Make) --- */
.services-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* --- Services page layout --- */
.services-choose {
  text-align: center;
  padding-top: var(--space-md);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-choose > .section-title {
  margin-bottom: var(--space-md);
  width: 100%;
}

.services-choose .services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--space-md);
  margin-inline: auto;
  width: 100%;
  max-width: 58rem;
  min-width: 0;
}

.services-choose .service-card {
  flex: 1 1 15.5rem;
  max-width: 17.75rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: var(--space-md);
  overflow-wrap: break-word;
}

.services-choose .service-card__icon {
  margin-inline: auto;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
}

.services-choose .service-card__title {
  font-size: var(--text-lg);
}

.services-choose .service-card__desc {
  font-size: clamp(0.8125rem, 2.05vw, 0.875rem);
  text-align: center;
  margin-inline: auto;
  max-width: 100%;
  line-height: 1.45;
  min-height: calc(1.45em * 2);
}

.services-choose .service-card__delivery {
  justify-content: center;
  font-size: clamp(0.6875rem, 1.6vw, 0.75rem);
}

.services-choose .service-card__list {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.services-choose .service-card__list li {
  font-size: clamp(0.8125rem, 2.05vw, 0.875rem);
}

.services-faq .faq-list {
  max-width: 40rem;
  margin-inline: auto;
}

.service-card {
  padding: var(--space-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 21px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(110, 207, 155, 0.22),
    0 0 42px rgba(110, 207, 155, 0.38),
    0 0 84px rgba(45, 106, 79, 0.26);
}

.service-card__icon {
  display: block;
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text);
  letter-spacing: -0.02em;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: rgba(240, 240, 240, 0.72);
  line-height: 1.6;
}

/* --- Service card delivery tag --- */
.service-card__delivery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35em;
  margin-top: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(110, 207, 155, 0.72);
}

.service-card__delivery-icon {
  font-size: 1em;
  line-height: 1;
  opacity: 0.9;
}

.service-card__delivery-value {
  color: rgba(110, 207, 155, 0.88);
}

/* --- Portfolio --- */
.section-subtitle {
  font-size: var(--text-lg);
  color: rgba(240, 240, 240, 0.5);
  max-width: 48ch;
  margin-bottom: var(--space-lg);
  line-height: 1.55;
}

.portfolio-section .section-title {
  margin-bottom: var(--space-lg);
}

.portfolio-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-grid--past-work {
  gap: var(--space-lg);
}

@media (min-width: 960px) {
  .portfolio-grid--past-work {
    gap: var(--space-xl);
  }
}

.portfolio-card--work {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: var(--space-md);
  min-height: 17rem;
  padding: var(--space-xl);
}

.portfolio-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.portfolio-card__title {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  min-width: 0;
}

.portfolio-card__tag {
  flex-shrink: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(110, 207, 155, 0.4);
  background: rgba(110, 207, 155, 0.1);
}

.portfolio-card__dek {
  font-size: var(--text-sm);
  color: rgba(240, 240, 240, 0.58);
  line-height: 1.55;
  max-width: 42ch;
}

.portfolio-player {
  margin-top: auto;
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.portfolio-volume {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.portfolio-volume__icon {
  display: flex;
  flex-shrink: 0;
  color: rgba(240, 240, 240, 0.48);
}

.portfolio-seek {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.portfolio-seek__times {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  font-variant-numeric: tabular-nums;
  color: rgba(240, 240, 240, 0.45);
}

.portfolio-seek__input,
.portfolio-volume__input {
  height: 1.25rem;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.portfolio-seek__input {
  width: 100%;
}

.portfolio-volume__input {
  flex: 1;
  min-width: 0;
}

.portfolio-seek__input:disabled,
.portfolio-volume__input:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.portfolio-seek__input:focus-visible,
.portfolio-volume__input:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
  border-radius: 4px;
}

.portfolio-seek__input::-webkit-slider-runnable-track,
.portfolio-volume__input::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.portfolio-seek__input::-webkit-slider-thumb,
.portfolio-volume__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid rgba(18, 18, 18, 0.95);
  box-shadow: 0 0 0 1px rgba(110, 207, 155, 0.35);
}

.portfolio-seek__input::-moz-range-track,
.portfolio-volume__input::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.portfolio-seek__input::-moz-range-thumb,
.portfolio-volume__input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid rgba(18, 18, 18, 0.95);
  box-shadow: 0 0 0 1px rgba(110, 207, 155, 0.35);
}

.portfolio-card__audio {
  display: none;
}

.portfolio-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  min-height: 3rem;
  padding: var(--space-sm) var(--space-md);
  font-family: inherit;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text);
  background: transparent;
  border: 2px solid rgba(110, 207, 155, 0.5);
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.portfolio-play-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--accent-soft);
  box-shadow:
    0 0 24px rgba(110, 207, 155, 0.28),
    0 0 48px rgba(45, 106, 79, 0.18);
}

.portfolio-play-btn:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.portfolio-play-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.portfolio-play-btn--playing:not(:disabled) {
  border-color: var(--accent-soft);
  background: rgba(45, 106, 79, 0.22);
  box-shadow: 0 0 20px rgba(45, 106, 79, 0.35);
}

.portfolio-play-btn__icon {
  font-size: 0.95em;
  line-height: 1;
  opacity: 0.95;
}

.portfolio-card--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  min-height: 11rem;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.025);
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.portfolio-card--placeholder:hover {
  opacity: 0.85;
}

.portfolio-soon {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.38);
}

.contact-section {
  text-align: center;
}

.contact-section .section-title {
  margin-bottom: var(--space-sm);
}

.contact-lead {
  font-size: var(--text-lg);
  color: rgba(240, 240, 240, 0.68);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  line-height: 1.55;
}

.contact-lead strong {
  color: var(--accent-soft);
  font-weight: 700;
}

.content-link-accent {
  color: var(--accent-soft);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(110, 207, 155, 0.45);
  text-underline-offset: 0.18em;
}

.content-link-accent:hover {
  color: #8ee0b8;
  text-decoration-color: rgba(110, 207, 155, 0.7);
}

.content-link-accent:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Discord primary CTA band --- */
.contact-discord-hero {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 0;
  padding: clamp(1.85rem, 5.5vw, 3rem) clamp(1.35rem, 4vw, 2.25rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-md);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
}

.contact-discord-hero__title {
  font-size: clamp(1.5rem, 4.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.contact-discord-hero__sub {
  font-size: var(--text-lg);
  color: rgba(240, 240, 240, 0.66);
  line-height: 1.6;
  max-width: 38ch;
  margin-inline: auto;
}

.contact-discord-hero__cta {
  width: 100%;
  margin-top: var(--space-xs);
  min-height: 3.35rem;
  font-size: var(--text-base);
  font-weight: 700;
}

.contact-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  max-width: 36rem;
  margin-inline: auto;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.contact-divider__line {
  flex: 1;
  min-width: 1.5rem;
  height: 1px;
  background: var(--glass-border);
  opacity: 0.85;
}

.contact-divider__text {
  flex-shrink: 0;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(240, 240, 240, 0.42);
}

.contact-form-section-heading {
  margin: 0 auto var(--space-sm);
  max-width: 40rem;
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.48);
  line-height: 1.3;
}

.contact-card {
  max-width: 32rem;
  margin-inline: auto;
  padding: var(--space-xl);
  text-align: center;
}

.contact-card--form {
  max-width: 40rem;
  margin-inline: auto;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.contact-form__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(240, 240, 240, 0.88);
}

.contact-form__optional {
  font-weight: 500;
  color: rgba(240, 240, 240, 0.42);
}

.contact-form__input {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder {
  color: rgba(240, 240, 240, 0.35);
}

.contact-form__input:hover {
  border-color: rgba(110, 207, 155, 0.22);
}

.contact-form__input:focus {
  outline: none;
  border-color: rgba(110, 207, 155, 0.55);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.35);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.55;
}

/* --- Form character counter --- */
.contact-form__counter {
  display: block;
  text-align: right;
  margin-top: var(--space-xs);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(240, 240, 240, 0.42);
  transition: color 0.2s ease;
}

.contact-form__counter.counter--warning {
  color: var(--accent-soft);
}

.contact-form__counter.counter--danger {
  color: rgba(248, 113, 113, 0.95);
}

.contact-form__feedback {
  margin: 0 0 var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.contact-form__feedback[hidden] {
  display: none !important;
}

.contact-form__feedback--ok {
  color: var(--accent-soft);
  background: rgba(45, 106, 79, 0.2);
  border: 1px solid rgba(110, 207, 155, 0.35);
}

.contact-form__feedback--err {
  color: #f0b4b4;
  background: rgba(120, 40, 40, 0.22);
  border: 1px solid rgba(220, 100, 100, 0.35);
}

.contact-form__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.contact-form__actions > .contact-form__submit {
  width: 100%;
}

.contact-form__submit {
  cursor: pointer;
  border: none;
  flex: 0 1 auto;
}

/* --- Contact follow-up note --- */
.contact-follow-up-note {
  max-width: 36rem;
  margin-inline: auto;
  margin-top: var(--space-lg);
  padding-inline: var(--space-sm);
  padding-bottom: var(--space-xs);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(240, 240, 240, 0.48);
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .contact-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 3rem;
  padding: var(--space-sm) var(--space-md);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-contact:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

    .btn-contact--primary {
      background: linear-gradient(145deg, var(--accent), var(--accent-mid));
      color: var(--text);
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
    }

    .btn-contact--primary:hover {
      transform: translateY(-2px);
      box-shadow:
        0 0 28px rgba(110, 207, 155, 0.45),
        0 0 56px rgba(45, 106, 79, 0.35),
        0 8px 28px rgba(0, 0, 0, 0.35);
    }

    .btn-contact--outline {
      background: transparent;
      color: var(--text);
      border: 2px solid rgba(110, 207, 155, 0.5);
      box-shadow: 0 0 0 rgba(110, 207, 155, 0);
    }

    .btn-contact--outline:hover {
      transform: translateY(-2px);
      border-color: var(--accent-soft);
      box-shadow:
        0 0 24px rgba(110, 207, 155, 0.32),
        0 0 48px rgba(45, 106, 79, 0.22),
        inset 0 0 24px rgba(110, 207, 155, 0.07);
    }

.portfolio-card--item {
  padding: var(--space-md);
  text-align: left;
}

.portfolio-card--item h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.portfolio-card--item p {
  font-size: var(--text-sm);
  color: rgba(240, 240, 240, 0.72);
  margin-bottom: var(--space-sm);
}

.portfolio-card--item audio {
  width: 100%;
  margin-bottom: var(--space-sm);
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.portfolio-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(45, 106, 79, 0.28);
  border: 1px solid rgba(110, 207, 155, 0.22);
  color: rgba(240, 240, 240, 0.88);
}

.site-footer {
  position: relative;
  z-index: 1;
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: var(--space-lg);
}

/* --- Global edge decorations (injected by main.js) --- */
@keyframes pageDecorFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--page-decor-rot, 0deg));
    opacity: var(--page-decor-op, 0.34);
  }
  50% {
    transform: translateY(-12px) rotate(var(--page-decor-rot, 0deg));
    opacity: calc(var(--page-decor-op, 0.34) + 0.14);
  }
}

.page-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-decor__item {
  --page-decor-op: 0.32;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: rgba(110, 207, 155, 0.44);
  filter: drop-shadow(0 0 14px rgba(110, 207, 155, 0.12));
  animation: pageDecorFloat 8s ease-in-out infinite;
  animation-delay: var(--page-decor-delay, 0s);
}

.page-decor__svg {
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

/* Outer band: off the screen edge, still in the margin */
.page-decor__item--l1 {
  left: clamp(1rem, 5.5vw, 4.5rem);
  top: 16%;
  --page-decor-rot: -10deg;
  --page-decor-delay: 0s;
}

.page-decor__item--l2 {
  left: clamp(1.25rem, 7vw, 5.5rem);
  top: 46%;
  --page-decor-rot: 14deg;
  --page-decor-delay: -2.5s;
}

.page-decor__item--l3 {
  left: clamp(0.85rem, 4.5vw, 3.75rem);
  top: 74%;
  --page-decor-rot: 6deg;
  --page-decor-delay: -5s;
}

.page-decor__item--r1 {
  right: clamp(1rem, 5.5vw, 4.5rem);
  top: 20%;
  --page-decor-rot: 8deg;
  --page-decor-delay: -1.2s;
}

.page-decor__item--r2 {
  right: clamp(1.25rem, 7vw, 5.5rem);
  top: 50%;
  --page-decor-rot: -12deg;
  --page-decor-delay: -3.8s;
}

.page-decor__item--r3 {
  right: clamp(0.85rem, 4.5vw, 3.75rem);
  top: 78%;
  --page-decor-rot: -6deg;
  --page-decor-delay: -6.2s;
}

/* Deeper into the sides on wide viewports (keeps off the copy) */
.page-decor__item--lc1 {
  left: clamp(2.5rem, 13vw, 10rem);
  top: 28%;
  --page-decor-rot: -7deg;
  --page-decor-delay: -0.8s;
}

.page-decor__item--lc2 {
  left: clamp(2rem, 10vw, 7.5rem);
  top: 64%;
  --page-decor-rot: 11deg;
  --page-decor-delay: -4.2s;
}

.page-decor__item--rc1 {
  right: clamp(2.5rem, 13vw, 10rem);
  top: 32%;
  --page-decor-rot: 10deg;
  --page-decor-delay: -2.1s;
}

.page-decor__item--rc2 {
  right: clamp(2rem, 10vw, 7.5rem);
  top: 66%;
  --page-decor-rot: -9deg;
  --page-decor-delay: -5.5s;
}

@media (max-width: 1024px) {
  .page-decor__item--inward {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-decor__item {
    width: 1.65rem;
    height: 1.65rem;
    --page-decor-op: 0.24;
    color: rgba(110, 207, 155, 0.36);
  }
}

@media (max-width: 440px) {
  .page-decor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-decor__item {
    animation: none;
    transform: rotate(var(--page-decor-rot, 0deg));
    opacity: var(--page-decor-op, 0.28);
  }
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md) var(--space-lg);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
}

.site-footer__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(240, 240, 240, 0.65);
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: var(--accent-soft);
}

.site-footer__link:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer__meta {
  text-align: right;
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__meta {
    text-align: left;
  }
}

.site-footer__line {
  font-size: var(--text-sm);
  color: rgba(240, 240, 240, 0.82);
  margin-bottom: var(--space-xs);
}

.site-footer__sub {
  margin: 0;
  font-size: var(--text-xs);
  color: rgba(240, 240, 240, 0.38);
}

.site-footer__sub .site-footer__link {
  font-weight: 500;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__sub .site-footer__link:hover {
  color: var(--accent-soft);
}

/* --- Terms page --- */
.terms-page {
  padding-block: var(--space-xl) var(--space-2xl);
  max-width: 46rem;
}

.terms-page__title {
  margin-bottom: var(--space-md);
}

.terms-page__lede {
  font-size: var(--text-md);
  line-height: 1.55;
  color: rgba(240, 240, 240, 0.72);
  margin-bottom: var(--space-xl);
}

.terms-page__section {
  margin-bottom: var(--space-lg);
}

.terms-page__section:last-child {
  margin-bottom: 0;
}

.terms-page__h2 {
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(248, 248, 248, 0.95);
  margin-bottom: var(--space-sm);
}

.terms-page__section p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(240, 240, 240, 0.65);
  margin: 0;
}

.terms-page__section p + p {
  margin-top: var(--space-sm);
}

.terms-page__list {
  list-style: disc;
  margin: var(--space-sm) 0 0;
  padding-left: 1.35rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: rgba(240, 240, 240, 0.62);
}

.terms-page__list li {
  margin-bottom: 0.4em;
}

.terms-page__list li::marker {
  color: rgba(110, 207, 155, 0.55);
}

.terms-page__callout {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-md);
  border-radius: 10px;
  border: 1px solid rgba(110, 207, 155, 0.22);
  background: rgba(45, 106, 79, 0.14);
}

.terms-page__callout p {
  margin: 0;
}

.terms-page__callout p + p {
  margin-top: var(--space-sm);
}

.terms-page__section a {
  color: var(--accent-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-page__section a:hover {
  color: #fff;
}

body.footer-soon-open {
  overflow: hidden;
}

.footer-soon-dialog {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: var(--space-md);
  box-sizing: border-box;
}

.footer-soon-dialog[hidden] {
  display: none;
}

.footer-soon-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-soon-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(100%, max-content);
  max-width: calc(100vw - 2 * var(--space-md));
  padding: var(--space-lg);
  border-radius: 14px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.footer-soon-dialog__message {
  font-size: var(--text-base);
  line-height: 1.5;
  color: rgba(240, 240, 240, 0.9);
  margin-bottom: var(--space-md);
  white-space: nowrap;
}

@media (max-width: 400px) {
  .footer-soon-dialog__panel {
    width: min(100%, 22rem);
  }

  .footer-soon-dialog__message {
    white-space: normal;
  }
}

.footer-soon-dialog__close {
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.5rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 207, 155, 0.45);
  background: rgba(110, 207, 155, 0.12);
  color: var(--accent-soft);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer-soon-dialog__close:hover {
  background: rgba(110, 207, 155, 0.2);
  border-color: var(--accent-soft);
  color: var(--text);
}

.footer-soon-dialog__close:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

/* --- Back to top button --- */
.back-to-top {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--accent-soft);
  font-family: inherit;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.25s ease,
    border-color 0.2s ease;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top--visible:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 207, 155, 0.48);
  box-shadow:
    0 0 24px rgba(110, 207, 155, 0.35),
    0 0 48px rgba(45, 106, 79, 0.22),
    0 8px 28px rgba(0, 0, 0, 0.35);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition-duration: 0.01ms;
    transition-delay: 0s;
  }

  .back-to-top--visible:hover {
    transform: translateY(0);
  }
}

/* --- About page --- */
.about-page-lede {
  font-size: var(--text-lg);
  color: rgba(240, 240, 240, 0.78);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.about-page-lede:last-of-type {
  margin-bottom: var(--space-lg);
}

.about-glass {
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.about-glass:last-child {
  margin-bottom: 0;
}

.about-glass h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text);
  letter-spacing: -0.02em;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--text-sm);
  color: rgba(240, 240, 240, 0.72);
  line-height: 1.55;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0.75;
}

.about-split {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* --- Homepage (index) detail sections --- */
.home-prose {
  font-size: var(--text-base);
  color: rgba(240, 240, 240, 0.72);
  max-width: 58ch;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.home-prose:last-child {
  margin-bottom: 0;
}

.home-pillar-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .home-pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-pillar {
  padding: var(--space-lg);
}

.home-pillar__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: var(--space-xs);
}

.home-pillar h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text);
  letter-spacing: -0.02em;
}

.home-pillar p {
  font-size: var(--text-sm);
  color: rgba(240, 240, 240, 0.7);
  line-height: 1.6;
}

.home-steps {
  list-style: none;
  counter-reset: home-step;
  display: grid;
  gap: var(--space-lg);
  max-width: 44rem;
}

@media (min-width: 900px) {
  .home-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: none;
  }
}

.home-step {
  position: relative;
  padding-top: var(--space-md);
  border-top: 1px solid var(--glass-border);
  counter-increment: home-step;
}

@media (min-width: 900px) {
  .home-step {
    padding-top: 0;
    border-top: none;
    padding-left: var(--space-md);
    border-left: 1px solid var(--glass-border);
  }

  .home-step:first-child {
    padding-left: 0;
    border-left: none;
  }
}

.home-step::before {
  content: counter(home-step, decimal-leading-zero);
  display: block;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--accent-soft);
  opacity: 0.85;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
}

.home-step h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.home-step p {
  font-size: var(--text-sm);
  color: rgba(240, 240, 240, 0.68);
  line-height: 1.55;
}

.home-cta-band {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
}

@media (min-width: 768px) {
  .home-cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.home-cta-band__lead {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 28ch;
}

.home-cta-band__sub {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(240, 240, 240, 0.55);
  max-width: 36ch;
  line-height: 1.5;
}

.home-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  width: 100%;
}

@media (min-width: 768px) {
  .home-cta-band__actions {
    width: auto;
    justify-content: flex-end;
  }
}

.home-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-cta-link:hover {
  border-color: rgba(110, 207, 155, 0.35);
  background: rgba(45, 106, 79, 0.15);
  color: var(--accent-soft);
  box-shadow: 0 0 20px rgba(45, 106, 79, 0.2);
}

.home-cta-link--primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-mid));
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.home-cta-link--primary:hover {
  color: var(--text);
  border-color: rgba(110, 207, 155, 0.4);
  box-shadow: 0 0 28px rgba(110, 207, 155, 0.25);
}

.home-cta-link:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

/* --- Custom circular cursor (fine pointer, no reduced-motion preference) --- */
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.custom-cursor-on,
  html.custom-cursor-on * {
    cursor: none !important;
  }

  .custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: rgba(110, 207, 155, 0.92);
    pointer-events: none;
    z-index: 2147483646;
    transform: translate(-50%, -50%);
    transition:
      transform 0.15s ease,
      width 0.2s ease,
      height 0.2s ease,
      border 0.2s ease,
      border-color 0.2s ease,
      background 0.2s ease,
      opacity 0.2s ease,
      box-shadow 0.2s ease;
    box-shadow: 0 0 10px rgba(110, 207, 155, 0.55);
    opacity: 0;
  }

  .custom-cursor.custom-cursor--on {
    opacity: 1;
  }

  .custom-cursor.custom-cursor--hover {
    width: 18px;
    height: 18px;
    border: 2px solid var(--accent-soft);
    background: rgba(110, 207, 155, 0.12);
    box-shadow: 0 0 12px rgba(110, 207, 155, 0.38);
  }

  .custom-cursor.custom-cursor--press:not(.custom-cursor--hover) {
    transform: translate(-50%, -50%) scale(0.85);
  }

  .custom-cursor.custom-cursor--press.custom-cursor--hover {
    transform: translate(-50%, -50%) scale(0.88);
  }
}

/* --- Services: card list --- */
.service-card__list {
  list-style: none;
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__list li {
  padding-left: 1.1em;
  position: relative;
  font-size: var(--text-sm);
  color: rgba(240, 240, 240, 0.75);
  line-height: 1.55;
}

.service-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-soft);
}

/* --- Services page: pricing --- */
.services-pricing {
  padding-top: var(--space-md);
  padding-bottom: var(--space-xl);
}

.services-pricing .section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.services-pricing-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  margin-top: var(--space-xs);
  margin-inline: auto;
  width: 100%;
  max-width: 58rem;
  min-width: 0;
}

@media (min-width: 1024px) {
  .services-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.services-pricing-card {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: stretch;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  min-width: 0;
  overflow-wrap: break-word;
}

.services-pricing-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
}

.services-pricing-card__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  min-width: 0;
  width: 100%;
  padding: var(--space-md) var(--space-sm);
  border-radius: 12px;
  background: rgba(110, 207, 155, 0.07);
  border: 1px solid rgba(110, 207, 155, 0.2);
  box-sizing: border-box;
}

.services-pricing-card__from {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.52);
  max-width: 100%;
}

.services-pricing-card__price-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  width: 100%;
}

.services-pricing-card__figure {
  font-size: clamp(1.85rem, 4.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--accent-soft);
  text-shadow: 0 0 28px rgba(110, 207, 155, 0.22);
  max-width: 100%;
}

.services-pricing-card__unit {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(240, 240, 240, 0.68);
  max-width: 100%;
}

.services-pricing-card__desc {
  font-size: clamp(0.8125rem, 2.05vw, 0.875rem);
  color: rgba(240, 240, 240, 0.55);
  line-height: 1.55;
  flex: 1;
  min-width: 0;
}

.services-pricing-card__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-soft);
  align-self: center;
  text-decoration: underline;
  text-decoration-color: rgba(110, 207, 155, 0.45);
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.services-pricing-card__cta:hover {
  color: var(--text);
  text-decoration-color: var(--accent-soft);
}

.services-pricing-card__cta:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.services-pricing-note {
  margin-top: var(--space-lg);
  margin-inline: auto;
  max-width: 40rem;
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(240, 240, 240, 0.42);
  line-height: 1.55;
}

/* --- FAQ --- */
.services-faq {
  padding-block: var(--space-xl);
}

.services-faq .section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.faq-item {
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
}

.faq-question {
  font-size: var(--text-base);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

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

.faq-question::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--accent-soft);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: var(--space-md);
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: var(--space-sm);
  color: rgba(240, 240, 240, 0.72);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* --- Reviews page --- */
.reviews-hero {
  text-align: center;
  padding-bottom: 0;
}

.reviews-hero .section-title {
  margin-bottom: var(--space-sm);
}

.reviews-hero .section-intro {
  margin-inline: auto;
  margin-bottom: 0;
}

.reviews-grid-section {
  padding-top: var(--space-lg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  max-width: min(100% - var(--space-md) * 2, 48rem);
  margin-inline: auto;
  /* start: expanding “Read more” on one card must not stretch or shift sibling cards */
  align-items: start;
}

@media (min-width: 640px) {
  .reviews-grid:not(.reviews-carousel__track) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }
}

/* --- Reviews carousel --- */
.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(0.35rem, 2.5vw, var(--space-md));
  align-items: center;
  margin-top: var(--space-lg);
  max-width: min(100% - var(--space-md) * 2, 64rem);
  margin-inline: auto;
}

.reviews-carousel:focus {
  outline: none;
}

.reviews-carousel:focus-visible .reviews-carousel__viewport {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
  border-radius: 12px;
}

.reviews-carousel__viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.reviews-carousel__track.reviews-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--space-md);
  margin-top: 0;
  max-width: none;
  margin-inline: 0;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reviews-carousel__track.reviews-grid .review-card {
  flex: 0 0 var(--reviews-carousel-slide-w, 100%);
  width: var(--reviews-carousel-slide-w, 100%);
  min-width: var(--reviews-carousel-slide-w, 100%);
  max-width: var(--reviews-carousel-slide-w, 100%);
  box-sizing: border-box;
  align-self: stretch;
  height: auto;
}

/* Match heights in the row: grow body and pin footer so all cards line up (fixes one card looking “off”). */
.reviews-carousel__track.reviews-grid .review-card__body {
  flex: 1 1 auto;
  min-height: 0;
}

.reviews-carousel__track.reviews-grid .review-card__quote {
  flex: 1 1 auto;
  min-height: 0;
}

.reviews-carousel__track.reviews-grid .review-card__footer {
  margin-top: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__track.reviews-grid {
    transition-duration: 0.01ms;
    transition-property: none;
  }
}

.reviews-carousel__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(240, 240, 240, 0.88);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.reviews-carousel__arrow:hover:not(:disabled) {
  color: var(--accent-soft);
  background: rgba(110, 207, 155, 0.12);
  border-color: rgba(110, 207, 155, 0.35);
}

.reviews-carousel__arrow:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.reviews-carousel__arrow:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.reviews-carousel__arrow svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

@media (max-width: 380px) {
  .reviews-carousel__arrow {
    width: 2.35rem;
    height: 2.35rem;
  }

  .reviews-carousel__arrow svg {
    width: 1.15rem;
    height: 1.15rem;
  }
}

.review-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-card__top-img {
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: #141414;
  border-bottom: 1px solid var(--glass-border);
}

.review-card__top-img--fill {
  object-fit: fill;
}

.review-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.reviews-grid .review-card__body {
  flex: 0 0 auto;
}

.review-card__stars {
  color: var(--accent-soft);
  font-size: var(--text-lg);
  letter-spacing: 0.05em;
}

.review-card__quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin: 0;
  font-size: clamp(0.8125rem, 2.05vw, 0.875rem);
  color: rgba(240, 240, 240, 0.82);
  line-height: 1.65;
  font-style: italic;
}

.reviews-grid .review-card__quote {
  flex: 0 0 auto;
}

/* ~4.5 lines at this line-height; aligns card bodies when excerpts share the same word cap */
.reviews-grid .review-card__quote > p.review-card__quote-text {
  flex: 0 0 auto;
  margin: 0;
  min-height: calc(1.65em * 4.5);
}

.review-card__read-more {
  align-self: flex-start;
  margin: 0;
  padding: 0;
  font: inherit;
  font-weight: 700;
  font-size: var(--text-xs);
  font-style: normal;
  color: var(--accent-soft);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-card__read-more:hover {
  color: #fff;
}

.review-card__read-more:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--glass-border);
}

.review-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
}

.review-card__affiliation {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(240, 240, 240, 0.78);
  line-height: 1.45;
  margin-top: 0.25em;
}

.review-card__role {
  font-size: var(--text-xs);
  color: rgba(240, 240, 240, 0.5);
  margin-top: 0.35em;
}

/* Visually hidden utility (if not already present) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

