/* ============================================================
   LAVECO.BE — style.css
   Dark-first. References: shadergradient.co · dark.design
                           godly.website · mnimal.gallery
   ============================================================ */

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

/* === TOKENS ================================================ */
:root {
  /* Palette */
  --bg:           #0A0A08;
  --bg-1:         #111110;
  --bg-2:         #181816;
  --green:        #8E9E8C;
  --green-bright: #AAB8A8;
  --green-deep:   #5A7256;
  --pastel-green: #6DEBB0;
  --pastel-green-hi: #A8F0C4;
  --orange:       #F06B14;
  --orange-hi:    #FF7C28;
  --orange-dim:   rgba(240,107,20,0.7);
  --text:         #E8E4DB;
  --text-dim:     rgba(232,228,219,0.42);
  --text-faint:   rgba(232,228,219,0.18);
  --border:       rgba(232,228,219,0.08);
  --border-hi:    rgba(232,228,219,0.14);
  --glass-bg:     rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.085);

  /* Type */
  --ff-display: 'Syne', system-ui, sans-serif;
  --ff-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Motion */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t:        0.4s var(--ease);
  --tf:       0.2s ease;

  /* Layout */
  --section-py: clamp(5rem, 10vw, 8rem);
  --r:  12px;
  --rl: 20px;
  --rx: 28px;
}

/* === SELECTION ============================================ */
::selection        { background: var(--orange); color: #fff; }
::-moz-selection   { background: var(--orange); color: #fff; }

/* === BASE ================================================== */
html {
  scroll-behavior: smooth;
  font-size: 17px;
  color-scheme: dark;
}
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { cursor: pointer; }

/* === NOISE OVERLAY (keep for texture depth) =============== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
}


/* === UTILITY ============================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.mono {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* === REVEAL ANIMATIONS ==================================== */

/* Each variant stores its own hidden state in --tx/--ty/--s  */
.reveal {
  --tx: 0px;
  --ty: 60px;
  --s:  1;
  opacity: 0;
  transform: translate(var(--tx), var(--ty)) scale(var(--s));
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reveal--left   { --tx: -70px; --ty: 0px; }
.reveal--right  { --tx:  70px; --ty: 0px; }
.reveal--scale  { --ty: 30px;  --s: 0.92; }
.reveal--fast   { transition-duration: 0.6s, 0.6s; }
/* Gentle: smaller offset, longer ease — for list rows */
.reveal--gentle {
  --ty: 24px;
  transition-duration: 1.1s, 1.1s;
  transition-timing-function: var(--ease), var(--ease);
}

/* === SECTION HEADER ======================================= */
.section-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-num  { color: var(--orange-dim); flex-shrink: 0; }
.section-rule { flex: 1; height: 1px; background: var(--border); }
.section-tag  { color: var(--text-dim); flex-shrink: 0; }

/* === HERO HALO ============================================ */
.hero__halo,
.halo__atmosphere,
.halo__ring,
.halo__shimmer { pointer-events: none; }

/* === NAV ================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  padding: 0.9rem 2.5rem;
  transition: background 0.5s ease, backdrop-filter 0.5s ease,
              box-shadow 0.5s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(10,10,8,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.65rem 2.5rem;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
}
.logo-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: lighten;
}
.logo-wordmark {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text);
}

/* Nav links */
.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--tf);
}
.nav__links a:hover { color: var(--text); }

/* Nav CTA */
.nav__cta {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border-hi);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  transition: background var(--tf), border-color var(--tf), color var(--tf);
}
.nav__cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Nav: My Services link */
.nav__my-services {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border-hi);
  transition: color var(--tf), background var(--tf), border-color var(--tf);
}
.nav__my-services i { font-size: 0.85rem; }
.nav__my-services:hover {
  color: var(--text);
  background: var(--glass-bg);
  border-color: rgba(240,107,20,0.25);
}

/* Nav Auth */
.nav__auth { display: flex; align-items: center; gap: 0.5rem; }

.nav__auth-anon,
.nav__auth-user { display: flex; align-items: center; gap: 0.5rem; }

.nav__auth-btn {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  transition: background var(--tf), border-color var(--tf), color var(--tf);
}
.nav__auth-btn--ghost {
  color: var(--text-dim);
  border-color: var(--border-hi);
}
.nav__auth-btn--ghost:hover {
  color: var(--text);
  border-color: var(--border-hi);
  background: var(--glass-bg);
}
.nav__auth-btn--primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}
.nav__auth-btn--primary:hover {
  background: var(--orange-hi);
  border-color: var(--orange-hi);
}

.nav__auth-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.nav__auth-name i { font-size: 1rem; color: var(--orange); }

