:root {
  --bg: #fcfdff;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --surface-soft-alt: #f8f4ff;
  --text: #2f3338;
  --muted: #6d7480;
  --line: #dde6ef;
  --line-strong: #cfd9e4;
  --blue: #1d6cf2;
  --green: #14c39a;
  --teal: #48b8d8;
  --peach: #ffd7c3;
  --orange: #f2ad63;
  --dark: #101318;
  --dark-soft: #171b22;
  --shadow: 0 24px 70px rgba(120, 135, 160, 0.15);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 215, 195, 0.22), transparent 22%),
    radial-gradient(circle at top right, rgba(29, 108, 242, 0.08), transparent 24%),
    #fff;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(221, 230, 239, 0.7);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
  flex-shrink: 0;
}

.brand-wordmark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.72rem, 2.1vw, 2.26rem);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 800;
  white-space: nowrap;
}

.brand-fitbiz {
  color: #111827;
  letter-spacing: -0.04em;
}

.brand-os {
  background: linear-gradient(90deg, #2c7bf2, #29c7b2, #f3b35a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  margin-left: 0;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a,
.nav-dropdown-toggle {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.site-nav a.active,
.site-nav a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--text);
}

.nav-item {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 180ms ease;
}

.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(700px, 68vw);
  padding: 24px 52px 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 4px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 56px rgba(120, 135, 160, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 60;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  min-height: 58px;
  padding: 5px 6px;
  border-radius: 10px;
  color: #59616d;
  font-size: 0.84rem;
  line-height: 1.25;
  text-align: left;
  border: 1px solid transparent;
}

.nav-dropdown-menu a:hover {
  background: rgba(240, 246, 252, 0.92);
  border-color: rgba(214, 226, 238, 0.95);
  color: var(--text);
}

.solution-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(72, 184, 216, 0.12), rgba(242, 173, 99, 0.14));
}

.solution-icon i {
  font-size: 0.8rem;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solution-text {
  display: grid;
  gap: 1px;
  align-content: start;
}

.solution-text strong {
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.15;
}

.solution-text small {
  color: #6b7380;
  font-size: 0.64rem;
  line-height: 1.15;
}

.nav-dropdown-menu .solution-link:last-child {
  grid-column: 1 / -1;
}

.nav-dropdown-ai .nav-dropdown-menu .solution-link:last-child {
  grid-column: auto;
}

.header-actions,
.hero-actions,
.inline-actions,
.footer-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions {
  margin-left: 18px;
}

.button,
.input-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.input-like:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  box-shadow: 0 14px 28px rgba(72, 184, 216, 0.22);
}

.button-secondary,
.input-like {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line-strong);
  color: var(--text);
}

.button-dark {
  color: #fff;
  background: var(--dark);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.nav-toggle:hover {
  background: var(--surface-soft);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 220ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.eyebrow,
.mini-tag,
.section-tag,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 173, 99, 0.45);
  background: rgba(255, 255, 255, 0.92);
  color: #636b76;
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  box-shadow: 0 0 0 3px rgba(72, 184, 216, 0.12);
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

.lead {
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.02rem;
}

.hero-section {
  padding: 56px 0 86px;
}

.hero-grid,
.page-hero-grid,
.module-hero-grid,
.developer-hero-grid,
.business-hero-grid,
.split-section,
.video-metrics,
.process-section,
.footer-links-panel {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.6rem, 5.3vw, 4.9rem);
  line-height: 0.98;
}

body[data-page="home"] .hero-copy h1 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.9rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

body[data-page="home"] .hero-copy .lead {
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 580px;
}

body[data-page="platform"] .hero-copy h1 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 3.9rem;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

body[data-page="platform"] .hero-copy .lead {
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 620px;
}

body[data-page="home"] .eyebrow,
body[data-page="home"] .hero-proof p,
body[data-page="home"] .site-nav a,
body[data-page="home"] .button,
body[data-page="home"] .trust-band p {
  font-family: "Plus Jakarta Sans", sans-serif;
}

body:not([data-page="home"]) .page-hero h1,
body:not([data-page="home"]) .section-intro h2,
body:not([data-page="home"]) .section-heading h2,
body:not([data-page="home"]) .stack-card h3,
body:not([data-page="home"]) .workflow-step h3,
body:not([data-page="home"]) .benefit-card h3,
body:not([data-page="home"]) .integration-card h3,
body:not([data-page="home"]) .comparison-table th,
body:not([data-page="home"]) .comparison-table td strong {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

body:not([data-page="home"]) .page-hero .lead,
body:not([data-page="home"]) .section-heading p,
body:not([data-page="home"]) .section-intro p {
  max-width: 720px;
}

body[data-page="integrations"] .page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.5rem);
}

body[data-page="about"] .page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.5rem);
}

.hero-copy .lead,
.page-hero .lead {
  max-width: 610px;
}

.hero-actions,
.inline-actions {
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof p {
  color: #505864;
  font-size: 0.96rem;
}

.avatar-row {
  display: inline-flex;
  align-items: center;
}

.avatar-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--peach), var(--teal));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.avatar-row span:first-child {
  margin-left: 0;
}

.hero-visual,
.page-hero-visual,
.architecture-panel,
.developer-panel,
.business-panel {
  position: relative;
}

.dashboard-frame {
  padding: 16px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 214, 196, 0.9), rgba(220, 240, 255, 0.95));
  box-shadow: var(--shadow);
}

.dashboard-shot {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 214, 196, 0.88), rgba(211, 231, 255, 0.92));
  box-shadow: 0 30px 70px rgba(120, 135, 160, 0.2);
}

.dashboard-shot img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(223, 232, 241, 0.9);
  background: #fff;
  box-shadow: 0 12px 30px rgba(94, 109, 133, 0.12);
}

.platform-showcase {
  position: relative;
  overflow: hidden;
}

.platform-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(72, 184, 216, 0.18), transparent 20%),
    radial-gradient(circle at 12% 82%, rgba(242, 173, 99, 0.16), transparent 18%),
    radial-gradient(circle at 84% 20%, rgba(29, 108, 242, 0.08), transparent 22%);
  pointer-events: none;
}

.platform-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.platform-showcase-grid-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.platform-showcase-copy h2,
.platform-showcase-copy h1 {
  margin: 18px 0 16px;
  line-height: 0.98;
}

.platform-showcase-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.platform-circle-frame,
.platform-arch-frame {
  position: relative;
  overflow: hidden;
  box-shadow: 0 38px 72px rgba(108, 129, 158, 0.18);
}

.platform-circle-frame {
  width: min(100%, 470px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 214, 196, 0.78), rgba(205, 229, 255, 0.9));
}

.platform-arch-frame {
  width: min(100%, 520px);
  min-height: 470px;
  padding: 18px;
  border-radius: 220px 220px 30px 30px;
  background: linear-gradient(135deg, rgba(255, 214, 196, 0.7), rgba(205, 229, 255, 0.88));
}

.platform-circle-frame img,
.platform-arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.platform-circle-frame img {
  border-radius: 50%;
}

.platform-arch-frame img {
  min-height: 434px;
  border-radius: 205px 205px 20px 20px;
}

.platform-float-badge {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 40px rgba(110, 129, 156, 0.18);
}

.platform-badge-brand {
  width: 112px;
  height: 112px;
  left: 12%;
  bottom: 12%;
}

.platform-badge-brand img {
  width: 72px;
  height: auto;
}

