:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --panel: #ffffff;
  --panel-strong: #eef5f1;
  --ink: #1d2525;
  --muted: #5e6b68;
  --line: #d9e0dc;
  --accent: #0d7c66;
  --accent-strong: #075f4d;
  --warn: #b64226;
  --warn-bg: #fff0eb;
  --ok: #1d7a44;
  --shadow: 0 16px 45px rgba(20, 37, 33, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 12px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 247, 244, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.mark {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(13, 124, 102, 0.28);
  background:
    linear-gradient(135deg, #075f4d 0%, #0d7c66 58%, #1a9e86 100%);
  color: white;
  box-shadow: 0 12px 24px rgba(13, 124, 102, 0.18);
}

.mark-core {
  position: relative;
  z-index: 2;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.mark-scan {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
}

.mark-scan::before,
.mark-scan::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.62);
}

.mark-scan::before {
  left: 5px;
  right: 5px;
  top: 50%;
  height: 1px;
}

.mark-scan::after {
  top: 5px;
  bottom: 5px;
  left: 50%;
  width: 1px;
}

.brand-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.brand-subtitle {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.access-link,
.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav a {
  min-height: 38px;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.access-link {
  min-height: 38px;
  padding: 0 11px;
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav a.active,
.access-link.active,
.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.nav a:hover,
.access-link:hover {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.header-cta {
  box-shadow: 0 10px 24px rgba(13, 124, 102, 0.16);
}

.button.danger {
  border-color: #e7b7a9;
  background: var(--warn-bg);
  color: var(--warn);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
}

.eyebrow {
  display: block;
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 1.02fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 138px);
  padding: clamp(24px, 5vw, 54px) 0 42px;
}

.landing-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.7rem, 5.8vw, 5.25rem);
  line-height: 0.96;
}

.landing-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.62;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button.quiet {
  background: transparent;
}

.hero-slider {
  position: relative;
  max-width: 650px;
  min-height: 118px;
  margin-top: 24px;
  padding: 18px 18px 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 124, 102, 0.1), transparent 54%),
    var(--panel);
  box-shadow: 0 16px 34px rgba(20, 37, 33, 0.08);
}

.banner-slide {
  position: absolute;
  inset: 18px 18px 44px;
  display: grid;
  align-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.banner-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.banner-slide strong,
.banner-slide span {
  display: block;
}

.banner-slide strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.banner-slide span {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.banner-dots {
  position: absolute;
  left: 18px;
  bottom: 14px;
  display: flex;
  gap: 8px;
}

.banner-dots button {
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: #c7d3cf;
  cursor: pointer;
}

.banner-dots button.active {
  background: var(--accent);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 26px;
}

.hero-proof div {
  min-height: 92px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(20, 37, 33, 0.07);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1;
}

.hero-proof span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-strip span,
.use-case-list span {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-visual {
  overflow: hidden;
  border: 1px solid #cfd8d3;
  border-radius: 8px;
  background: #17221f;
  box-shadow: 0 24px 70px rgba(16, 31, 27, 0.24);
}

.visual-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-top span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #91b8ad;
}

.visual-top strong {
  margin-left: 8px;
  overflow: hidden;
  color: #d9eee8;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  padding: 16px;
}

.visual-card,
.visual-list,
.visual-screen {
  min-height: 106px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #eef8f4;
  padding: 14px;
}

.visual-card.wide {
  grid-column: span 2;
}

.visual-card small {
  color: #a9c2ba;
}

.visual-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.65rem;
}

.visual-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
  height: 54px;
  margin-top: 12px;
}

.visual-bars i {
  display: block;
  border-radius: 4px 4px 0 0;
  background: #3cc9a7;
}

.visual-bars i:nth-child(1) { height: 35%; }
.visual-bars i:nth-child(2) { height: 68%; }
.visual-bars i:nth-child(3) { height: 48%; }
.visual-bars i:nth-child(4) { height: 84%; }
.visual-bars i:nth-child(5) { height: 58%; }

.visual-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 66px;
  gap: 12px;
  align-items: stretch;
  min-height: 178px;
  background:
    linear-gradient(135deg, rgba(60, 201, 167, 0.22), transparent 48%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 1px, transparent 1px, transparent 18px),
    #24322e;
}