/* Services dropdown */
.nav__item--has-dropdown {
  position: relative;
  list-style: none;
}
.nav__dropdown-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--ff-body);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--tf);
}
.nav__dropdown-btn:hover { color: var(--text); }
.nav__chevron {
  width: 12px; height: 12px;
  transition: transform 0.22s var(--ease);
  flex-shrink: 0;
}
.nav__item--has-dropdown:hover .nav__chevron,
.nav__item--has-dropdown:focus-within .nav__chevron { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  list-style: none;
  /* padding-top bridges the visual gap so cursor stays inside the element */
  padding: 0.75rem 0.4rem 0.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 600;
}
/* The visible card is a pseudo-element so padding area stays hoverable */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: 0.75rem; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,8,0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border-hi);
  border-radius: var(--rl);
  z-index: -1;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown li { list-style: none; }
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: calc(var(--rl) - 4px);
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: background var(--tf), color var(--tf);
  white-space: nowrap;
}
.nav__dropdown a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.nav__dropdown a .dd-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--tf);
}
.nav__dropdown a:hover .dd-dot { opacity: 1; }

.dd-dot--bundle { background: var(--orange-dim); }

.nav__dropdown-label {
  padding: 0.5rem 1rem 0.2rem;
  font-size: 0.6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--mono);
}

.nav__dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.4rem 0.75rem;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s ease, width 0.35s var(--ease);
  transform-origin: center;
}
/* Open state — top & bottom rotate into X, middle fades */
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO ================================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem,12vw,10rem) clamp(1.25rem,4vw,2.5rem) clamp(5rem,10vw,8rem);
  overflow: hidden;
}
/* Cap hero height on screens larger than 1920×1080 */
@media (min-width: 1921px) {
  .hero { min-height: clamp(900px, 88vh, 1080px); }
}
/* Hero mark (SVG logo in meta row) */
.hero__mark {
  color: var(--text-dim);
  flex-shrink: 0;
}

/* Film grain — two canvases crossfade for smooth slow grain */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
}

/* ── Shader sphere (Interstella-inspired) ─────────────────── */
.hero__sphere {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Shift home-hero sphere inward so it sits just right of the text, not at the viewport edge */
.hero .hero__sphere {
  right: max(calc((100% - 1200px) / 2 - 80px), -80px);
}

.sphere__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  mix-blend-mode: screen;
}