.platform-badge-icon {
  width: 104px;
  height: 104px;
  left: 8%;
  top: 50%;
  background: linear-gradient(135deg, rgba(255, 224, 74, 0.96), rgba(246, 208, 53, 0.96));
  color: #0f5e6f;
  font-size: 2rem;
}

.platform-trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(205, 217, 230, 0.9);
  background: rgba(255, 255, 255, 0.78);
  color: #54606d;
  font-size: 0.88rem;
  font-weight: 700;
}

.platform-proof-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.platform-proof-item {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(217, 228, 239, 0.95);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(124, 136, 156, 0.08);
}

.platform-proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.platform-proof-item p {
  color: var(--muted);
  line-height: 1.72;
}

.platform-types-section {
  padding-top: 18px;
}

.platform-types-heading {
  margin-bottom: 34px;
  text-align: center;
}

.platform-types-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  color: #0a5769;
}

.platform-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-type-card {
  min-height: 240px;
  padding: 28px 26px 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #055a73, #0f7d87);
  box-shadow: 0 22px 48px rgba(95, 132, 141, 0.2);
  color: #fff;
}

.platform-type-icon {
  width: 72px;
  height: 72px;
  margin-left: auto;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.7rem;
}

.platform-type-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.platform-type-card p {
  color: rgba(236, 246, 249, 0.88);
  line-height: 1.72;
  font-size: 0.97rem;
}

.ai-fit-hero {
  padding: 68px 0 44px;
}

.ai-fit-hero-grid,
.ai-fit-story-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.ai-fit-story-row.is-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.ai-fit-hero-visual,
.ai-fit-story-visual {
  position: relative;
}

.ai-fit-hero-frame {
  padding: 0;
}

.ai-fit-hero-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ai-fit-hero-badge {
  position: absolute;
  left: 28px;
  bottom: 34px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 44px rgba(118, 132, 154, 0.18);
}

.ai-fit-hero-badge img {
  width: 76px;
  min-height: auto;
  border: 0;
  border-radius: 0;
}

.ai-fit-kicker {
  margin-bottom: 14px;
  color: #0d5b72;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-fit-hero-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  line-height: 0.98;
  background: linear-gradient(90deg, #1f2937 0%, #2c7bf2 22%, #29c7b2 58%, #f3b35a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body:not([data-page="home"]) .page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  background: linear-gradient(90deg, #1f2937 0%, #2c7bf2 22%, #29c7b2 58%, #f3b35a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ai-fit-hero-copy .lead {
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.78;
}

.ai-fit-trust {
  padding: 10px 0 74px;
}

.ai-fit-trust p {
  margin-bottom: 22px;
  text-align: center;
  color: #476777;
  font-weight: 600;
}

.ai-fit-brand-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}

.ai-fit-brand-row span {
  text-align: center;
  color: #0d566a;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  opacity: 0.9;
}

.ai-fit-story-stack {
  display: grid;
  gap: 34px;
  padding-bottom: 94px;
}

.ai-fit-story-card {
  padding: 0;
  border-radius: 34px;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.ai-fit-story-visual {
  min-height: 420px;
  aspect-ratio: 1 / 1;
  display: flex;
  padding: 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 20%, rgba(72, 184, 216, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(255, 214, 196, 0.22), rgba(216, 236, 255, 0.46));
  box-shadow: 0 24px 56px rgba(121, 136, 156, 0.14);
}

.ai-fit-story-visual img {
  width: 100%;
  height: 100%;
  min-height: 384px;
  object-fit: cover;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(221, 230, 240, 0.96);
}

.ai-fit-story-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.ai-fit-story-copy p {
  color: var(--muted);
  line-height: 1.78;
}

.ai-fit-story-copy .lead {
  max-width: 520px;
}

.ai-fit-story-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.ai-fit-story-points li {
  position: relative;
  padding-left: 22px;
  color: #57606d;
  line-height: 1.65;
}

.ai-fit-story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--orange));
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 16px;
  overflow: auto;
}

.dash-pill,
.dash-search {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #66707a;
  font-size: 0.76rem;
  white-space: nowrap;
}

.dash-pill.active {
  background: #fff;
  color: var(--text);
}

.dash-search {
  margin-left: auto;
}

.dash-body {
  display: grid;
  grid-template-columns: 132px 1fr;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}

.dash-nav {
  padding: 18px 12px;
  background: #f6f8fb;
  display: grid;
  gap: 10px;
}

.dash-link {
  padding: 10px 12px;
  border-radius: 14px;
  color: #66707a;
  font-size: 0.84rem;
}

.dash-link.active {
  background: #fff;
  box-shadow: 0 10px 20px rgba(132, 145, 168, 0.12);
  color: var(--text);
}

.dash-main {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.dash-stats,
.dash-charts,
.card-grid,
.feature-carousel,
.core-grid,
.stats-row,
.three-up,
.two-up,
.audience-grid,
.developer-grid,
.integration-grid,
.spec-grid,
.workflow-grid,
.footer-columns {
  display: grid;
  gap: 18px;
}

.dash-stats {
  grid-template-columns: repeat(3, 1fr);
}

.dash-charts {
  grid-template-columns: 1.2fr 0.9fr;
}

.dash-card,
.chart-card,
.queue-card,
.feature-tile,
.metric-panel,
.stack-card,
.core-card,
.module-card,
.product-card,
.benefit-card,
.audience-card,
.developer-card,
.integration-card,
.workflow-step,
.info-card,
.layer-card,
.stack-item,
.endpoint-card,
.comparison-table,
.steps-panel,
.tool-panel,
.demo-panel,
.cta-panel,
.quote-card,
.trust-grid span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(124, 136, 156, 0.06);
}

.dash-card,
.chart-card,
.queue-card {
  padding: 18px;
}

.dash-card small,
.chart-heading span,
.queue-card li span,
.footer-brand-copy p,
.section-intro p,
.section-heading p,
.metric-panel p,
.feature-tile p,
.stack-copy p,
.core-card p,
.module-card p,
.product-card p,
.benefit-card p,
.audience-card p,
.developer-card p,
.integration-card p,
.workflow-step p,
.info-card p,
.layer-card p,
.stack-item span,
.endpoint-card p,
.quote-card p,
.footer-bottom-line p,
.demo-note,
.demo-form label {
  color: var(--muted);
  line-height: 1.72;
}

.dash-card strong,
.metric-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}

.lilac {
  background: #f2ecff;
}

.peach {
  background: #fff0e7;
}

.mint {
  background: #eaf9f4;
}

.chart-heading,
.queue-card li,
.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bar-set {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.bar-set span {
  display: block;
  width: var(--bar);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.queue-card ul,
.footer-columns a,
.benefit-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.queue-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.queue-card li:last-child {
  border-bottom: 0;
}

.trust-band {
  padding: 0 0 86px;
}

.trust-band p {
  margin-bottom: 24px;
  text-align: center;
  color: #5f6772;
  font-weight: 600;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: 0;
}

.trust-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 26px;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
  color: #5f6772;
  text-align: left;
}

.trust-grid span i {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(72, 184, 216, 0.14), rgba(242, 173, 99, 0.18));
  color: #2f617d;
  font-size: 0.96rem;
  flex-shrink: 0;
}

.trust-grid span em {
  font-style: normal;
}

.section-intro,
.section,
.page-hero {
  padding: 0 0 86px;
}

.compact-intro {
  padding-top: 86px;
  padding-bottom: 86px;
}

.os-showcase {
  padding-bottom: 24px;
}