.screen-window {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 248, 244, 0.15), rgba(238, 248, 244, 0.04)),
    linear-gradient(135deg, rgba(60, 201, 167, 0.35), transparent 62%);
}

.screen-sidebar {
  display: grid;
  gap: 8px;
}

.screen-sidebar i {
  display: block;
  border-radius: 5px;
  background: rgba(238, 248, 244, 0.14);
}

.visual-list {
  display: grid;
  align-content: center;
  gap: 14px;
}

.visual-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d9eee8;
  font-size: 0.92rem;
}

.visual-list b {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #3cc9a7;
}

.visual-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  padding: 0 16px 16px;
}

.visual-footer span {
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #cce3dd;
  font-size: 0.8rem;
  font-weight: 700;
}

.landing-section,
.landing-band {
  margin-top: 28px;
  padding: clamp(26px, 5vw, 46px) 0;
}

.section-heading-tight {
  max-width: 760px;
}

.section-heading-tight h2,
.landing-band h2,
.two-col h2,
.request-section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.feature-card,
.price-card,
.demo-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 150px;
  padding: 18px;
}

.feature-card strong,
.price-card strong {
  display: block;
  font-size: 1.04rem;
}

.feature-card p,
.price-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.landing-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.use-case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.two-col,
.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 22px;
  align-items: start;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  min-height: 170px;
  padding: 18px;
}

.price-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-weight: 800;
}

.price-card.highlighted {
  border-color: var(--accent);
  background: var(--panel-strong);
}

.demo-form {
  padding: 20px;
}

.landing-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.8fr) repeat(4, minmax(130px, 1fr));
  gap: clamp(18px, 4vw, 34px);
  margin-top: 32px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-line span,
.footer-brand p,
.footer-bottom {
  color: var(--muted);
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  line-height: 1.58;
}

.landing-footer strong,
.footer-column strong {
  color: var(--ink);
}

.footer-demo {
  width: fit-content;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.landing-footer a:not(.button) {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
}

.landing-footer a:not(.button):hover {
  text-decoration: underline;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  line-height: 1.45;
}

.content-page {
  display: grid;
  gap: 18px;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px) 0 20px;
}

.content-page h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
}

.content-intro {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.content-card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.content-card p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  padding: clamp(28px, 6vw, 64px) 0 34px;
}

.about-hero-copy h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.15rem, 4.8vw, 4.5rem);
  line-height: 1.02;
}

.about-hero-copy p,
.strength-section p,
.about-story-grid p,
.about-keyword-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.about-hero-copy p {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 1.07rem;
}

.about-leader-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about-leader-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-leader-panel div {
  padding: 18px;
}

.about-leader-panel span,
.leadership-grid figcaption {
  display: block;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-leader-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 1.6rem;
}

.about-leader-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.strength-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 22px;
  align-items: start;
  padding: clamp(26px, 5vw, 44px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength-section h2,
.about-story-grid h2,
.leadership-gallery h2,
.about-keyword-panel h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.strength-card {
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.strength-card strong,
.strength-card span {
  display: block;
}

.strength-card strong {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.strength-card span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.35;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 34px 0 6px;
}

.about-story-grid article,
.about-keyword-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about-story-grid article {
  min-height: 250px;
  padding: 22px;
}

.leadership-gallery {
  display: grid;
  gap: 18px;
  padding: 34px 0 6px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.leadership-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.leadership-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.leadership-grid figcaption {
  padding: 12px;
}

.leadership-grid a {
  color: inherit;
  text-decoration: none;
}

.leadership-grid figcaption a {
  color: var(--accent-strong);
}

.about-keyword-panel {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(13, 124, 102, 0.11), transparent 48%),
    var(--panel);
}

.about-keyword-panel p {
  max-width: 980px;
  margin: 14px 0 0;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  min-height: calc(100vh - 138px);
  padding: clamp(28px, 6vw, 68px) 0 40px;
}

.profile-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.94;
}

.profile-subtitle {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.profile-portrait {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.profile-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-portrait figcaption {
  padding: 14px 16px;
  color: var(--accent-strong);
  font-weight: 800;
  line-height: 1.35;
}

.profile-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 30px;
}

.profile-signal-grid article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.profile-signal-grid strong,
.profile-signal-grid span {
  display: block;
}

.profile-signal-grid strong {
  font-size: 1.25rem;
}

.profile-signal-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.4;
}

.profile-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 6px 0 16px;
}

