/* =========================================================
   123media — design tokens
   ========================================================= */
:root {
  /* surfaces */
  --bg-0: #ffffff;
  --bg-1: #ffffff;
  --bg-2: #faf8f5;
  --border: #efeae3;
  --border-strong: #ddd5ca;

  /* accents */
  --green: #f45d0e;
  --green-strong: #d64a04;
  --green-dim: #f5b28a;
  --green-tint: rgba(244, 93, 14, 0.08);
  --cyan: #0e7490;
  --cyan-dim: #7fb4c2;
  --amber: #b45309;
  --red: #dc2626;
  --ok: #16a34a;
  --ok-bright: #22c55e;
  --ok-tint: rgba(34, 197, 94, 0.12);

  /* text */
  --text: #23201c;
  --text-muted: #675f55;
  --text-dim: #9a9188;

  /* type */
  --font-display: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: 'Jost', 'Sora', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* layout */
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1140px;
  --gap: clamp(1rem, 2vw, 2rem);

  /* elevation */
  --shadow-sm: 0 1px 2px rgba(40, 32, 24, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(40, 32, 24, 0.14);
  --shadow-lg: 0 24px 60px -24px rgba(40, 32, 24, 0.22);

  /* motion */
  --dur-fast: 120ms;
  --dur-base: 240ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; color: var(--text-muted); }
ul { padding-left: 1.2em; }

code, .mono { font-family: var(--font-mono); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (max-width: 600px) {
  .container { padding: 0 1.5rem; }
}

section { padding: clamp(3rem, 6vw, 5.5rem) 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 0.6em 1em;
  z-index: 200;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* =========================================================
   Utility text
   ========================================================= */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.9em;
}

.text-center { text-align: center; }
.center-col { max-width: 720px; margin-left: auto; margin-right: auto; }
.text-muted { color: var(--text-muted); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8em 1.5em;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-1);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { border-color: var(--green); color: var(--green-strong); text-decoration: none; }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  box-shadow: 0 6px 18px -8px rgba(244, 93, 14, 0.5);
}
.btn-primary:hover { background: var(--green-strong); border-color: var(--green-strong); color: #ffffff; }

.btn-ghost { border-color: transparent; background: transparent; }
.btn-ghost:hover { border-color: var(--border-strong); }

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }

/* =========================================================
   Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  gap: 1rem;
}
.logo {
  font-family: var(--font-logo);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  transition: color var(--dur-fast) var(--ease), letter-spacing var(--dur-base) var(--ease);
}
.logo:hover { text-decoration: none; color: var(--green-strong); letter-spacing: 0.26em; }
.logo img { height: 19px; width: auto; transition: opacity var(--dur-fast) var(--ease); }
.logo:hover img { opacity: 0.8; }
.site-footer .logo img { height: 17px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-strong); text-decoration: none; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
}
.nav-dropdown-toggle .nav-caret { font-size: 0.7em; color: var(--text-dim); transition: transform var(--dur-base) var(--ease); }
.nav-dropdown-toggle:hover, .nav-dropdown-toggle[aria-expanded="true"], .nav-dropdown-toggle.is-current { color: var(--green-strong); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  margin: 0.6rem 0 0;
  padding: 0.5rem;
  min-width: 170px;
  list-style: none;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 0.2rem;
  display: none;
  z-index: 50;
}
.nav-dropdown-menu a { display: block; padding: 0.45rem 0.65rem; border-radius: 8px; }
.nav-dropdown-menu a:hover { background: var(--bg-2); }

@media (min-width: 861px) {
  /* bridges the gap between the toggle and the absolutely-positioned
     menu so the cursor doesn't leave the hoverable area mid-transit */
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: 0.6rem;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu { display: flex; }
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 0.45em 0.8em;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.9rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: inline-block; }
  .nav-cta .btn span.btn-label-long { display: none; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    display: none;
    margin: 0.7rem 0 0;
    padding: 0 0 0 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu { display: flex; }
  .nav-dropdown.is-open .nav-caret { transform: rotate(180deg); }
}

@media (max-width: 480px) {
  .nav-cta .btn { padding: 0.7em 1.1em; font-size: 0.85rem; }
  .logo { font-size: 1.02rem; }
}