.os-capability-stack {
  display: grid;
  gap: 24px;
}

.os-stack-card {
  min-height: 360px;
}

.stack-card .stack-visual {
  min-height: 100%;
  margin-bottom: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f9fd, #eff4fb);
}

.stack-card .stack-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.stack-card .mini-tag {
  align-self: flex-start;
}

.stack-card h3 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.06;
}

.stack-card p {
  color: var(--muted);
  line-height: 1.78;
}

.stack-card .bullet-grid {
  margin-top: 22px;
}

.stack-card .inline-actions {
  margin-top: auto;
  padding-top: 22px;
}

.client-visual,
.coach-visual,
.admin-visual,
.nutrition-visual,
.brand-visual,
.payments-visual,
.marketing-visual,
.staff-visual,
.booking-visual,
.reporting-visual {
  position: relative;
  overflow: hidden;
}

.solution-image-visual {
  padding: 18px;
  display: grid;
  align-items: stretch;
}

.solution-image-frame {
  min-height: 300px;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(221, 230, 239, 0.95);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.solution-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.phone-shell {
  position: absolute;
  inset: 24px 64px 24px 84px;
  border-radius: 34px;
  border: 1px solid #e7d8d0;
  background: #fff;
  box-shadow: 12px 12px 0 rgba(255, 214, 194, 0.8);
}

.phone-pill {
  width: 88px;
  height: 12px;
  border-radius: 999px;
  background: #e7edf5;
  margin: 18px auto 0;
}

.phone-screen {
  position: absolute;
  inset: 52px 28px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f9fe, #eff4fb);
}

.phone-orb {
  width: 126px;
  height: 126px;
  margin: 28px auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 214, 225, 0.9), rgba(130, 149, 255, 0.95));
}

.phone-bars,
.nutrition-lines {
  padding: 0 24px;
}

.phone-bars span,
.nutrition-lines span,
.coach-column span,
.staff-strip,
.booking-header,
.report-line {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4ab2dd, #f4a857);
}

.coach-column {
  position: absolute;
  inset: 30px 28px auto;
  display: grid;
  gap: 12px;
}

.coach-column span {
  height: 54px;
  background: linear-gradient(180deg, #ffffff, #eef4fb);
  border: 1px solid #e2eaf3;
}

.coach-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid #e3e9f3;
  background: rgba(255, 255, 255, 0.96);
  color: #5a6570;
  font-weight: 700;
}

.admin-grid {
  position: absolute;
  inset: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.admin-grid span {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 251, 0.98));
  border: 1px solid #e2eaf3;
}

.nutrition-card {
  position: absolute;
  inset: 26px 34px;
  border-radius: 28px;
  border: 1px solid #e3e9f4;
  background: rgba(255, 255, 255, 0.98);
}

.nutrition-ring {
  width: 128px;
  height: 128px;
  margin: 28px auto 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 42%, transparent 43%),
    conic-gradient(from 0deg, #4ab2dd, #78ccaa, #f4a857, #8fa1ff, #4ab2dd);
}

.nutrition-lines span + span {
  margin-top: 12px;
  background: #e4ebf4;
}

.brand-devices {
  position: absolute;
  inset: 28px 34px;
}

.brand-phone,
.brand-tablet {
  position: absolute;
  border-radius: 28px;
  border: 1px solid #e4d7cf;
  background: linear-gradient(180deg, #ffffff, #f3f7fc);
}

.brand-phone {
  width: 34%;
  height: 78%;
  left: 8%;
  top: 12%;
  box-shadow: 10px 10px 0 rgba(255, 216, 195, 0.82);
}

.brand-tablet {
  width: 56%;
  height: 88%;
  right: 4%;
  top: 6%;
  box-shadow: 10px 10px 0 rgba(214, 235, 255, 0.9);
}

.payment-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #11151d, #313843);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
}

.payment-bars {
  position: absolute;
  left: 170px;
  right: 28px;
  top: 44px;
  display: grid;
  gap: 16px;
}

.payment-bars span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(74, 178, 221, 0.95), rgba(244, 168, 87, 0.95));
}

.payment-bars span:nth-child(2) {
  width: 82%;
  background: #dfe7f1;
}

.payment-bars span:nth-child(3) {
  width: 64%;
}

.marketing-funnel {
  position: absolute;
  inset: 34px 52px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.marketing-funnel span {
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 250, 0.98));
  border: 1px solid #dfe8f2;
}

.marketing-funnel span:nth-child(1) {
  width: 86%;
  height: 56px;
}

.marketing-funnel span:nth-child(2) {
  width: 62%;
  height: 52px;
}

.marketing-funnel span:nth-child(3) {
  width: 38%;
  height: 48px;
}

.staff-dots {
  position: absolute;
  top: 32px;
  left: 30px;
  display: flex;
  gap: 16px;
}

.staff-dots span {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #dbe5f3);
  border: 1px solid #dbe4ef;
}