/* Pastel green — top-left arc */
.sphere__blob--a {
  width: 75%; height: 75%;
  top: 2%; left: 4%;
  background: radial-gradient(circle, #6DEBB0 0%, transparent 68%);
  opacity: 0.82;
  animation: blobFlow 11s ease-in-out infinite;
}

/* Orange — right arc */
.sphere__blob--b {
  width: 70%; height: 70%;
  top: 18%; right: -4%;
  background: radial-gradient(circle, #ff810a 0%, transparent 68%);
  opacity: 0.75;
  animation: blobFlow 14s ease-in-out infinite reverse;
}

/* Light pastel green — bottom sweep */
.sphere__blob--c {
  width: 65%; height: 65%;
  bottom: 4%; left: 8%;
  background: radial-gradient(circle, #A8F0C4 0%, transparent 68%);
  opacity: 0.65;
  animation: blobFlow 18s ease-in-out infinite;
}

/* Mid green accent — center depth */
.sphere__blob--d {
  width: 45%; height: 45%;
  top: 28%; left: 28%;
  background: radial-gradient(circle, #7BCEA4 0%, transparent 70%);
  opacity: 0.48;
  animation: blobFlow 9s ease-in-out infinite reverse;
}

/* Sphere boundary — only softens the very outer rim */
.sphere__edge {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    transparent  82%,
    rgba(10,10,8,0.55) 91%,
    rgba(10,10,8,0.92) 97%
  );
}

@keyframes blobFlow {
  0%,100% { transform: translate(0,    0)    scale(1);    }
  33%     { transform: translate(6%,  -7%)   scale(1.06); }
  66%     { transform: translate(-5%,  8%)   scale(0.94); }
}
/* Interstella film grain shift */
@keyframes grainShift {
  0%  { transform: translate(0,    0);    }
  10% { transform: translate(-4%,  -4%);  }
  20% { transform: translate(-8%,   4%);  }
  30% { transform: translate( 4%,  -8%);  }
  40% { transform: translate(-4%,  12%);  }
  50% { transform: translate(-8%,   4%);  }
  60% { transform: translate(12%,   0);   }
  70% { transform: translate( 0,    8%);  }
  80% { transform: translate(-12%,  0);   }
  90% { transform: translate( 8%,   4%);  }
  100%{ transform: translate( 4%,   0);   }
}

/* Hero two-column wrapper */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

/* Hero body (text side) */
.hero__body {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
}


/* Mobile hero */
@media (max-width: 767px) {
  .hero {
    min-height: 100dvh;
    padding: 5.5rem 1.25rem 4rem;
    justify-content: flex-start;
    overflow-x: clip;
  }

  .hero__content { flex-direction: column; gap: 0; }

  .hero__meta {
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.72rem;
  }
  .hero__meta-sep { display: none; }

  .hero__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .hero__desc {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  /* Hide bottom bar on mobile — too cluttered at small sizes */
  .hero__bar { display: none; }
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dim);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  animation: fadeUp 1s 0.1s var(--ease) both;
}
.hero__meta-sep {
  width: 32px; height: 1px;
  background: var(--border-hi);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 9vw, 9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
}
.hero__line {
  display: block;
  animation: fadeUp 0.9s calc(0.15s + var(--i) * 0.13s) var(--ease) both;
}
.hero__line--orange { color: var(--orange); }
.hero__line--em {
  padding-left: clamp(1.5rem, 6vw, 9rem);
  color: var(--green);
  font-weight: 400;
}

.hero__foot {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.65s var(--ease) both;
}
.hero__desc {
  max-width: 460px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.78;
  color: var(--text-dim);
}

/* Hero CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background var(--tf), border-color var(--tf),
              color var(--tf), box-shadow var(--t), transform var(--t);
  flex-shrink: 0;
}
.cta-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 12px 36px rgba(240,120,48,0.35);
}

/* Hero bar */
.hero__bar {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.25rem, 4vw, 2.5rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-faint);
  animation: fadeUp 1s 0.8s var(--ease) both;
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__scroll-track {
  width: 40px; height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.hero__scroll-thumb {
  position: absolute;
  left: 0; top: 0;
  width: 40%;
  height: 100%;
  background: var(--orange-dim);
  animation: scrollThumb 2.4s ease-in-out infinite;
}
@keyframes scrollThumb {
  0%   { left: -40%; }
  100% { left: 140%; }
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}

/* === TICKER =============================================== */
.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg-1);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.ticker__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  align-items: center;
  animation: tick 30s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
.ticker__dot { color: var(--orange-dim) !important; font-size: 0.4rem !important; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes tick {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* === STATEMENT ============================================ */
.statement {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--border);
}
.statement__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  max-width: 900px;
  list-style: none;
  transition-delay: 0s;
}
.statement__quote em {
  font-style: normal;
  color: var(--green);
  font-weight: 400;
}
.statement__rule {
  margin-top: 3rem;
  height: 1px;
  background: linear-gradient(to right, var(--orange-dim), transparent);
  transition-delay: 0.2s;
}

/* === ABOUT ================================================ */
.about {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.about__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text);
  position: relative;
}
.about__headline em {
  font-style: normal;
  color: var(--green);
  font-weight: 400;
}
.about__text {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

/* Stats */
.about__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.about-stat {}
.about-stat__val {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.about-stat__val span:last-child {
  font-size: 2rem;
  color: var(--orange);
}
.about-stat__label { color: var(--text-faint); }

/* === SERVICES ============================================= */
.services {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}
.services__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services__title.reveal { transition-delay: 0.05s; }

/* Service rows */
.services__list {
  display: flex;
  flex-direction: column;
}
.svc {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  position: relative;
  transition: background var(--tf);
}
.svc:last-child { border-bottom: 1px solid var(--border); }

/* Hover fill */
.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(168,206,184,0.04) 0%, rgba(240,120,48,0.04) 100%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.svc:hover::before { opacity: 1; }

.svc__num {
  color: var(--text-faint);
  transition: color var(--tf);
}
.svc:hover .svc__num { color: var(--orange); }

.svc__body {}
.svc__title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0.6rem;
  transition: color var(--tf);
}
.svc:hover .svc__title { color: var(--green-bright); }
.svc__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 520px;
}

.svc__arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t),
              color var(--t), transform var(--t);
}
.svc:hover .svc__arrow {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

/* === SERVICE CARDS ======================================== */
.svc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.svc-card {
  position: relative;
  flex: 0 0 calc(33.333% - 0.84rem);
  background: var(--glass-bg);
  border: 1px solid var(--border-hi);
  border-radius: var(--rx);
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
  /* border-color & shadow transition handled in JS for tilt; keep slow for non-tilt */
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Orange shine — follows cursor, injected via JS custom property */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(240,107,20,0.18) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.svc-card:hover::before { opacity: 1; }

/* Grain — masked to edges only */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.12;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, transparent 48%, black 82%);
  mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, transparent 48%, black 82%);
  z-index: 2;
  mix-blend-mode: screen;
}

.svc-card:hover {
  border-color: var(--orange);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(240,107,20,0.2);
}

.svc-card__icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #A83D08;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.svc-card__icon i {
  font-size: 1.5rem;
  color: #A83D08;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.svc-card:hover .svc-card__icon {
  background: var(--orange-hi);
  box-shadow: inset 0 0 0 3px #C04E0C;
}
.svc-card:hover .svc-card__icon i { color: #C04E0C; }

.svc-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  transition: color 0.25s ease;
}
.svc-card:hover .svc-card__title { color: var(--text); }

.svc-card__desc {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--text-dim);
  flex: 1;
  margin-bottom: 1.5rem;
}

.svc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.svc-card__num { color: var(--text-faint); font-size: 0.65rem; }

.svc-card__arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: background 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, transform 0.35s var(--ease);
}
.svc-card:hover .svc-card__arrow {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .svc-card { flex: 0 0 calc(50% - 0.625rem); }
}
@media (max-width: 560px) {
  .svc-card { flex: 0 0 100%; }
}