.profile-story article {
  min-height: 270px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.profile-story h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.profile-story p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.photo-page {
  padding: clamp(24px, 5vw, 54px) 0 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--accent-strong);
  text-decoration: none;
}

.photo-detail-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: start;
}

.photo-detail-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.photo-detail-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.photo-detail-card figcaption {
  padding: 15px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.photo-detail-copy h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.photo-detail-copy p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.photo-keywords {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.about-faq {
  margin-top: 28px;
}

.content-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
  margin-top: 28px;
  padding: clamp(28px, 5vw, 46px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-page > .trust-section {
  margin-top: 0;
}

.trust-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.trust-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(20, 37, 33, 0.07);
}

.trust-card strong,
.trust-card p {
  display: block;
}

.trust-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-page {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 6vw, 64px) 0 20px;
}

.pricing-page h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.pricing-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 430px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.pricing-card.highlighted {
  border-color: var(--accent);
  background:
    linear-gradient(135deg, rgba(13, 124, 102, 0.11), transparent 45%),
    var(--panel);
}

.pricing-card span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-card h2,
.comparison-panel h2,
.billing-faq h3 {
  margin: 0;
}

.pricing-card strong {
  font-size: 1.45rem;
}

.pricing-card p,
.billing-faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-card .button {
  align-self: end;
  margin-top: 8px;
}

.comparison-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.comparison-table {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 8px;
  align-items: center;
}

.comparison-row span {
  min-height: 40px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  color: var(--muted);
  font-size: 0.9rem;
}

.comparison-row .feature-name {
  color: var(--ink);
  font-weight: 800;
}

.billing-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.billing-faq article {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.panel,
.snapshot-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel {
  padding: 20px;
}

.section-title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.muted {
  color: var(--muted);
}

.form-row {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.form-row label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.compact-actions {
  align-items: center;
  justify-content: flex-end;
  margin-top: 0;
}

.auth-wrap {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 150px);
}

.auth-card {
  width: min(420px, 100%);
}

.auth-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--accent-strong);
}

.inline-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--warn);
  font-size: 0.9rem;
}

.panel-divider {
  height: 1px;
  margin: 22px 0;
  background: var(--line);
}

.invite-output {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.9rem;
}

.invite-output p {
  margin: 0;
}

.invite-output a {
  color: var(--accent-strong);
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #f0c9bc;
  border-radius: 8px;
  background: var(--warn-bg);
  color: #73311f;
}