.staff-strip {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 34px;
  height: 56px;
  background: linear-gradient(180deg, #ffffff, #eef4fa);
  border: 1px solid #dfe8f1;
}

.booking-panel {
  position: absolute;
  inset: 28px;
  border-radius: 26px;
  border: 1px solid #e2e9f3;
  background: rgba(255, 255, 255, 0.97);
  padding: 22px;
}

.booking-header {
  width: 56%;
  height: 18px;
  margin-bottom: 18px;
}

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

.booking-grid span {
  min-height: 72px;
  border-radius: 18px;
  border: 1px solid #e2eaf4;
  background: linear-gradient(180deg, #f9fbff, #eef3fb);
}

.report-bars {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 42px;
  display: flex;
  align-items: end;
  gap: 18px;
}

.report-bars span {
  flex: 1;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, #4ab2dd, #8fa1ff);
}

.report-bars span:nth-child(1) {
  height: 88px;
}

.report-bars span:nth-child(2) {
  height: 132px;
}

.report-bars span:nth-child(3) {
  height: 110px;
  background: linear-gradient(180deg, #78ccaa, #f4a857);
}

.report-line {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 44px;
  height: 20px;
  background: #e5ebf4;
}

.report-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 68%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4ab2dd, #f4a857);
}

.page-hero {
  padding-top: 54px;
}

.section-intro .container,
.section-heading {
  text-align: center;
}

.booking-intro {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.booking-intro h1 {
  margin: 0 0 18px;
}

.booking-intro p {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-intro h2,
.section-heading h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.interactive-carousel {
  padding-bottom: 76px;
  max-width: 1360px;
}

.section-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.carousel-title {
  margin-top: 14px;
  font-size: clamp(1.3rem, 2.25vw, 1.95rem);
  line-height: 1.08;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(124, 136, 156, 0.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #ccd2d9;
  cursor: pointer;
}

.carousel-dot.active {
  background: #23272c;
}

.feature-carousel {
  grid-template-columns: repeat(3, 1fr);
}

.interactive-carousel .feature-carousel {
  position: relative;
  min-height: 560px;
}

.interactive-carousel .feature-tile {
  position: absolute;
  inset: 0;
  padding: 22px;
  opacity: 0;
  transform: translateX(32px) scale(0.98);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 60px rgba(124, 136, 156, 0.1);
}

.interactive-carousel .feature-tile.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.feature-tile,
.core-card,
.module-card,
.product-card,
.benefit-card,
.audience-card,
.developer-card,
.integration-card,
.workflow-step,
.info-card {
  padding: 18px;
}

.feature-tile h3,
.core-card h3,
.module-card h3,
.product-card h3,
.benefit-card h3,
.audience-card h3,
.developer-card h3,
.integration-card h3,
.workflow-step h3,
.info-card h3,
.stack-copy h3,
.steps-panel h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.feature-media,
.core-visual,
.stack-visual,
.hardware-visual {
  min-height: 320px;
  border-radius: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fd, #edf3fa);
  border: 1px solid #e7edf4;
}

.interactive-carousel .feature-media {
  min-height: 310px;
  margin-bottom: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f4f7fd, #edf3fb);
}

.feature-copy {
  padding: 0 2px 2px;
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f5f8fc;
  color: #6d7480;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.interactive-carousel .feature-tile h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  margin-bottom: 10px;
}

.interactive-carousel .feature-tile p {
  font-size: 1.04rem;
  line-height: 1.78;
  max-width: 980px;
}

.dna-mock {
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.dna-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #5f6772;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.dna-grid span {
  display: grid;
  place-items: center;
  min-height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef6ff, #fff0e6);
  color: #5b6370;
  font-size: 0.82rem;
  font-weight: 700;
}

.phone-mock {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.phone-screen {
  width: 185px;
  height: 250px;
  margin-bottom: -18px;
  padding: 20px 12px 12px;
  border-radius: 28px;
  border: 4px solid #24282d;
  background: #fff;
}

.phone-chip {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff4fb;
  font-size: 0.72rem;
  font-weight: 700;
}

.message-card {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.76rem;
}

.message-card.soft {
  background: #f8fbff;
}

.message-card.blue {
  background: #eef6ff;
}

.flow-mock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
  gap: 12px;
  padding: 22px;
}

.flow-mock span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 999px;
  background: #fff;
  color: #5f6772;
  font-size: 0.78rem;
  font-weight: 600;
}

.orb-mock,
.assistant-visual {
  display: grid;
  place-items: center;
}

.glow-orb,
.assistant-orb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd6ec, #4c7cff);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.video-card {
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: #0f1420;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.12), transparent 24%);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.video-overlay-soft {
  align-items: end;
  justify-items: start;
  padding: 22px;
  background: linear-gradient(180deg, rgba(8, 13, 22, 0.04), rgba(8, 13, 22, 0.36));
}

.video-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #27303b;
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-video-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.portrait-video-card::before {
  display: none;
}

.portrait-video-card .feature-video {
  position: relative;
  inset: auto;
  width: min(100%, 360px);
  height: auto;
  max-height: 640px;
  max-width: 360px;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  z-index: 1;
  box-shadow: 0 26px 60px rgba(20, 28, 42, 0.18);
}

.portrait-video-card .video-overlay {
  pointer-events: auto;
  z-index: 2;
}

.portrait-video-overlay {
  background: transparent;
}

@media (max-width: 900px) {
  .portrait-video-card {
    min-height: 560px;
  }

  .portrait-video-card .feature-video {
    width: min(100%, 320px);
    max-width: 320px;
    max-height: 560px;
  }
}

.play-button {
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.play-button:hover {
  transform: scale(1.04);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.portrait-video-card.is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #24282d;
}

.metric-column {
  display: grid;
  gap: 18px;
}

.metric-panel {
  padding: 24px;
}

.metric-panel span {
  display: block;
  margin: 8px 0;
  font-weight: 700;
}

.stacked-features {
  display: grid;
  gap: 24px;
  padding-bottom: 96px;
}

.stack-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 360px;
  padding: 24px;
  border-radius: 36px;
  border: 1px solid #dfe8f2;
  box-shadow: 0 18px 44px rgba(124, 136, 156, 0.08);
}

.peach-card {
  background: #fff4ef;
}

.blue-card {
  background: #f0f4ff;
}

.mint-card {
  background: #eefaf7;
}

.lilac-card {
  background: #f5effc;
}

.layered-visual .layer {
  position: absolute;
  border-radius: 20px;
  border: 1px solid #ead7cd;
  background: #fff;
}

.layered-visual .back {
  inset: 16px 40px 78px 18px;
  background: #f4ebff;
}

.layered-visual .mid {
  inset: 44px 18px 30px 48px;
  background: #ffeae2;
}

.layered-visual .front {
  inset: 28px;
  padding: 18px;
}

.layer-main {
  height: 106px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff8f3, #edf3ff);
  font-size: 3rem;
  font-weight: 800;
}

.progress-track {
  margin-top: 18px;
  height: 14px;
  border-radius: 999px;
  background: #f0f3f8;
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.assistant-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: #5f6772;
  font-size: 0.82rem;
}

.chat-visual::before,
.code-visual::before,
.list-visual::before,
.editor-visual::before,
.integration-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 16px;
  border: 1px solid #e6edf4;
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
}

.chat-visual::after {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 239, 214, 0.9), rgba(255, 239, 214, 0.9)) 0 0 / 100% 28% no-repeat,
    linear-gradient(180deg, rgba(224, 244, 234, 0.9), rgba(224, 244, 234, 0.9)) 0 42% / 100% 24% no-repeat,
    linear-gradient(180deg, rgba(235, 244, 255, 0.92), rgba(235, 244, 255, 0.92)) 0 74% / 100% 18% no-repeat;
}

.code-visual::after {
  content: "GET /v1/bookings\A POST /v1/nutrition-plans\A webhook.member.updated";
  position: absolute;
  inset: 40px 34px;
  white-space: pre;
  color: #6672a0;
  font-size: 0.88rem;
  line-height: 1.8;
}

.list-visual::after {
  content: "";
  position: absolute;
  inset: 34px 26px;
  background:
    linear-gradient(180deg, transparent 0 12%, #edf3fb 12% 14%, transparent 14%) 0 0 / 100% 26% repeat-y;
}

.editor-visual::after {
  content: "";
  position: absolute;
  inset: 34px 28px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 239, 246, 0.95), rgba(255, 239, 246, 0.95)) 0 0 / 100% 36% no-repeat,
    linear-gradient(180deg, rgba(231, 243, 255, 0.95), rgba(231, 243, 255, 0.95)) 0 56% / 100% 20% no-repeat,
    #fff;
}

.integration-visual::after {
  content: "API    Hardware    CRM";
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.96rem;
  font-weight: 700;
  color: #66707a;
  letter-spacing: 0.04em;
}

.bullet-grid,
.module-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.bullet-grid li,
.feature-list li,
.benefit-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.68;
  color: #5f6772;
}

.bullet-grid li::before,
.feature-list li::before,
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--orange));
}

.core-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 92px;
}

.pain-grid,
.capability-grid {
  display: grid;
  gap: 18px;
}

.pain-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 86px;
}

.capability-section {
  padding-bottom: 92px;
}

.capability-grid {
  grid-template-columns: repeat(2, 1fr);
}

.pain-card,
.capability-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 30px rgba(124, 136, 156, 0.07);
}

.pain-card h3,
.capability-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.pain-card p,
.capability-card p {
  color: var(--muted);
  line-height: 1.76;
}

.pain-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(72, 184, 216, 0.14), rgba(242, 173, 99, 0.18));
  color: #2d617d;
  font-weight: 800;
}

.problem-story-reverse .stack-visual {
  order: 2;
}

.problem-story-reverse .stack-copy {
  order: 1;
}

.problem-visual {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f9fd, #edf3fb);
}

.problem-visual .pain-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 0;
  border-radius: 18px;
  font-size: 1.2rem;
}

.problem-visual h4 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.06;
}