/* =========================================================
   Panel (formerly "terminal window") — clean framed card
   ========================================================= */
.terminal {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.3rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.terminal-bar .dot { display: none; }
.dot-red, .dot-amber, .dot-green { display: none; }
.terminal-bar .title {
  margin-left: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.terminal-body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 1.5rem;
  color: var(--text);
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}
.terminal-body .prompt { display: none; }
.terminal-body .out { color: var(--text-muted); }
.terminal-body .ok { color: var(--green); font-weight: 600; }
.terminal-body .info { color: var(--amber); font-weight: 600; }

.scanlines::after { display: none; content: none; }

.caret { display: none; }

/* =========================================================
   Hero services bento grid
   ========================================================= */
.hero-services { display: flex; flex-direction: column; gap: 0.9rem; }
.hero-services-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-strong);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4em 1em;
  box-shadow: var(--shadow-sm);
}
.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.hero-tile {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem 1rem;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease);
}
.hero-tile:hover {
  text-decoration: none;
  border-color: var(--green-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem; height: 2.1rem;
  border-radius: 10px;
  background: var(--green-tint);
  color: var(--green-strong);
  margin-bottom: 0.55rem;
}
.hero-tile-icon svg { width: 1.05rem; height: 1.05rem; }
.hero-tile:hover .hero-tile-icon { background: var(--green); color: #fff; }
.hero-tile-name { font-weight: 600; font-size: 0.92rem; line-height: 1.3; }
.hero-tile-price { font-size: 0.8rem; color: var(--text-muted); }
.hero-tile:hover .hero-tile-price { color: var(--green-strong); }
.hero-services-foot {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}
@media (max-width: 900px) {
  .hero-services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .hero-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Hero services card (legacy)
   ========================================================= */
.hero-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.4rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.hero-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.hero-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-strong);
}
.hero-card-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}
.hero-card-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--dur-fast) var(--ease);
}
.hero-card-list a:hover { background: var(--green-tint); text-decoration: none; color: var(--green-strong); }
.hero-card-price { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.hero-card-list a:hover .hero-card-price { color: var(--green-strong); }
.hero-card-foot {
  padding: 0.9rem 1.4rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* =========================================================
   Trust strip / status dots
   ========================================================= */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.led {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-tint);
  flex-shrink: 0;
}
.led-ok {
  background: var(--ok-bright);
  box-shadow: 0 0 0 3px var(--ok-tint);
}
@media (prefers-reduced-motion: no-preference) {
  .led.pulse { animation: pulse 2.4s ease-in-out infinite; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* =========================================================
   Cards / grid
   ========================================================= */
.grid {
  display: grid;
  gap: var(--gap);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---- client logo carousel ---- */
.logo-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-carousel-viewport {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.logo-carousel-viewport::-webkit-scrollbar { display: none; }
.logo-slide {
  flex: 0 0 calc((100% - 3rem) / 4);
  scroll-snap-align: start;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius, 10px);
  padding: 1.4rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slide img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}
.logo-carousel-arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-1);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.logo-carousel-arrow:hover { border-color: var(--border-strong); }
.logo-carousel-arrow:disabled { opacity: 0.35; cursor: default; }
@media (max-width: 980px) {
  .logo-slide { flex-basis: calc((100% - 2rem) / 3); }
}
@media (max-width: 640px) {
  .logo-slide { flex-basis: calc((100% - 1rem) / 2); }
  .logo-carousel-arrow { display: none; }
}

.card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease);
}
.card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.card h3 { color: var(--text); }
.card .icon-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem; height: 2.8rem;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green-strong);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.card .icon-tag svg {
  width: 1.3rem;
  height: 1.3rem;
}

/* =========================================================
   Pricing cards
   ========================================================= */
.plans-carousel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
.plans {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.plans::-webkit-scrollbar { display: none; }
.plans .plan-card {
  flex: 0 0 clamp(230px, calc((100% - 2rem) / 3), 320px);
  scroll-snap-align: start;
}
.plans-arrow {
  flex: 0 0 auto;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-1);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}