.svc-card__badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  background: rgba(240,107,20,0.12);
  color: var(--orange);
  border: 1px solid var(--orange-dim);
  margin-bottom: 0.4rem;
}

.svc-card--bundle {
  border-color: var(--orange-dim);
}
.svc-card--bundle::before {
  background: radial-gradient(ellipse at top left, rgba(240,107,20,0.08) 0%, transparent 70%);
}

/* === CONTACT ============================================== */
.contact {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
  background: var(--bg);
  overflow: hidden;
}
.contact__mesh { position: absolute; inset: 0; pointer-events: none; }
.mesh-orb--c1 {
  width: clamp(300px,50vw,700px);
  height: clamp(300px,50vw,700px);
  background: radial-gradient(circle, rgba(142,158,140,0.3) 0%, transparent 70%);
  top: -30%; right: -15%;
  animation: orbA 20s ease-in-out infinite reverse;
}
.mesh-orb--c2 {
  width: clamp(200px,35vw,450px);
  height: clamp(200px,35vw,450px);
  background: radial-gradient(circle, rgba(240,107,20,0.22) 0%, transparent 70%);
  bottom: -20%; left: -5%;
  animation: orbB 16s ease-in-out infinite;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.contact__headline em { font-style: normal; color: var(--green); font-weight: 400; }
.contact__body {
  font-size: 0.975rem;
  line-height: 1.78;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}
.contact__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
}
.contact__link span {
  color: var(--text-faint);
  font-size: 0.68rem;
}
.contact__link, .contact__link span + * {
  font-size: 0.975rem;
  color: var(--text-dim);
  transition: color var(--tf);
}
a.contact__link:hover { color: var(--green); }
a.contact__link:hover > *:last-child { color: var(--green); }

/* === GLASS CARD =========================================== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--rx);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

/* === FORM ================================================= */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--tf), box-shadow var(--tf), background var(--tf);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: rgba(240,120,48,0.04);
  box-shadow: 0 0 0 3px rgba(240,120,48,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  padding: 0.8rem 2.5rem 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--tf), box-shadow var(--tf), background var(--tf);
}
.select-chev {
  position: absolute;
  right: 0.9rem; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  color: var(--text-dim);
  pointer-events: none;
}

/* Submit */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 0.25rem;
  background: var(--orange);
  border: none;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  transition: background var(--tf), transform var(--t), box-shadow var(--t);
}
.submit-btn:hover {
  background: var(--orange-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240,120,48,0.4);
}
.submit-btn:disabled { opacity: 0.6; }

.form-success {
  margin-top: 0.75rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--green);
  min-height: 1.3em;
}

/* === FOOTER =============================================== */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.footer__nav a {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--tf);
}
.footer__nav a:hover { color: var(--text); }
.footer__copy { color: var(--text-faint); }

/* === RESPONSIVE =========================================== */
@media (max-width: 900px) {
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__headline { position: static; font-size: clamp(2.5rem,7vw,4rem); }
  .svc { grid-template-columns: 3rem 1fr auto; gap: 1rem; }
}

@media (max-width: 640px) {
  .nav__links, .nav__cta, .nav__auth { display: none; }
  .nav__burger { display: flex; }
  /* Bootstrap-style dropdown menu */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: rgba(10,10,8,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-hi);
    padding: 0.25rem 0;
    gap: 0;
    z-index: 490;
    animation: menuSlideDown 0.28s var(--ease) both;
  }
  .nav__links.open li {
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open li:last-child { border-bottom: none; }
  .nav__links.open li a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dim);
    font-family: var(--ff-body);
    letter-spacing: 0.01em;
    transition: color var(--tf), padding-left var(--tf);
  }
  .nav__links.open li a:hover {
    color: var(--text);
    padding-left: 2rem;
  }
  /* Mobile dropdown — inline expand */
  .nav__links.open .nav__item--has-dropdown .nav__dropdown-btn {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dim);
    font-family: var(--ff-body);
    width: 100%;
  }
  .nav__links.open .nav__item--has-dropdown .nav__dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(255,255,255,0.03);
    border: none;
    border-radius: 0;
    padding: 0;
    display: none;
    backdrop-filter: none;
  }
  .nav__links.open .nav__item--has-dropdown.open .nav__dropdown { display: block; }
  .nav__links.open .nav__item--has-dropdown .nav__dropdown a {
    padding: 0.7rem 1.5rem 0.7rem 2.5rem;
    font-size: 0.88rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open .nav__item--has-dropdown .nav__dropdown a:last-child { border-bottom: none; }
  .nav__links.open .nav__item--has-dropdown.open .nav__chevron { transform: rotate(180deg); }
  .form-row { grid-template-columns: 1fr; }
  .about__stats { gap: 1.5rem; }
  .svc { grid-template-columns: 2.5rem 1fr; }
  .svc__arrow { display: none; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer__nav { margin-left: 0; }
}

@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile hero title — must come AFTER base .hero__title to win the cascade */
@media (max-width: 767px) {
  .hero__title {
    font-size: clamp(1.25rem, 6.8vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    overflow: hidden;
  }
  .hero__line--em { padding-left: 0.75rem; }
}

/* === SERVICE PAGE ========================================= */

/* Section header colours — override dim defaults with vivid site colours */
.section-num { color: var(--orange) !important; }
.section-tag { color: var(--pastel-green) !important; }

/* ── Service hero — mirrors home .hero layout ──────────── */
.svc-hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(7rem, 10vw, 9rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 5vw, 4rem);
  overflow: hidden;
}

/* Shift sphere inward — same calc as home hero */
.svc-hero .hero__sphere {
  right: max(calc((100% - 1200px) / 2 - 80px), -80px);
}

/* Mirrors hero__content: centered container, sphere overlaps right empty area */
.svc-hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.svc-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color var(--tf);
  animation: fadeUp 0.7s 0.1s var(--ease) both;
}
.svc-hero__back:hover { color: var(--text); }