.problem-visual p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.problem-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.problem-chip-row span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #d8e2ef;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
  color: #49515d;
}

.problem-panels {
  display: grid;
  gap: 22px;
  padding-bottom: 96px;
}

.problem-panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: stretch;
  padding: 26px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(124, 136, 156, 0.07);
}

.problem-panel-peach {
  background: #fff4ef;
}

.problem-panel-blue {
  background: #f0f4ff;
}

.problem-panel-mint {
  background: #eefaf7;
}

.problem-panel-lilac {
  background: #f5effc;
}

.problem-panel-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(219, 228, 239, 0.95);
}

.problem-panel-side h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.04;
}

.problem-panel-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.problem-panel-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 6px;
}

.problem-panel-main h4 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.problem-panel-main .bullet-grid {
  margin-top: 0;
}

.problem-pair-stack {
  display: grid;
  gap: 34px;
  padding-bottom: 96px;
}

.problem-pair-shell {
  padding: 34px;
  border-radius: 40px;
}

.problem-pair-shell-neutral {
  background: linear-gradient(180deg, #f4f6fb, #f7f8fc);
}

.problem-pair-shell-soft {
  background: linear-gradient(180deg, #fff5ef, #f7f2ff);
}

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

.problem-side-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(124, 136, 156, 0.07);
}

.problem-side-media {
  height: 260px;
  overflow: hidden;
  background: #edf3fb;
}

.problem-side-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.problem-side-copy {
  padding: 28px 28px 26px;
}

.problem-pill {
  margin-bottom: 18px;
}

.problem-side-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.06;
}

.problem-side-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.74;
}

.problem-side-copy .feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-side-copy .feature-list li {
  line-height: 1.7;
}

.problem-side-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e5ebf3;
  font-style: italic;
  font-weight: 600;
  color: #7a838f;
}

.developer-ecosystem-section .developer-offer-grid {
  align-items: stretch;
}

.developer-ecosystem-section .developer-code {
  min-height: 100%;
}

.developer-boundary-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.developer-boundary-note {
  margin: 20px 0 0;
  font-weight: 700;
  color: #4c5663;
}

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

.process-section {
  padding-bottom: 96px;
}

.steps-panel,
.tool-panel {
  padding: 0;
  overflow: hidden;
}

.step-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.step-row:last-child {
  border-bottom: 0;
}

.step-row.active {
  background: linear-gradient(90deg, rgba(95, 176, 244, 0.12), rgba(253, 174, 161, 0.16));
}

.step-row > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid #a8c4e9;
  color: #2b5d96;
  font-size: 0.82rem;
  font-weight: 700;
}

.tool-panel {
  padding: 18px;
  background: #eef5f9;
}

.tool-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.tool-box {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef8ef, #fff0f2);
  color: #5f6772;
  font-size: 0.86rem;
  font-weight: 700;
}

.tool-box,
.step-row {
  cursor: pointer;
}

.tool-box.wide {
  grid-column: span 2;
}

.tool-panel > p {
  margin: 18px 0 8px;
  text-align: center;
  font-weight: 700;
}

.testimonial-band {
  padding-bottom: 96px;
  position: relative;
}

.testimonial-band::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 300px;
  background: radial-gradient(circle at center, rgba(188, 197, 210, 0.32) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.3;
  pointer-events: none;
}

.quote-card {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.testimonial-shell {
  position: relative;
  z-index: 1;
}

.testimonial-stage {
  position: relative;
  min-height: 330px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  pointer-events: none;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 54px rgba(124, 136, 156, 0.1);
  transition: opacity 320ms ease, transform 320ms ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.quote-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(72, 184, 216, 0.14), rgba(242, 173, 99, 0.18));
  color: #40535f;
  font-size: 1.7rem;
  font-weight: 800;
}

.rating-row span {
  color: #eeae52;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.testimonial-card p {
  max-width: 880px;
  color: #596370;
  font-size: 1.22rem;
  line-height: 1.74;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.person-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7d7c8, #66b8e1);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hardware-showcase {
  display: grid;
  gap: 24px;
  padding-bottom: 92px;
}

.hardware-story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 40px;
  border: 1px solid #dfe8f2;
  box-shadow: 0 18px 44px rgba(124, 136, 156, 0.08);
  background: linear-gradient(90deg, rgba(255, 246, 240, 0.94), rgba(239, 246, 255, 0.94));
}

.hardware-story-soft {
  background: linear-gradient(90deg, rgba(255, 243, 235, 0.92), rgba(241, 247, 255, 0.92));
}

.hardware-story-accent {
  background: linear-gradient(90deg, rgba(255, 243, 235, 0.96), rgba(232, 242, 255, 0.96));
}

.hardware-story-mint {
  background: linear-gradient(90deg, rgba(239, 251, 247, 0.94), rgba(242, 248, 255, 0.94));
}

.hardware-story-lilac {
  background: linear-gradient(90deg, rgba(245, 239, 252, 0.96), rgba(239, 245, 255, 0.94));
}

.hardware-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hardware-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(239, 200, 169, 0.9);
  background: rgba(255, 255, 255, 0.84);
  color: #5d6570;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hardware-story-card h3 {
  margin: 16px 0 14px;
  max-width: 560px;
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
  line-height: 1.02;
}

.hardware-story-card p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.78;
}

.hardware-story-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  list-style: none;
  padding: 0;
}

.hardware-story-features li {
  min-height: 62px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(243, 247, 253, 0.96));
  color: #4d5662;
  font-weight: 700;
  line-height: 1.5;
}

.hardware-story-media {
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #dfe8f2;
  background: linear-gradient(180deg, #f5f8fd, #eef3fb);
}

.hardware-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dark-media {
  background: #151515;
}

.dark-media img {
  object-fit: contain;
  background: #151515;
}

.hardware-story-reverse .hardware-story-copy {
  order: 2;
}

.hardware-story-reverse .hardware-story-media {
  order: 1;
}

.bmi-visual::after,
.dna-panel-visual::after,
.body-visual::after,
.wearable-visual::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,247,252,0.98));
  border: 1px solid #e6edf5;
}

.bmi-visual::before {
  content: "BMI\A 24.1";
  white-space: pre;
  position: absolute;
  z-index: 2;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  color: #3b4652;
}

.dna-panel-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 42px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(72, 184, 216, 0.35) 48% 52%, transparent 52%),
    repeating-linear-gradient(180deg, rgba(29, 108, 242, 0.15) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, rgba(255, 219, 204, 0.8), rgba(225, 241, 255, 0.85));
}

.body-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 40px 60px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(72,184,216,0.4), transparent 14%),
    linear-gradient(180deg, rgba(255, 230, 216, 0.9), rgba(230, 242, 255, 0.8));
}

.wearable-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 42px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 34%, rgba(72,184,216,0.4), transparent 10%),
    radial-gradient(circle at 78% 28%, rgba(242,173,99,0.4), transparent 12%),
    radial-gradient(circle at 50% 70%, rgba(29,108,242,0.25), transparent 14%),
    linear-gradient(135deg, rgba(255, 248, 243, 0.95), rgba(237, 245, 255, 0.95));
}

.media-visual {
  padding: 0;
  background: #fff;
}

.media-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-meta {
  margin-top: 22px;
}

.quote-meta strong,
.quote-meta span {
  display: block;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #ccd2d9;
  cursor: pointer;
}

.testimonial-dot.active {
  background: #23272c;
}

.footer-prelude {
  padding-bottom: 42px;
}