.plans-arrow:hover { border-color: var(--border-strong); }
.plans-arrow:disabled { opacity: 0.35; cursor: default; }
@media (max-width: 640px) { .plans-arrow { display: none; } }
.plans-no-overflow .plans-arrow { display: none; }

.plan-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.plan-card:hover { box-shadow: var(--shadow-md); }
.plan-card.is-featured {
  outline: 2px solid var(--green);
  outline-offset: -2px;
  box-shadow: var(--shadow-md);
}
.plan-card-head {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
}
.plan-card-head .cmd { white-space: nowrap; }
.plan-card.is-featured .plan-card-head { background: var(--green-tint); }
.plan-card-head .cmd {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--green);
  color: #fff;
  padding: 0.3em 0.75em;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-card-body { padding: 1.4rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0.3rem 0 0.1rem;
}
.plan-price .cycle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--text-muted);
  font-weight: 400;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.plan-features li::before {
  content: '\2713\00A0\00A0';
  color: var(--green);
  font-weight: 700;
}
.plan-card .btn { margin-top: auto; justify-content: center; width: 100%; }

/* plan-card expandable full spec ("see more features") */
.plan-more-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--border);
  color: var(--green-strong);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.9rem 0;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.plan-more-toggle:hover { color: var(--green); }
.plan-more-toggle .chevron {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease);
  font-size: 0.8em;
}
.plan-more-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.plan-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease);
}
.plan-more[data-open="true"] { max-height: 1400px; }
.plan-more-group { padding: 0.9rem 0 0.2rem; }
.plan-more-group + .plan-more-group { border-top: 1px dashed var(--border); }
.plan-more-cat {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-strong);
  margin: 0 0 0.6rem;
}
.spec-list-mini {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.spec-list-mini li { display: flex; align-items: baseline; gap: 0.5em; }
.spec-list-mini li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  font-size: 0.85em;
  flex-shrink: 0;
}
.spec-list-mini li.n::before { content: '\2014'; color: var(--text-dim); font-weight: 400; }
.spec-list-mini li.tbd { color: var(--amber); }
.spec-list-mini li.tbd::before { content: '\26A0\00A0'; color: var(--amber); }
.plan-more-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin: 0.5rem 0 0;
  font-style: italic;
}

/* =========================================================
   Spec table
   ========================================================= */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0 2rem;
  background: var(--bg-1);
}
.spec-table th, .spec-table td {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  text-align: left;
}
.spec-table th {
  background: var(--bg-2);
  color: var(--text);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.spec-table td { color: var(--text-muted); }
.spec-table tr:nth-child(even) td { background: var(--bg-0); }
.table-scroll { overflow-x: auto; }

/* =========================================================
   Spec sheet panel ("everything included")
   ========================================================= */
.spec-body { padding: 1.6rem 1.6rem 1.7rem; }
.spec-cmd { display: none; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem 2rem;
}
.spec-group {
  min-width: 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--green-tint);
}
.spec-cat {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-strong);
  margin: 0 0 0.9rem;
}
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.spec-list li {
  display: flex;
  align-items: baseline;
  gap: 0.55em;
}
.spec-list li::before {
  content: '\2713'; /* ✓ */
  color: var(--green);
  font-weight: 700;
  font-size: 0.85em;
  flex-shrink: 0;
}
.spec-foot {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.spec-foot .out { color: var(--text-muted); }
.spec-foot .ok { color: var(--green); margin-right: 0.4em; font-weight: 700; }

@media (max-width: 880px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .spec-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .spec-group { border-left: 0; padding-left: 0; }
}

/* =========================================================
   Spec comparison matrix (feature rows × tier columns)
   ========================================================= */
.spec-matrix {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--bg-1);
}
.spec-matrix th, .spec-matrix td {
  border: 1px solid var(--border);
  padding: 0.68rem 0.9rem;
  text-align: center;
  vertical-align: middle;
}

/* sticky feature-name column */
.spec-matrix th:first-child,
.spec-matrix td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  text-align: left;
  background: var(--bg-1);
}
.spec-matrix tbody th[scope="row"] {
  font-weight: 500;
  color: var(--text);
}