.svc-hero__label {
  color: var(--orange);
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 0.7s 0.2s var(--ease) both;
}

.svc-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text);
  max-width: 560px;
  animation: fadeUp 0.9s 0.3s var(--ease) both;
}

/* Description + CTA — stacked so long descriptions don't break the layout */
.svc-hero__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 1.25rem;
  animation: fadeUp 0.9s 0.5s var(--ease) both;
}
.svc-hero__desc {
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* Mobile — sphere shrinks + foot stacks */
@media (max-width: 767px) {
  .hero__sphere {
    width: 260px;
    height: 260px;
    right: -30px;
    opacity: 0.45;
  }
  .svc-hero__desc { max-width: 100%; font-size: 0.95rem; }
}

/* Logo inside the sphere */
.sphere__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  height: 44%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.22;
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none;
}


/* Compact section label (service page) */
.svc-section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Pricing grid */
.pricing {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}
/* Period toggle */
.pricing__period-toggle {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  padding: 0.2rem;
  margin-left: auto;
}
.pricing__period-btn {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  background: none;
  border: none;
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  cursor: pointer;
  transition: background var(--tf), color var(--tf);
}
.pricing__period-btn--active {
  background: var(--orange);
  color: #fff;
}

/* Toggle monthly/yearly price within MONTHLY_YEARLY cards */
.pricing__grid[data-active="MONTHLY"] .price-y { display: none; }
.pricing__grid[data-active="YEARLY"]  .price-m { display: none; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

/* ── Pricing card — matches svc-card aesthetic exactly ──── */
.pricing__card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--border-hi);
  border-radius: var(--rx);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--text);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
/* grain texture — identical to svc-card::after */
.pricing__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.1;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, transparent 48%, black 82%);
  mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, transparent 48%, black 82%);
  z-index: 0;
  mix-blend-mode: screen;
}
.pricing__card:hover {
  border-color: var(--orange);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(240,107,20,0.2);
}
.pricing__card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(240,107,20,0.35), 0 16px 48px rgba(240,107,20,0.15);
}

.pricing__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 0.18rem 0.5rem;
  border-radius: 100px;
  z-index: 1;
}

.pricing__discount-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pastel-green);
  background: rgba(163,230,130,0.12);
  border: 1px solid rgba(163,230,130,0.3);
  padding: 0.18rem 0.5rem;
  border-radius: 100px;
  z-index: 1;
}

/* Icon box — same as svc-card__icon */
.pricing__icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange);
  box-shadow: inset 0 0 0 2px #A83D08;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.pricing__icon-box i { font-size: 1.1rem; color: #A83D08; line-height: 1; }

.pricing__tier-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pricing__amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
}
.pricing__currency { font-size: 0.85rem; color: var(--text-dim); }
.pricing__price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.pricing__period { font-size: 0.75rem; color: var(--text-dim); }
.pricing__setup-fee { font-size: 0.72rem; color: var(--text-faint); margin-bottom: 0.5rem; }
.pricing__setup-label { color: var(--text-faint); }

/* Markdown option description */
.pricing__tier-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0.75rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.pricing__tier-desc p { margin-bottom: 0.3rem; }
.pricing__tier-desc p:last-child { margin-bottom: 0; }
.pricing__tier-desc strong { color: var(--text); font-weight: 600; }
.pricing__tier-desc ul, .pricing__tier-desc ol { padding-left: 1rem; }
.pricing__tier-desc li { margin-bottom: 0.15rem; list-style: disc; }

/* Feature list */
.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.pricing__features li svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--pastel-green); }

/* Bundle: grouped features */
.pricing__feature-groups { flex: 1; margin-bottom: 0.75rem; }
.pricing__feature-group { margin-bottom: 0.75rem; }
.pricing__feature-group:last-of-type { margin-bottom: 0; }
.pricing__feature-group-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--tf);
}
.pricing__feature-group-label:hover { color: var(--orange); }
.pricing__feature-group-label i { color: var(--orange); font-size: 0.72rem; }
.pricing__feature-group-tier { color: var(--text-faint); font-size: 0.62rem; }
.pricing__feature-group-price {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--text-dim);
  white-space: nowrap;
  padding-right: 0.35rem;
}
.pricing__feature-group .pricing__features { margin-bottom: 0; }