.footer-showcase {
  padding: 76px 0 40px;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 28px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(255, 216, 195, 0.95), rgba(214, 235, 255, 0.95));
  margin-bottom: 70px;
  overflow: hidden;
}

.footer-cta h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.footer-cta p {
  color: #59616c;
  max-width: 540px;
}

.footer-form {
  margin-top: 24px;
  flex-wrap: wrap;
}

.input-like {
  min-width: 220px;
}

.footer-orbit {
  width: 220px;
  height: 220px;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 62%);
}

.footer-orbit span {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(118, 137, 164, 0.18);
}

.footer-orbit span:nth-child(1) { top: 12px; left: 150px; }
.footer-orbit span:nth-child(2) { top: 44px; right: 12px; }
.footer-orbit span:nth-child(3) { top: 92px; left: 24px; }
.footer-orbit span:nth-child(4) { top: 112px; right: 34px; }
.footer-orbit span:nth-child(5) { bottom: 20px; left: 82px; }
.footer-orbit span:nth-child(6) { bottom: 18px; right: 10px; }

.footer-links-panel {
  align-items: start;
  padding-bottom: 52px;
  gap: 72px;
}

.footer-brand-copy h3 {
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.footer-manifesto {
  margin: 0;
  max-width: 700px;
}

.footer-gradient-alt {
  background: linear-gradient(90deg, #4bc590, #f0bf56);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-columns {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 56px;
}

.footer-columns h4 {
  margin-bottom: 22px;
  font-size: 1.15rem;
  color: #232a35;
}

.footer-columns a,
.footer-grid a {
  display: block;
  margin-top: 16px;
  color: #5f6772;
  white-space: nowrap;
  font-size: 1rem;
}

.footer-bottom-line {
  margin-top: 8px;
  padding: 0;
  border-radius: 0;
  border-top: 0;
  background: transparent;
  text-align: center;
}

.footer-logo-mark,
.footer-tags {
  display: none;
}

.footer-wordmark {
  font-size: clamp(4rem, 14vw, 18rem);
  line-height: 0.86;
  letter-spacing: -0.0em;
  font-weight: 800;
  color: #000000;
}

.footer-wordmark span {
  background: linear-gradient(90deg, #2c7bf2, #29c7b2, #f3b35a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 4px solid #243041;
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.footer-legal-nav a {
  color: #2a313c;
  white-space: nowrap;
  font-size: 0.92rem;
}

.footer-bottom-line p {
  color: #2a313c;
  font-size: 0.92rem;
  white-space: nowrap;
}

.legal-page {
  background: #f4f6f9;
}

.legal-shell {
  padding: 8.5rem 0 5rem;
}

.legal-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3.25rem;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(221, 228, 238, 0.92);
}

.legal-card h1,
.legal-card h2 {
  color: #111827;
}

.legal-card h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.legal-card h2 {
  margin: 2rem 0 0.85rem;
  font-size: 1.15rem;
}

.legal-card p,
.legal-card li {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-card ul {
  margin: 0.6rem 0 1.15rem 1.15rem;
  padding: 0;
}

.legal-card hr {
  border: 0;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
  margin: 1.6rem 0;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 193, 148, 0.95);
  color: #4b5563;
  font-weight: 600;
  background: #fffdf8;
}

.legal-meta .eyebrow-dot {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #49b8d8, #2f80ed 42%, #34d399 72%, #f6ad55);
  box-shadow: 0 0 0 3px rgba(73, 184, 216, 0.14);
}

.legal-card-footer {
  margin-top: 2.5rem;
  color: #64748b;
  font-size: 0.92rem;
}

.section-dark {
  padding: 92px 0;
  background: linear-gradient(180deg, #f8fbff, #f3f8fd);
}

.developer-offer-home {
  padding-top: 8px;
}

.developer-offer-grid {
  align-items: start;
}

.developer-offer-home h2 {
  margin: 16px 0 14px;
  max-width: 700px;
}

.developer-offer-home .lead {
  max-width: 720px;
  font-size: 1.08rem;
}

.developer-code {
  border-radius: 34px;
  min-height: 560px;
  display: flex;
  align-items: flex-start;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 36px;
}

.split-section {
  align-items: start;
}

.architecture-panel,
.developer-panel,
.business-panel,
.page-hero-visual {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
  box-shadow: var(--shadow);
}

.about-story-section {
  background-image:
    linear-gradient(rgba(226, 232, 240, 0.72) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.72) 1px, transparent 1px);
  background-size: 120px 120px;
  background-position: center;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 34px;
  align-items: center;
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.about-pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: #26303d;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(114, 128, 155, 0.08);
}

.about-pill-row i {
  color: #19b4c7;
}

.about-visual-panel {
  overflow: hidden;
}

.about-circle-collage {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #141a23;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(102, 118, 144, 0.18);
}

.about-collage-cell,
.about-collage-quote {
  position: relative;
  min-height: 0;
}

.about-collage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-collage-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  text-align: left;
}

.about-collage-quote strong {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #111827;
}

.about-fit-section {
  padding-top: 26px;
}

.about-fit-heading {
  max-width: 980px;
}

.about-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.about-fit-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(113, 126, 147, 0.08);
}

.about-fit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 249, 255, 0.98), rgba(255, 246, 238, 0.96));
  color: #101827;
  font-size: 1.2rem;
}

.about-fit-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
}

.about-fit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.architecture-grid,
.developer-stack,
.module-stack,
.problem-grid {
  display: grid;
  gap: 16px;
}

.layer-card,
.stack-item,
.endpoint-card {
  padding: 18px 20px;
}

.comparison-table {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--muted);
  font-size: 0.9rem;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.integration-library-section .container.narrow {
  text-align: center;
}

.integration-library-intro h2 {
  margin: 18px auto 16px;
  max-width: 760px;
  font-size: clamp(2.35rem, 4.4vw, 4.3rem);
  line-height: 1.02;
}

.integration-library-intro .lead {
  margin: 0 auto;
  max-width: 760px;
}

.integration-filter-bar {
  width: min(100%, 740px);
  margin: 42px auto 0;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(124, 136, 156, 0.08);
}

.integration-filter-bar button {
  min-height: 42px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.integration-filter-bar .is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--teal), #2a8df6 52%, #f08d1b);
  box-shadow: 0 14px 26px rgba(72, 184, 216, 0.24);
}

.integration-library-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.integration-library-card {
  padding: 22px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(124, 136, 156, 0.06);
}

.integration-library-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.integration-library-icon {
  width: 70px;
  height: 70px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(72, 184, 216, 0.08), rgba(242, 173, 99, 0.12));
  color: #2e638f;
  font-size: 1.8rem;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: #5c6470;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.integration-library-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.integration-library-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.integration-library-card.is-hidden {
  display: none;
}

.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.stats-row,
.audience-grid,
.developer-grid,
.integration-grid,
.spec-grid {
  grid-template-columns: repeat(3, 1fr);
}

.workflow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(72, 184, 216, 0.15), rgba(242, 173, 99, 0.18));
  color: #2a5e90;
  font-weight: 800;
}

.code-block {
  padding: 24px;
  border-radius: 22px;
  background: #0d1624;
  color: #e1f1ff;
  overflow-x: auto;
}

.code-block code {
  font-family: "SFMono-Regular", Consolas, monospace;
  line-height: 1.8;
  white-space: pre;
}