/* column headers */
.spec-matrix thead th {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-2);
  white-space: nowrap;
}
.spec-matrix thead th:first-child { background: var(--bg-2); }
.mx-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  padding: 0.15em 0.55em;
  margin-left: 0.4em;
  vertical-align: middle;
}

/* category divider rows */
.spec-matrix-group th {
  text-align: left;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--green-strong);
  background: var(--bg-0) !important;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

/* price row */
.spec-matrix-price th[scope="row"] { color: var(--text-muted); }
.spec-matrix-price td {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-strong);
}

/* value tokens */
.spec-matrix .y::before { content: '\2713'; color: var(--green); font-weight: 700; }
.spec-matrix .n::before { content: '\2014'; color: var(--text-dim); }
.spec-matrix .tbd {
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--amber);
}
.spec-matrix .tbd::before { content: '\26A0\00A0'; } /* ⚠ + nbsp */

/* featured Pro column (4th) */
.spec-matrix th:nth-child(4),
.spec-matrix td:nth-child(4) {
  background: rgba(244, 93, 14, 0.05);
  border-left-color: var(--green-dim);
  border-right-color: var(--green-dim);
}
.spec-matrix thead th:nth-child(4) { background: rgba(244, 93, 14, 0.1); }

/* zebra striping on value cells for readability */
.spec-matrix tbody tr:not(.spec-matrix-group):nth-of-type(even) td {
  background: var(--bg-0);
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.1rem 2rem 1.1rem 0;
  cursor: pointer;
  display: block;
  position: relative;
}
.faq-q::first-letter { text-transform: uppercase; }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--green);
  transition: transform var(--dur-base) var(--ease);
}
.faq-item[data-open="true"] .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-q:hover { color: var(--green-strong); }
.faq-q .chevron { display: none; }
.faq-a {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease);
}
.faq-item[data-open="true"] .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 0.2rem; }

/* =========================================================
   Backup demo / uptime widget
   ========================================================= */
.backup-log {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.backup-progress-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.backup-progress-track {
  flex: 1;
  height: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.backup-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--green);
  border-radius: 999px;
}
.backup-progress-pct {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-strong);
  min-width: 3.6ch;
  text-align: right;
}

.uptime-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.uptime-counter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--green-strong);
}
.uptime-counter .unit { font-family: var(--font-sans); font-weight: 400; font-size: 0.9rem; letter-spacing: 0; color: var(--text-muted); margin-left: 0.3em; }

/* =========================================================
   Scrolling log strip (retired — hidden if still present)
   ========================================================= */