/* Bundle savings row */
.pricing__bundle-compare {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: rgba(109,235,176,0.06);
  border: 1px solid rgba(109,235,176,0.15);
  border-radius: var(--r);
}
.pricing__bundle-individual { text-decoration: line-through; opacity: 0.6; }
.pricing__bundle-saving { color: var(--pastel-green); font-weight: 600; margin-left: auto; }
.pricing__bundle-setup { font-weight: 400; opacity: 0.8; font-size: 0.7em; }
.pricing__bundle-note { font-weight: 400; opacity: 0.7; margin-left: 0.2rem; }

/* CTA — styled like svc-card arrow row */
.pricing__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--tf);
}
.pricing__cta:hover { color: var(--orange); }
.pricing__cta svg { transition: transform var(--tf); }
.pricing__cta:hover svg { transform: translate(2px, -2px); }
.pricing__cta--featured { color: var(--orange); font-weight: 600; }

/* ── Bundle included-service tier pill ───────────────────────── */
.bundle-inc__tier {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .75rem 0 .875rem;
  flex-wrap: wrap;
}
.bundle-inc__tier-name {
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .2rem .5rem;
}
.bundle-inc__tier-price {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
}
.bundle-inc__tier-period {
  font-family: var(--ff-mono);
  font-size: .7rem;
  color: var(--text-faint);
  margin-left: .15rem;
}

/* ── Bundle price comparison bar ─────────────────────────────── */
.bundle-compare {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  flex-wrap: wrap;
}
.bundle-compare__col {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}
.bundle-compare__col--bundle {
  align-items: flex-end;
  text-align: right;
}
.bundle-compare__label {
  font-size: .7rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.bundle-compare__amount {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: .25rem;
  flex-wrap: wrap;
}
.bundle-compare__amount--strike {
  color: var(--text-faint);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.25);
  font-size: 1.25rem;
  font-weight: 600;
}
.bundle-compare__amount--bundle {
  color: var(--orange);
}
.bundle-compare__note {
  font-family: var(--ff-mono);
  font-size: .68rem;
  font-weight: 400;
  color: var(--text-faint);
  text-decoration: none;
}
.bundle-compare__arrow {
  color: var(--text-faint);
  flex-shrink: 0;
}