.demo-panel {
  padding: 28px;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.demo-form textarea,
.demo-form .full-width {
  grid-column: 1 / -1;
}

.full-width {
  width: 100%;
}

.site-footer {
  padding: 48px 0 60px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 26px;
}

.footer-brand img {
  width: 160px;
}

.footer-copy,
.footer-meta,
.footer-bottom p {
  color: var(--muted);
}

.footer-copy {
  max-width: 420px;
  margin-top: 18px;
}

.footer-meta {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-grid,
  .module-hero-grid,
  .developer-hero-grid,
  .business-hero-grid,
  .ai-fit-hero-grid,
  .ai-fit-story-row,
  .platform-showcase-grid,
  .split-section,
  .video-metrics,
  .process-section,
  .footer-links-panel,
  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-carousel,
  .core-grid,
  .pain-grid,
  .capability-grid,
  .three-up,
  .stats-row,
  .ai-fit-brand-row,
  .audience-grid,
  .developer-grid,
  .integration-grid,
  .integration-library-grid,
  .platform-types-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-story-grid,
  .about-fit-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-stage {
    min-height: 380px;
  }

  .footer-links-panel {
    gap: 40px;
  }

  .footer-legal-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-line p {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(16, 19, 24, 0.24);
    backdrop-filter: blur(6px);
    z-index: 45;
  }

  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .brand-wordmark {
    font-size: clamp(1.48rem, 5.2vw, 1.9rem);
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
    position: relative;
    z-index: 65;
  }

  .site-nav,
  .header-actions {
    position: fixed;
    left: auto;
    right: 12px;
    width: min(390px, calc(100vw - 24px));
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) translateX(8px);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 60;
  }

  .site-nav {
    top: calc(var(--header-height) + 8px);
    right: 12px;
    width: min(420px, calc(100vw - 24px));
    bottom: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100dvh - var(--header-height) - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
    align-items: stretch;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  }

  .header-actions {
    display: none;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) translateX(0);
  }

  .nav-item {
    width: 100%;
    display: block;
    flex: 0 0 auto;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: #111827 !important;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    text-indent: 0;
    box-shadow: 0 8px 20px rgba(124, 136, 156, 0.08);
  }

  .site-nav > a {
    flex: 0 0 auto;
  }

  .nav-dropdown-toggle span {
    display: inline-block;
    flex: 1 1 auto;
    text-align: left;
    color: #111827;
    opacity: 1;
    -webkit-text-fill-color: currentColor;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    padding: 0;
    grid-template-columns: 1fr;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    gap: 8px;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .dash-body,
  .dash-stats,
  .dash-charts,
  .feature-carousel,
  .core-grid,
  .pain-grid,
  .capability-grid,
  .card-grid,
  .hardware-story-features,
  .three-up,
  .two-up,
  .stats-row,
  .audience-grid,
  .developer-grid,
  .integration-grid,
  .integration-library-grid,
  .platform-types-grid,
  .ai-fit-brand-row,
  .workflow-grid,
  .footer-columns,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .section-topline {
    align-items: start;
    flex-direction: column;
  }

  .dash-nav {
    display: none;
  }

  .stack-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bullet-grid,
  .module-meta {
    grid-template-columns: 1fr;
  }

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

  .interactive-carousel .feature-carousel {
    min-height: 620px;
  }

  .hardware-story-media {
    min-height: 380px;
  }

  .stack-card .stack-visual {
    min-height: 220px;
  }

  .testimonial-card p {
    font-size: 1.08rem;
  }

  .integration-filter-bar {
    width: 100%;
    border-radius: 28px;
  }

  .integration-filter-bar button {
    flex: 1 1 calc(50% - 10px);
  }

  .platform-showcase-visual {
    min-height: auto;
  }

  .platform-circle-frame,
  .platform-arch-frame {
    width: 100%;
  }

  .platform-arch-frame {
    min-height: auto;
    border-radius: 120px 120px 24px 24px;
  }

  .platform-arch-frame img {
    min-height: 320px;
    border-radius: 104px 104px 16px 16px;
  }

  .platform-badge-brand,
  .platform-badge-icon {
    width: 84px;
    height: 84px;
  }

  .platform-types-heading {
    margin-bottom: 24px;
  }

  .ai-fit-hero-frame {
    border-radius: 120px 120px 24px 24px;
  }

  .ai-fit-hero-frame img {
    min-height: 360px;
    border-radius: 104px 104px 18px 18px;
  }

  .ai-fit-hero-badge {
    width: 88px;
    height: 88px;
    left: 18px;
    bottom: 20px;
  }

  .ai-fit-story-visual {
    min-height: auto;
  }

  .ai-fit-story-visual img {
    min-height: 300px;
  }

  .nav-dropdown-menu a {
    min-height: auto;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.94);
    border-color: rgba(221, 230, 239, 0.92);
    color: #111827;
  }

  .solution-icon {
    width: 38px;
    height: 38px;
  }

  .solution-text strong {
    font-size: 0.88rem;
  }

  .solution-text small {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .site-nav .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .header-actions .button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding-inline: 14px;
  }

  .page-hero {
    padding-top: 28px;
  }

  .page-hero .lead,
  .section-intro p,
  .section-heading p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .stack-card,
  .pain-card,
  .capability-card,
  .core-card,
  .integration-card,
  .workflow-step,
  .about-fit-card,
  .platform-type-card,
  .integration-library-card,
  .endpoint-card,
  .legal-card {
    padding: 20px;
  }

  .footer-cta {
    padding: 28px;
    border-radius: 30px;
  }

  .footer-cta h2 {
    font-size: clamp(2.1rem, 7vw, 3.2rem);
  }

  .footer-links-panel {
    gap: 28px;
  }

  .footer-wordmark {
    font-size: clamp(3.4rem, 16vw, 6rem);
  }

  .footer-legal-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .footer-brand-copy h3 {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 72px;
  }

  .site-nav {
    top: calc(var(--header-height) + 6px);
    right: 8px;
    width: calc(100vw - 16px);
    bottom: 8px;
    padding: 14px;
  }

  .header-actions {
    gap: 10px;
  }

  .interactive-carousel .feature-carousel {
    min-height: 700px;
  }

  .carousel-button {
    width: 52px;
    height: 52px;
  }

  .testimonial-stage {
    min-height: 430px;
  }

  .testimonial-card {
    padding: 22px;
  }

  .testimonial-card p {
    font-size: 1rem;
  }

  .footer-bottom-line {
    padding: 28px 20px 18px;
  }

  .footer-wordmark {
    font-size: 3rem;
  }

  .footer-columns a {
    white-space: normal;
  }

  .about-circle-collage {
    width: min(100%, 360px);
  }

  .about-collage-quote {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-section,
  .page-hero,
  .section,
  .section-intro,
  .trust-band {
    padding-bottom: 72px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.0rem, 9vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .dashboard-frame,
  .architecture-panel,
  .developer-panel,
  .business-panel,
  .page-hero-visual,
  .demo-panel,
  .footer-cta {
    padding: 22px;
  }

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

  .tool-box.wide {
    grid-column: auto;
  }

  .hardware-story-card {
    border-radius: 24px;
  }

  .hardware-story-card {
    padding: 20px;
  }

  .hardware-story-card h3 {
    font-size: 2rem;
  }

  .hardware-story-media,
  .stack-card .stack-visual {
    min-height: 240px;
  }

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

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

  .footer-orbit {
    display: none;
  }

  .footer-legal-row {
    gap: 14px;
  }

  .footer-legal-nav {
    justify-content: center;
  }

  .footer-bottom-line p {
    text-align: center;
  }
}

/* =========================================
   SECURE ADMIN UI SYSTEM
   ========================================= */

:root {
  --admin-bg: #f8fafc;
  --admin-surface: #ffffff;
  --admin-border: #e2e8f0;
  --admin-text: #0f172a;
  --admin-text-muted: #64748b;
  --admin-primary: #29c7b2;
  --admin-primary-hover: #22a896;
  --admin-primary-gradient: linear-gradient(90deg, #2c7bf2, #29c7b2, #f3b35a);
  --admin-danger: #ef4444;
  --admin-danger-hover: #dc2626;
  --admin-sidebar-bg: #ffffff;
  --admin-sidebar-text: #2f3338;
  --admin-sidebar-hover: #f5f8fc;
  --admin-sidebar-active: #dde6ef;
  --admin-accent: #29c7b2;
  --admin-accent-glow: linear-gradient(90deg, rgba(44,123,242,0.08), rgba(41,199,178,0.08), rgba(243,179,90,0.08));
  --admin-radius: 12px;
  --admin-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --admin-shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.page--internal {
  background-color: var(--admin-bg);
  color: var(--admin-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

/* Auth Shell (Login & Setup) */
.admin-auth-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  background: radial-gradient(circle at top right, #eef2ff, #f8fafc);
}

.cms-login-card {
  background: var(--admin-surface);
  border-radius: var(--admin-radius);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  padding: 3rem;
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--admin-border);
}

.cms-login-card__copy {
  text-align: center;
  margin-bottom: 2rem;
}

.cms-login-card__copy .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--admin-primary);
  margin-bottom: 0.5rem;
}

.cms-login-card__copy h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--admin-text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.cms-login-card__copy p {
  font-size: 0.95rem;
  color: var(--admin-text-muted);
  line-height: 1.5;
}

.cms-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cms-login-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cms-login-form label span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--admin-text);
}

