/* IBHACHOP website prototypes — Night service counter */
:root {
  --ink: #0c0f0e;
  --ink-soft: #1a211f;
  --slate: #24302c;
  --panel: #f4f6f5;
  --paper: #e8ece9;
  --muted: #5c6b65;
  --line: rgba(12, 15, 14, 0.12);
  --accent: #ff8a3d;
  --accent-deep: #e56a14;
  --accent-soft: rgba(255, 138, 61, 0.16);
  --ok: #2f9e6a;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(12, 15, 14, 0.18);
  --radius: 18px;
  --font-brand: "Syne", system-ui, sans-serif;
  --font-ui: "Figtree", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--panel);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Prototype banner */
.proto-bar {
  background: #111;
  color: #c9d4ce;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 1rem;
  text-align: center;
}

.proto-bar strong {
  color: var(--accent);
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(12, 15, 14, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand-cluster {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.techme-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.2rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.techme-link:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.techme-link img {
  height: 2.45rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.brand-divider {
  width: 1px;
  height: 1.75rem;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.brand__mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  background:
    linear-gradient(145deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: grid;
  place-items: center;
  color: #111;
  font-size: 0.85rem;
  font-weight: 800;
}

.brand__logo {
  width: auto;
  height: 2.65rem;
  max-width: 11.5rem;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 0.15rem 0.25rem;
}

.brand__name {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111 !important;
  font-weight: 700;
  font-size: 0.88rem;
}

.nav-cta:hover {
  background: #ff9d5c;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #111;
}

.btn--primary:hover {
  background: #ff9d5c;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--soft {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 138, 61, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(47, 158, 106, 0.12), transparent 50%),
    linear-gradient(160deg, #0c0f0e 0%, #17201c 45%, #0c0f0e 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 11px,
      rgba(255, 255, 255, 0.015) 11px,
      rgba(255, 255, 255, 0.015) 12px
    );
  pointer-events: none;
}

.hero__visual {
  position: absolute;
  inset: 0;
  background-color: #0c0f0e;
  background-size: cover;
  background-position: center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 4.5rem;
  max-width: 36rem;
}

.brand-lockup {
  font-family: var(--font-brand);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.brand-lockup span {
  color: var(--accent);
}

.hero__headline {
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.85rem;
  max-width: 28ch;
}

.hero__lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 38ch;
}

/* Page hero (inner) */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 4.5rem 0 3.25rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -3rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.35), transparent 70%);
  animation: pulseSoft 6s ease-in-out infinite;
}

@keyframes pulseSoft {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.page-hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42ch;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--paper);
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section__head h2 {
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.65rem;
}

/* Feature strips — one job each, not card grids in hero */
.feature-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-strip:last-child {
  border-bottom: 0;
}

.feature-strip--flip {
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-strip--flip .feature-strip__copy {
  order: 2;
}

.feature-strip h3 {
  font-family: var(--font-brand);
  font-size: 1.55rem;
  margin: 0 0 0.55rem;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
}

.feature-art {
  min-height: 240px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, var(--ink-soft), var(--slate));
  position: relative;
  overflow: hidden;
}

.feature-art img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.feature-art::before {
  content: attr(data-label);
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  color: #fff;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.feature-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 15, 14, 0.72) 100%);
  pointer-events: none;
}

.media-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.media-band figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 180px;
  position: relative;
}

.media-band img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.media-band figure:hover img {
  transform: scale(1.04);
}

.media-band figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card video,
.video-card .video-poster {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

.video-card__body {
  padding: 1rem 1.15rem 1.25rem;
}

.video-card__body h3 {
  font-family: var(--font-brand);
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.video-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.video-featured {
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
}

.video-featured video {
  width: 100%;
  display: block;
  max-height: 520px;
  background: #000;
}

.video-featured__meta {
  padding: 1.15rem 1.35rem 1.35rem;
  background: var(--ink);
  color: #fff;
}

.video-featured__meta h2 {
  font-family: var(--font-brand);
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.video-featured__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Admin shell */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 3rem);
  background: var(--panel);
}

.admin-side {
  background: var(--ink);
  color: #fff;
  padding: 1.25rem;
}

.admin-side h1 {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  margin: 0 0 1.25rem;
}

.admin-side a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.admin-side a.is-active,
.admin-side a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-main {
  padding: 1.5rem 1.75rem 2.5rem;
}

.admin-main h2 {
  font-family: var(--font-brand);
  margin: 0 0 0.35rem;
}

.admin-main > .lede {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.admin-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.admin-stat strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.45rem;
}

.admin-stat span {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.admin-table th {
  background: var(--paper);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.status-dot::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ok);
}

.status-dot.is-draft::before {
  background: #c4a035;
}

.upload-zone {
  border: 1.5px dashed rgba(12, 15, 14, 0.25);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  background: #fff;
  margin-bottom: 1.25rem;
}

.upload-zone strong {
  display: block;
  font-family: var(--font-brand);
  margin-bottom: 0.35rem;
}

.upload-zone p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Download page */
.download-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.download-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.download-main {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.download-main h2 {
  font-family: var(--font-brand);
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.download-main .meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.file-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.file-row:first-of-type {
  border-top: 0;
}

.file-row strong {
  display: block;
  font-size: 0.98rem;
}

.file-row span {
  color: var(--muted);
  font-size: 0.85rem;
}

.download-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.side-note {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.35rem;
}

.side-note h3 {
  font-family: var(--font-brand);
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.side-note p,
.side-note li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.side-note ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.changelog {
  margin-top: 3rem;
}

.change-item {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.change-item time {
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 0.9rem;
}

.change-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.change-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-plan.is-featured {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
  transform: translateY(-0.35rem);
}

.price-plan.is-featured p {
  color: rgba(255, 255, 255, 0.7);
}

.price-plan h3 {
  font-family: var(--font-brand);
  margin: 0 0 0.35rem;
}

.price-plan .amount {
  font-family: var(--font-brand);
  font-size: 2rem;
  margin: 0.75rem 0;
}

.price-plan ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
  flex: 1;
}

.price-plan.is-featured ul {
  color: rgba(255, 255, 255, 0.72);
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.support-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.support-block h3 {
  font-family: var(--font-brand);
  margin: 0 0 0.4rem;
}

.support-block p {
  margin: 0;
  color: var(--muted);
}

.form-stack {
  display: grid;
  gap: 0.85rem;
}

.form-stack label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-stack input,
.form-stack textarea,
.form-stack select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.form-stack textarea {
  min-height: 8rem;
  resize: vertical;
}

.photo-preview {
  display: grid;
  place-items: center;
  width: 9rem;
  height: 9rem;
  border-radius: 14px;
  border: 1px dashed var(--line);
  background: #fff;
  overflow: hidden;
}

.photo-preview__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-preview__empty {
  margin: 0;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.form-alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(47, 158, 106, 0.12);
  color: var(--ink);
  border: 1px solid rgba(47, 158, 106, 0.35);
  margin-bottom: 1rem;
  font-weight: 600;
}

.field-error {
  color: #b42318;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Portal shell */
.portal-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 70vh;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}

.portal-nav {
  background: var(--ink);
  color: #fff;
  padding: 1.25rem;
}

.portal-nav a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.portal-nav a.is-active,
.portal-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.portal-main {
  padding: 1.5rem;
}

.login-box {
  max-width: 24rem;
  margin: 2rem auto;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.login-box h2 {
  font-family: var(--font-brand);
  margin: 0 0 1rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer .brand {
  margin-bottom: 0.75rem;
}

.footer-tagline {
  margin: 0;
  max-width: 22rem;
  line-height: 1.45;
  font-size: 0.95rem;
}

.footer-tagline__primary {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.35rem;
}

.footer-tagline__motto {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.tm-hl {
  color: var(--accent);
  font-weight: 700;
}

.field-error {
  color: #c0392b;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(47, 158, 106, 0.12);
  color: #1f7a4d;
  font-weight: 600;
}

.feature-catalog {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}

.feature-group {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.feature-group h3 {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.feature-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  columns: 2;
  column-gap: 2rem;
}

.feature-list li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .feature-list {
    columns: 1;
  }
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* Review hub */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.hub-link {
  display: block;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hub-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hub-link strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.hub-link span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--ink-soft);
  color: #e8ece9;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-card blockquote {
  margin: 0;
  flex: 1 1 auto;
}

.testimonial-card blockquote p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #d5ddd8;
}

.testimonial-readmore {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
}

.testimonial-readmore a {
  color: var(--accent);
  font-weight: 600;
}

.testimonial-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-card__who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.testimonial-card__who img,
.testimonial-card__who .avatar-initials {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__who .avatar-initials,
.testimony-hero__photo.avatar-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-card__who strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-card__who span {
  display: block;
  color: #9aaba2;
  font-size: 0.82rem;
}

.testimonial-video {
  margin-left: auto;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.testimony-hero {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.testimony-hero__photo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimony-detail {
  max-width: 42rem;
}

.testimony-detail__quote {
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
}

.testimony-detail__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.testimony-detail__meta li {
  margin: 0.4rem 0;
  color: var(--muted);
}

/* Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--ink);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: stretch;
  }

  .feature-strip,
  .feature-strip--flip {
    grid-template-columns: 1fr;
  }

  .feature-strip--flip .feature-strip__copy {
    order: 0;
  }

  .download-panel,
  .price-grid,
  .support-grid,
  .portal-shell,
  .site-footer__grid,
  .change-item,
  .media-band,
  .video-grid,
  .admin-layout,
  .admin-stats,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .price-plan.is-featured {
    transform: none;
  }

  .techme-link img {
    height: 2.15rem;
    max-width: 8rem;
  }

  .brand__logo {
    height: 2.2rem;
    max-width: 8.5rem;
  }
}