/* ── Bundle tier breakdown inside pricing card ───────────────── */
.pricing__bundle-detail {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pricing__card--featured .pricing__bundle-detail {
  border-top-color: rgba(255,255,255,0.2);
}
.pricing__bundle-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.3rem 0.6rem;
  align-items: center;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border-hi);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  transition: border-color var(--t), background var(--t);
}
.pricing__bundle-row:hover {
  border-color: var(--orange);
  background: rgba(240,107,20,0.06);
}
.pricing__card--featured .pricing__bundle-row {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}
.pricing__card--featured .pricing__bundle-row:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.15);
}
.pricing__bundle-icon {
  font-size: 0.8rem;
  color: var(--orange);
  line-height: 1;
}
.pricing__card--featured .pricing__bundle-icon { color: #fff; }
.pricing__bundle-svc {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}
.pricing__card--featured .pricing__bundle-svc { color: rgba(255,255,255,0.95); }
.pricing__bundle-opt {
  font-family: var(--ff-mono);
  font-size: 0.63rem;
  color: var(--text-dim);
  white-space: nowrap;
}
.pricing__card--featured .pricing__bundle-opt { color: rgba(255,255,255,0.65); }
.pricing__bundle-price-cell {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.pricing__card--featured .pricing__bundle-price-cell { color: #fff; }
.pricing__bundle-period {
  font-weight: 400;
  opacity: 0.65;
}
.pricing__bundle-compare {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: rgba(109,235,176,0.08);
  border: 1px solid rgba(109,235,176,0.2);
  border-radius: 8px;
  flex-wrap: wrap;
}
.pricing__card--featured .pricing__bundle-compare {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}
.pricing__bundle-individual {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
}
.pricing__card--featured .pricing__bundle-individual { color: rgba(255,255,255,0.65); }
.pricing__bundle-saving {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pastel-green, #6debb0);
}
.pricing__card--featured .pricing__bundle-saving { color: #fff; }
.pricing__bundle-note {
  font-weight: 400;
  font-size: 0.68rem;
  opacity: 0.75;
}

@media (max-width: 600px) {
  .bundle-compare {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .bundle-compare__col--bundle { align-items: flex-start; text-align: left; }
  .bundle-compare__arrow { transform: rotate(90deg); }
}

/* Compact combined footer bar: other services + contact CTA */
.svc-footer-bar {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--border);
}
.svc-footer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.svc-footer-bar__label {
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}
.svc-footer-bar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.svc-footer-bar__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.svc-footer-bar__cta-text {
  font-size: 0.95rem;
  color: var(--text-dim);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .svc-footer-bar__inner { flex-direction: column; align-items: flex-start; }
  .svc-footer-bar__cta { flex-direction: column; align-items: flex-start; }
}

.other-svc-link {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border-hi);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: background var(--tf), border-color var(--tf), color var(--tf);
}
.other-svc-link:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.other-svc-link--active {
  border-color: var(--pastel-green);
  color: var(--pastel-green);
  pointer-events: none;
}

/* ── Setup fee (one-time + recurring combos) ─────────── */
.pricing__setup-fee {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  font-size: .8125rem;
  color: var(--text-dim);
  margin-top: .25rem;
}
.pricing__setup-plus {
  color: var(--text-faint);
}
.pricing__setup-label {
  font-size: .75rem;
  color: var(--text-faint);
}
.pricing__card--featured .pricing__setup-fee { color: rgba(255,255,255,.65); }
.pricing__card--featured .pricing__setup-label { color: rgba(255,255,255,.45); }

/* ── Prose — rendered Markdown on service pages ─────────── */
.prose { max-width: 640px; }
.prose p {
  margin-bottom: .875rem;
  line-height: 1.75;
  color: var(--text-dim);
}
.prose p:last-child { margin-bottom: 0; }
.prose h1, .prose h2, .prose h3 {
  font-family: var(--ff-display);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
  margin: 1.25rem 0 .5rem;
}
.prose h1 { font-size: 1.5rem; }
.prose h2 { font-size: 1.25rem; }
.prose h3 { font-size: 1.0625rem; }
.prose ul, .prose ol {
  padding-left: 1.25rem;
  margin-bottom: .875rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose li + li { margin-top: .25rem; }
.prose strong { color: var(--text); font-weight: 600; }
.prose em    { color: var(--text-dim); font-style: italic; }
.prose a     { color: var(--orange); text-decoration: underline; }
.prose a:hover { color: var(--orange-hi); }
.prose code {
  font-family: monospace;
  font-size: .875em;
  background: var(--bg-2);
  color: var(--pastel-green);
  border-radius: 5px;
  padding: .1em .4em;
}
.prose blockquote {
  border-left: 3px solid var(--orange);
  margin-left: 0;
  padding-left: 1rem;
  color: var(--text-dim);
  font-style: italic;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

/* Compact prose for pricing tier descriptions */
.prose--sm p  { font-size: .9rem; margin-bottom: .5rem; }
.prose--sm h1, .prose--sm h2, .prose--sm h3 { font-size: .95rem; margin: .5rem 0 .25rem; }
.prose--sm ul, .prose--sm ol { font-size: .9rem; margin-bottom: .5rem; }

/* ============================================================
   DOMAIN SEARCH — shared between /domains and service pages
   ============================================================ */

.domain-search-section { padding: var(--section-py) 0; }
.domain-search-inline  { padding: 2rem 0 0; }

/* ── Search form ─────────────────────────────────────────── */
.domain-search__form {
  display: flex;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  align-items: center;
}

.domain-search__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-1);
  border: 1px solid var(--border-hi);
  border-radius: 12px;
  padding: 0 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.domain-search__input-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,107,20,0.10);
}

.domain-search__icon { color: var(--text-faint); font-size: 0.95rem; flex-shrink: 0; }

.domain-search__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  padding: 0.75rem 0;
}
.domain-search__input::placeholder { color: var(--text-faint); }

.domain-search__hint {
  font-size: 0.72rem;
  color: var(--text-faint);
  white-space: nowrap;
  flex-shrink: 0;
}

.domain-search__btn { white-space: nowrap; flex-shrink: 0; }

/* ── States ──────────────────────────────────────────────── */
.domain-search__idle {
  text-align: center;
  padding: 1rem 0 2rem;
}

.domain-search__tld-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.domain-search__tld-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--border-hi);
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: monospace;
}

.domain-search__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
  color: var(--text-dim);
  font-size: 0.875rem;
}

.domain-search__spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--border-hi);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.domain-search__error {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 480px;
  margin: 2rem auto;
  padding: 0.875rem 1.25rem;
  border-radius: 10px;
  background: rgba(255,122,110,0.06);
  border: 1px solid rgba(255,122,110,0.18);
  color: #FF7A6E;
  font-size: 0.875rem;
}

.domain-search__results-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

/* ── Results list ────────────────────────────────────────── */
.domain-search__grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.domain-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.domain-result-row--available {
  border-color: rgba(109,235,176,0.14);
}
.domain-result-row--available:hover {
  border-color: rgba(109,235,176,0.30);
  background: rgba(109,235,176,0.03);
}
.domain-result-row--taken {
  opacity: 0.42;
}

.domain-result-row__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.domain-result-row__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--text-faint);
}
.domain-result-row--available .domain-result-row__status-dot {
  background: var(--pastel-green);
  box-shadow: 0 0 6px rgba(109,235,176,0.55);
}