.log-strip { display: none; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: var(--bg-1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.site-footer a.logo { color: var(--green); }
.site-footer a.logo:hover { color: var(--green-strong); }
.footer-col a:hover { color: var(--green-strong); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* =========================================================
   Misc page sections
   ========================================================= */
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hero { padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.path-card {
  display: block;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease);
}
.path-card:hover { border-color: var(--green-dim); transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.path-card h3 { color: var(--text); margin-bottom: 0.4rem; }
.path-card .arrow { color: var(--green-strong); font-weight: 600; font-size: 0.92rem; }

.compare-table-wrap { margin-top: 1.5rem; }

.form-field { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-field input, .form-field textarea, .form-field select {
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75em 0.9em;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-tint);
  outline: none;
}
.form-note { font-size: 0.82rem; color: var(--text-dim); margin-top: -0.4rem; }

.kv-list { list-style: none; padding: 0; margin: 0; }
.kv-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.kv-list li span:first-child { color: var(--text-muted); }
.kv-list li span:last-child { font-weight: 500; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3em 0.8em;
  margin: 0 0.4em 0.4em 0;
}

/* =========================================================
   Domain checker
   ========================================================= */
.domain-checker {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.domain-checker-body {
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}
.domain-checker-prompt {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.domain-checker-prompt .prompt { display: none; }

/* integrated search bar */
.search-container {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--bg-1);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.search-container:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-tint);
}
.domain-input-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.1em 0 1.2em;
  font-size: 1.05rem;
  color: var(--text-dim);
}
.domain-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.02rem;
  padding: 0.9em 0.6em;
  caret-color: var(--green);
}
.domain-input:focus { outline: none; }
.domain-input::placeholder { color: var(--text-dim); }
.search-btn {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0 1.8em;
  border: 0;
  border-radius: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease);
}
.search-btn:hover { background: var(--green-strong); }
.search-btn:active { background: var(--green-strong); }

.results {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.domain-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-0);
  flex-wrap: wrap;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.domain-info {
  display: flex;
  align-items: center;
  gap: 0.75em;
  flex-wrap: wrap;
  min-width: 0;
}
.domain-name { color: var(--text); font-weight: 600; min-width: 13ch; font-size: 0.95rem; }

/* status pill */
.domain-status {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.2em 0.7em;
  white-space: nowrap;
}

/* checking */
.domain-result.checking { opacity: 0.75; }
.domain-result.checking .domain-status { color: var(--text-muted); }

/* available */
.domain-result.available {
  border-color: var(--green-dim);
  border-left-color: var(--green);
  background: var(--green-tint);
}
.domain-result.available .domain-name { color: var(--green-strong); }
.domain-result.available .domain-status {
  color: var(--green-strong);
  border-color: var(--green-dim);
  background: rgba(244, 93, 14, 0.1);
}

/* taken */
.domain-result.unavailable { opacity: 0.6; }
.domain-result.unavailable .domain-name { color: var(--text-muted); text-decoration: line-through; text-decoration-color: var(--text-dim); }
.domain-result.unavailable .domain-status { color: var(--text-dim); }

/* error */
.domain-result.error { border-left-color: var(--amber); }
.domain-result.error .domain-status { color: var(--amber); border-color: var(--amber); }

.register-btn {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45em 1.2em;
  border-radius: 999px;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green-strong);
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.register-btn:hover {
  background: var(--green);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 480px) {
  .domain-result { align-items: flex-start; }
  .register-btn { margin-left: 0; }
}

/* =========================================================
   TLD price tiles (domains page)
   ========================================================= */
.tld-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 820px) { .tld-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tld-grid { grid-template-columns: 1fr; } }

.tld-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease);
}
.tld-card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tld-card.is-featured {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.tld-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.tld-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
}
.tld-badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  padding: 0.3em 0.7em;
  white-space: nowrap;
}
.tld-price {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}
.tld-amt { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.tld-cycle { font-size: 0.85rem; color: var(--text-muted); }
.tld-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
}
.tld-meta li { display: flex; justify-content: space-between; gap: 1rem; }
.tld-meta li span:first-child { color: var(--text-dim); }
.tld-meta li span:last-child { color: var(--text-muted); font-weight: 500; }
.tld-meta .free { color: var(--green-strong); font-weight: 600; }
.tld-check {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65em 1em;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease);
}
.tld-check:hover { border-color: var(--green); color: var(--green-strong); background: var(--green-tint); }

.placeholder-note {
  border: 1px dashed var(--amber);
  background: rgba(180, 83, 9, 0.05);
  color: var(--amber);
  font-size: 0.82rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

/* =========================================================
   Status page
   ========================================================= */
.status-banner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--ok-tint);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  margin: 0 0 2rem;
}
.status-banner .led { width: 10px; height: 10px; }
.status-banner-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #14532d;
}
.status-banner-meta { margin-left: auto; font-size: 0.82rem; color: var(--text-muted); white-space: nowrap; }

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 860px) { .status-grid { grid-template-columns: 1fr; } }

.server-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.server-card-top {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.server-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
}
.server-role { font-size: 0.85rem; color: var(--text-muted); }
.server-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ok);
  white-space: nowrap;
}
.server-ticks {
  display: flex;
  gap: 2px;
  margin: 0.9rem 0 0.5rem;
  height: 26px;
  align-items: stretch;
}
.server-ticks i {
  flex: 1;
  border-radius: 2px;
  background: var(--ok-bright);
  opacity: 0.85;
}
.server-ticks i.dim { opacity: 0.45; }
.server-ticks i.warn { background: #f59e0b; opacity: 0.9; }
.server-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.server-meta strong { color: var(--text-muted); font-weight: 600; }