.notice strong {
  color: var(--warn);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.stat {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.stat strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dashboard-main {
  display: grid;
  gap: 18px;
}

.report-panel,
.alerts-panel,
.leads-panel {
  box-shadow: none;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.report-table {
  display: grid;
  gap: 8px;
}

.report-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px 150px auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.report-row strong,
.report-row span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.alert-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.alert-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-left-width: 4px;
  border-radius: 8px;
  background: #fbfcfb;
}

.alert-row strong,
.alert-row span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alert-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.alert-high {
  border-left-color: var(--warn);
  background: #fff8f5;
}

.alert-medium {
  border-left-color: #c68a1d;
  background: #fffaf0;
}

.alert-low {
  border-left-color: #6e8b86;
}

.lead-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.lead-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 10px;
  margin-top: 16px;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.segmented button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  font-weight: 750;
  cursor: pointer;
}

.segmented button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.lead-toolbar input {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 11px;
}

.lead-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.lead-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.lead-main strong,
.lead-main span,
.lead-meta span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-main strong {
  font-size: 1rem;
}

.lead-main span,
.lead-meta span {
  color: var(--muted);
  font-size: 0.84rem;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.lead-actions select {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 0 8px;
  font-size: 0.84rem;
}

.lead-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 150px auto;
  gap: 10px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.lead-error {
  margin: 0;
  color: var(--warn);
  font-size: 0.84rem;
}

.email-sent {
  background: #e9f7ef;
  color: var(--ok);
}

.email-failed {
  background: var(--warn-bg);
  color: var(--warn);
}

.email-pending,
.email-not_configured {
  background: #f3f1ed;
  color: #675f55;
}

.lead-notes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.lead-notes input {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
}

.detail-panel {
  box-shadow: none;
}

.detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.detail-head p {
  margin: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.mini-stat {
  min-height: 88px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.mini-stat span,
.mini-stat small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.mini-stat strong {
  display: block;
  margin: 7px 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
}

.detail-section {
  margin-top: 18px;
}

.detail-section h3 {
  margin: 0 0 10px;
  font-size: 0.98rem;
}

.compact-list {
  display: grid;
  gap: 8px;
}

.compact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.compact-row strong,
.compact-row span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.detail-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.detail-snapshot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.detail-snapshot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #15201d;
}

.detail-snapshot span {
  display: block;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.audit-panel {
  box-shadow: none;
}

.audit-list {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow: auto;
}

.audit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.audit-row strong,
.audit-row span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.audit-row strong {
  display: block;
  font-size: 0.92rem;
}

.audit-row span {
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
}

.preview {
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px dashed #b8c5c0;
  border-radius: 8px;
  background: #eaf0ed;
}

.preview video,
.snapshot-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #15201d;
}

.preview-empty {
  max-width: 420px;
  padding: 28px;
  text-align: center;
}

.preview-empty h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.log {
  display: grid;
  gap: 10px;
  max-height: 260px;
  overflow: auto;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.log li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-head h1 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.snapshot-card {
  overflow: hidden;
}

.snapshot-image {
  aspect-ratio: 16 / 10;
  background: #13211d;
}

.snapshot-meta {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.snapshot-meta h3 {
  margin: 0;
  font-size: 1rem;
}

.snapshot-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-monitoring {
  background: #e9f7ef;
  color: var(--ok);
}

.status-stopped {
  background: #f3f1ed;
  color: #675f55;
}

.status-registered {
  background: #edf2fb;
  color: #285380;
}

.status-online {
  background: #eaf8f6;
  color: #0c6d77;
}

.status-paused {
  background: #fff5df;
  color: #805a11;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 28px;
  border: 1px dashed #b8c5c0;
  border-radius: 8px;
  background: #eef3f0;
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.employee-list {
  display: grid;
  gap: 10px;
}

.employee-row,
.admin-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.employee-row strong,
.employee-row span,
.admin-row strong,
.admin-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.employee-row span,
.admin-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.employee-row > div:first-child {
  min-width: 0;
}

.employee-row > div:first-child span {
  display: block;
  margin-top: 3px;
}

.row-tail {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.row-tail span:last-child {
  max-width: 160px;
}

.small-button {
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.84rem;
}

@media (max-width: 820px) {
  .topbar,
  .dashboard-head,
  .notice,
  .detail-head {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar-right,
  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav a,
  .access-link,
  .header-cta {
    flex: 1;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .landing-hero,
  .about-hero,
  .profile-hero,
  .strength-section,
  .landing-band,
  .trust-section,
  .two-col,
  .request-section,
  .pricing-grid,
  .pricing-cards,
  .billing-faq {
    grid-template-columns: 1fr;
  }

  .strength-grid,
  .about-story-grid,
  .leadership-grid,
  .profile-signal-grid,
  .profile-story,
  .photo-detail-layout,
  .photo-keywords {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 142px;
  }

  .banner-slide {
    inset: 16px 16px 44px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .content-card-grid {
    grid-template-columns: 1fr;
  }

  .content-page {
    padding-top: 20px;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .product-visual {
    order: -1;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-card.wide {
    grid-column: auto;
  }

  .visual-footer {
    justify-content: flex-start;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .split-row {
    grid-template-columns: 1fr;
  }

  .report-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lead-main,
  .lead-meta,
  .lead-notes,
  .lead-toolbar {
    grid-template-columns: 1fr;
  }

  .lead-actions {
    justify-content: flex-start;
  }

  .preview {
    min-height: 240px;
  }
}