.domain-result-row__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.domain-result-row__tld {
  color: var(--pastel-green);
  font-weight: 400;
}
.domain-result-row--taken .domain-result-row__tld { color: var(--text-dim); }

.domain-result-row__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.domain-result-row__price {
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
}
.domain-result-row__per {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-left: 1px;
}

.domain-result-row__unavail {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-family: monospace;
  letter-spacing: 0.04em;
}

.domain-result-row__btn {
  padding: 0.4rem 1rem;
  border-radius: 8px;
  background: rgba(240,107,20,0.10);
  border: 1px solid rgba(240,107,20,0.22);
  color: var(--orange);
  font-size: 0.8rem;
  font-family: var(--ff-body);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.domain-result-row__btn:hover {
  background: rgba(240,107,20,0.20);
  border-color: rgba(240,107,20,0.42);
}

/* ── Register modal ──────────────────────────────────────── */
.domain-register-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.domain-register-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

.domain-register-modal__box {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--border-hi);
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.domain-register-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.domain-register-modal__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.domain-register-modal__close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.domain-register-modal__close:hover { color: var(--text); background: var(--border-hi); }

.domain-register-modal__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.domain-register-modal__domain-name {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pastel-green);
  padding: 0.75rem 1rem;
  background: rgba(109,235,176,0.05);
  border: 1px solid rgba(109,235,176,0.12);
  border-radius: 10px;
  text-align: center;
}

.domain-register-modal__field { display: flex; flex-direction: column; gap: 0.4rem; }

.domain-register-modal__label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.domain-register-modal__select {
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: 9px;
  padding: 0.55rem 0.875rem;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.domain-register-modal__select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,107,20,0.10);
}

.domain-register-modal__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.domain-register-modal__price-label {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.domain-register-modal__price {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
}

.domain-register-modal__footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.domain-register-modal__auth-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.domain-register-modal__auth-btn,
.domain-register-modal__confirm { width: 100%; justify-content: center; }

.domain-register-modal__success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(109,235,176,0.06);
  border: 1px solid rgba(109,235,176,0.18);
  border-radius: 9px;
  color: var(--pastel-green);
  font-size: 0.875rem;
}

.domain-register-modal__err-msg {
  padding: 0.75rem 1rem;
  background: rgba(255,122,110,0.06);
  border: 1px solid rgba(255,122,110,0.18);
  border-radius: 9px;
  color: #FF7A6E;
  font-size: 0.875rem;
}

/* ============================================================
   MY SERVICES PAGE
   ============================================================ */

.mysvc-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 8rem 2rem 3.5rem;
}
.mysvc-hero__body {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.mysvc-hero__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.mysvc-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.mysvc-hero__title span { color: var(--orange); }

.mysvc-content {
  padding: 3rem 2rem 6rem;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── Section ──────────────────────────────────────────────── */
.mysvc-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mysvc-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mysvc-section__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dim);
  flex-shrink: 0;
}
.mysvc-section__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.mysvc-section__sub {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-top: 1px;
}
.mysvc-section__action {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.35rem 0.875rem;
  border-radius: 8px;
  border: 1px solid var(--border-hi);
  transition: color var(--tf), background var(--tf);
}
.mysvc-section__action:hover { color: var(--text); background: var(--glass-bg); }

/* ── Empty state ──────────────────────────────────────────── */
.mysvc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 1rem;
  border: 1px dashed var(--border-hi);
  border-radius: 16px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.875rem;
}
.mysvc-empty__icon {
  font-size: 2rem;
  color: var(--text-faint);
}

/* ── Domain rows ──────────────────────────────────────────── */
.mysvc-domain-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mysvc-domain-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.mysvc-domain-row__left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
}
.mysvc-domain-row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hi);
  flex-shrink: 0;
}
.mysvc-domain-row__dot--active {
  background: var(--pastel-green);
  box-shadow: 0 0 7px rgba(109,235,176,0.55);
}
.mysvc-domain-row__dot--pending {
  background: var(--orange);
  box-shadow: 0 0 7px rgba(240,107,20,0.40);
}
.mysvc-domain-row__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.mysvc-domain-row__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mysvc-domain-row__meta {
  font-size: 0.72rem;
  color: var(--text-faint);
}
.mysvc-domain-row__meta--error { color: #FF7A6E; }

.mysvc-domain-row__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.mysvc-domain-row__years {
  font-size: 0.72rem;
  color: var(--text-faint);
}

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
}

.error-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 560px;
}

.error-hero__code {
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  opacity: 0.18;
  letter-spacing: -0.04em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -62%);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.error-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.error-hero__sub {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.error-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}

.error-hero__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.error-hero__contact:hover { color: var(--orange); }

/* Admin badge color variants */
.admin-badge--green {
  background: rgba(109,235,176,0.08) !important;
  border-color: rgba(109,235,176,0.20) !important;
  color: var(--pastel-green) !important;
}
.admin-badge--orange {
  background: rgba(240,107,20,0.10) !important;
  border-color: rgba(240,107,20,0.22) !important;
  color: var(--orange) !important;
}