.cms-login-form input[type="text"],
.cms-login-form input[type="password"],
.cms-login-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
  background-color: #f8fafc;
  box-sizing: border-box;
}

.cms-login-form input[type="text"]:focus,
.cms-login-form input[type="password"]:focus,
.cms-login-form select:focus {
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background-color: var(--admin-surface);
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle-icon {
  position: absolute;
  right: 1rem;
  color: var(--admin-text-muted);
  cursor: pointer;
}

.cms-login-form .inline-actions {
  margin-top: 0.5rem;
}

.cms-login-form__status {
  text-align: center;
  font-size: 0.875rem;
  color: var(--admin-danger);
  min-height: 1.5rem;
}

/* Admin Dashboard Layout */
.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--admin-sidebar-bg);
  color: var(--admin-sidebar-text);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar__brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.admin-sidebar__brand .brand-mark__icon {
  background: var(--admin-primary);
  color: white;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  margin-right: 0.75rem;
}

.admin-sidebar__brand .brand-mark__text {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-nav a {
  color: var(--admin-sidebar-text);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.admin-nav a:hover {
  background: var(--admin-sidebar-hover);
  color: var(--admin-sidebar-text);
}

.admin-nav a.is-active {
  background: var(--admin-primary-gradient);
  color: white;
  font-weight: 600;
}

.admin-nav__group {
  margin-top: 1.5rem;
}

.admin-nav__group > span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 700;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.admin-main {
  background: var(--admin-bg);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
}

/* Topbar */
.admin-topbar {
  background: var(--admin-surface);
  border-bottom: 1px solid var(--admin-border);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-topbar .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--admin-text-muted);
  margin-bottom: 0.25rem;
}

.admin-topbar h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--admin-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--admin-primary-gradient);
  color: white;
  border: none;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--admin-text);
  border: 1px solid var(--admin-border);
}

.btn-secondary:hover {
  background: #f1f5f9;
}

.btn-danger {
  background: var(--admin-danger);
  color: white;
}

.btn-danger:hover {
  background: var(--admin-danger-hover);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Panels & Dashboard */
.admin-panel {
  padding: 2rem;
  flex: 1;
}

.admin-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.admin-summary-card, .admin-card {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  padding: 1.5rem;
  box-shadow: var(--admin-shadow-sm);
  transition: box-shadow 0.2s ease;
}

.admin-summary-card:hover {
  box-shadow: var(--admin-shadow);
}

.admin-summary-card h3, .admin-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--admin-text);
}

.admin-summary-card strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--admin-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.admin-summary-card p {
  color: var(--admin-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Tables */
.admin-table-shell {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  overflow: hidden;
  box-shadow: var(--admin-shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--admin-border);
}

.admin-table th {
  background: #f8fafc;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--admin-text-muted);
}

.admin-table tbody tr:hover {
  background: #f1f5f9;
}

.admin-table td {
  font-size: 0.95rem;
  color: var(--admin-text);
}

.status-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-pill.published {
  background: #dcfce7;
  color: #166534;
}

.status-pill.draft {
  background: #fef9c3;
  color: #854d0e;
}

.inline-actions {
  display: flex;
  gap: 0.5rem;
}

/* Editor */
.admin-editor-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
}

.editor-main-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sticky-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--admin-text);
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #f8fafc;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  border-color: var(--admin-primary);
  background: var(--admin-surface);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.usecase-editor__canvas {
  min-height: 400px;
  padding: 1.5rem;
  border: 1px solid var(--admin-border);
  border-radius: 0 0 var(--admin-radius) var(--admin-radius);
  background: var(--admin-surface);
  outline: none;
  font-size: 1rem;
  line-height: 1.6;
}

.usecase-editor__canvas:empty:before {
  content: attr(data-placeholder);
  color: var(--admin-text-muted);
}

.editor-toolbar-premium {
  display: flex;
  gap: 0.25rem;
  background: #f1f5f9;
  padding: 0.5rem;
  border-radius: var(--admin-radius) var(--admin-radius) 0 0;
  border: 1px solid var(--admin-border);
  border-bottom: none;
}

.btn-tool {
  background: transparent;
  border: none;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  color: var(--admin-text-muted);
  transition: all 0.2s ease;
}

.btn-tool:hover {
  background: white;
  color: var(--admin-text);
  box-shadow: var(--admin-shadow-sm);
}

/* Media Dropzone */
.media-dropzone {
  border: 2px dashed var(--admin-border);
  border-radius: var(--admin-radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.media-dropzone:hover {
  border-color: var(--admin-primary);
  background: var(--admin-accent-glow);
}

.media-dropzone i {
  font-size: 2rem;
  color: var(--admin-primary);
  margin-bottom: 0.5rem;
}

.media-dropzone-text {
  font-weight: 600;
  color: var(--admin-text);
  margin-bottom: 0.25rem;
}

.media-dropzone-hint {
  font-size: 0.8rem;
  color: var(--admin-text-muted);
}

.image-preview-premium {
  margin-top: 1rem;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--admin-border);
}

.image-preview-premium img {
  width: 100%;
  display: block;
}

.image-preview-premium__remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.6);
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.image-preview-premium__remove:hover {
  background: rgba(239, 68, 68, 0.9);
}

.admin-dropdown {
  position: relative;
}

.admin-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
  min-width: 150px;
  overflow: hidden;
}

.admin-dropdown:hover .admin-dropdown__menu {
  display: block;
}

.admin-dropdown__item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--admin-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.admin-dropdown__item:hover {
  background: #f1f5f9;
}

.admin-dropdown__divider {
  height: 1px;
  background: var(--admin-border);
}

