* { box-sizing: border-box; }
body {
  margin: 0;
  background: #09090b;
  color: #fafafa;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
a { color: #a1a1aa; text-decoration: none; }
.app-shell { max-width: 1240px; margin: 0 auto; padding: 24px; }
.layout { display: grid; grid-template-columns: 220px 1fr; gap: 16px; }
.sidebar {
  background: #111113;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 12px;
  height: fit-content;
  position: sticky;
  top: 16px;
}
.nav-title { color: #71717a; font-size: 11px; letter-spacing: .06em; margin: 8px 8px 10px; text-transform: uppercase; }
.nav-link {
  display: block;
  border-radius: 8px;
  padding: 9px 10px;
  color: #d4d4d8;
  border: 1px solid transparent;
  margin-bottom: 6px;
}
.nav-link:hover { background: #18181b; border-color: #27272a; }
.nav-link.active { background: #18181b; border-color: #3f3f46; color: #fafafa; }
.nav-link.danger { color: #fda4af; }
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.brand { font-size: 22px; font-weight: 700; }
.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.muted { color: #a1a1aa; font-size: 14px; }
.panel {
  background: #111113;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}
.panel h3 { margin: 0 0 12px; font-size: 15px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-2 { grid-template-columns: 1fr; }
}
form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
label { color: #a1a1aa; font-size: 12px; display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid #3f3f46;
  background: #09090b;
  color: #fafafa;
  padding: 8px 10px;
}
.field { min-width: 220px; flex: 1; }
button, .btn-link {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid #27272a; min-height: 36px;
  padding: 0 12px; background: #18181b; color: #fafafa; font-size: 13px; font-weight: 600;
}
button:hover, .btn-link:hover { background: #27272a; }
.btn-primary { background: #fafafa; color: #09090b; border-color: #fafafa; }
.btn-primary:hover { background: #e4e4e7; }
.btn-danger, .btn-link.danger { background: #3f1d1d; border-color: #7f1d1d; color: #fda4af; }
.btn-danger:hover, .btn-link.danger:hover { background: #5a2323; }
table { width: 100%; border-collapse: collapse; }
th, td { border-bottom: 1px solid #27272a; padding: 10px 8px; font-size: 13px; text-align: left; }
th { color: #a1a1aa; font-weight: 500; }
.msg-ok, .msg-err {
  border-radius: 10px; padding: 10px 12px; margin-bottom: 12px; border: 1px solid #27272a; font-size: 13px;
}
.msg-ok { background: #052e1a; color: #86efac; }
.msg-err { background: #3f1111; color: #fda4af; }
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.login-card { width: 100%; max-width: 420px; }
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid #3f3f46;
  background: #fafafa;
  color: #18181b;
  font-size: 14px;
  font-weight: 700;
}
.btn-google:hover { background: #e4e4e7; color: #18181b; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: #71717a;
  font-size: 12px;
  text-transform: uppercase;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #27272a;
}
.actions { display: flex; flex-wrap: wrap; gap: 8px; }
.api-list { margin: 0; padding-left: 18px; color: #d4d4d8; }
.api-list li { margin-bottom: 8px; }
.api-list code {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 8px;
  padding: 4px 8px;
  color: #e4e4e7;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.plan-price {
  font-size: 28px;
  font-weight: 700;
  margin: 6px 0 12px;
}
.plan-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.plan-selected {
  border-color: #fafafa;
  box-shadow: 0 0 0 1px rgba(250, 250, 250, 0.4) inset;
}
.build-progress {
  width: 140px;
  height: 8px;
  border-radius: 999px;
  background: #27272a;
  overflow: hidden;
  margin-bottom: 4px;
}
.build-progress-fill {
  height: 100%;
  width: 0;
  background: #3f3f46;
}
.build-progress-fill.running {
  background: #60a5fa;
}
.build-progress-fill.ok {
  background: #22c55e;
}
.build-progress-fill.err {
  background: #ef4444;
}
.usage-steps {
  margin: 0;
  padding-left: 18px;
  color: #d4d4d8;
}
.usage-steps li {
  margin-bottom: 6px;
}
.usage-steps code {
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 6px;
  padding: 2px 6px;
  color: #e4e4e7;
}
.btn-download {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
  min-width: 94px;
}
.btn-download:hover {
  background: #15803d;
  border-color: #15803d;
}
@media (max-width: 980px) {
  .plan-grid { grid-template-columns: 1fr; }
}

.site-body {
  background: #09090b;
  color: #fafafa;
}
.site-nav {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(9, 9, 11, 0.82);
  border-bottom: 1px solid rgba(250, 250, 250, 0.08);
  backdrop-filter: blur(18px);
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fafafa;
  font-size: 19px;
  font-weight: 800;
}
.sf-mark {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 34px;
  flex: 0 0 52px;
  color: #0f766e;
}
.sf-mark::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 17px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 4px rgba(20, 184, 166, 0.22);
}
.sf-mark::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, currentColor 0%, #2563eb 100%);
}
.sf-node {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 3px #ffffff;
}
.sf-node-a { left: 18px; top: 14px; }
.sf-node-b,
.sf-node-c {
  bottom: 7px;
  width: 6px;
  border-radius: 2px;
  box-shadow: none;
}
.sf-node-b { left: 39px; height: 13px; background: #14b8a6; }
.sf-node-c { right: 0; height: 22px; background: #2563eb; }
.sf-node-c::before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 6px;
  height: 8px;
  border-radius: 2px;
  background: #7dd3fc;
}
.sf-mark-lg {
  width: 68px;
  height: 46px;
  flex-basis: 68px;
}
.sf-mark-lg::before {
  left: 3px;
  top: 10px;
  width: 25px;
  height: 25px;
  box-shadow: inset 0 0 0 6px rgba(20, 184, 166, 0.22);
}
.sf-mark-lg::after {
  left: 32px;
  top: 23px;
  width: 23px;
  height: 4px;
}
.sf-mark-lg .sf-node {
  width: 8px;
  height: 8px;
}
.sf-mark-lg .sf-node-a { left: 25px; top: 19px; }
.sf-mark-lg .sf-node-b { left: 52px; height: 16px; }
.sf-mark-lg .sf-node-c { right: 1px; height: 28px; }
}
.site-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}
.site-links a {
  color: #d4d4d8;
}
.site-links a.active {
  color: #fafafa;
  font-weight: 800;
}
.site-links a:hover {
  color: #fafafa;
}
.lang-select {
  width: auto;
  min-width: 128px;
  min-height: 36px;
  border-radius: 8px;
  border-color: rgba(250, 250, 250, 0.18);
  background: #111113;
  color: #fafafa;
  font-size: 13px;
}
.site-cta {
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 8px;
  background: #fafafa;
  color: #09090b !important;
  font-weight: 700;
}
.site-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 86px) 76px;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/sensorflow-dashboard-preview.png");
  background-size: cover;
  background-position: center right;
  opacity: 0.7;
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.98) 0%, rgba(9, 9, 11, 0.82) 42%, rgba(9, 9, 11, 0.48) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.2) 0%, rgba(9, 9, 11, 0.78) 100%);
}
.hero-content {
  position: relative;
  max-width: 760px;
}
.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: #86efac;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-content h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.9;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: #e4e4e7;
  font-size: 20px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-actions .btn-primary,
.hero-actions .btn-link {
  min-height: 44px;
  padding: 0 18px;
}
.site-band {
  padding: 76px clamp(18px, 6vw, 86px);
  border-top: 1px solid rgba(250, 250, 250, 0.08);
}
.site-main {
  padding-top: 74px;
}
.site-subpage {
  min-height: 100vh;
}
.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}
.section-head h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}
.section-head h2,
.feature-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-head p,
.feature-copy p {
  margin: 0;
  color: #c7c7cf;
  font-size: 17px;
  line-height: 1.7;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.compare-card,
.price-card {
  min-height: 176px;
  border: 1px solid #2f2f36;
  border-radius: 8px;
  background: #111113;
  padding: 20px;
}
.compare-card span,
.price-card span {
  color: #a1a1aa;
  font-size: 14px;
}
.compare-card strong,
.price-card strong {
  display: block;
  margin: 14px 0 10px;
  color: #fafafa;
  font-size: 28px;
  line-height: 1.1;
}
.compare-card small,
.price-card small {
  display: block;
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.55;
}
.compare-card.active,
.price-card.featured {
  border-color: #86efac;
  background: #102018;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.value-grid article {
  min-height: 210px;
  border: 1px solid #2f2f36;
  border-radius: 8px;
  background: #111113;
  padding: 22px;
}
.value-grid b,
.value-grid span {
  display: block;
}
.value-grid b {
  margin-bottom: 12px;
  color: #fafafa;
  font-size: 20px;
  line-height: 1.25;
}
.value-grid span {
  color: #b8b8c1;
  line-height: 1.7;
}
.promo-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin-top: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(134, 239, 172, 0.45);
  border-radius: 8px;
  background: rgba(16, 32, 24, 0.9);
  color: #dcfce7;
}
.promo-strip b {
  color: #86efac;
}
.flow-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: #0c0c0e;
}
.flow-step {
  min-height: 180px;
  border: 1px solid #2f2f36;
  border-radius: 8px;
  background: #151517;
  padding: 20px;
}
.flow-step span,
.deep-grid article span {
  color: #86efac;
  font-size: 13px;
  font-weight: 800;
}
.flow-step b,
.flow-step small {
  display: block;
}
.flow-step b {
  margin: 34px 0 8px;
  font-size: 24px;
}
.flow-step small {
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.5;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #102018;
}
.cta-band h2 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}
.cta-band p {
  max-width: 720px;
  margin: 0;
  color: #c7c7cf;
  font-size: 17px;
  line-height: 1.7;
}
.deep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.deep-grid article {
  min-height: 250px;
  border: 1px solid #2f2f36;
  border-radius: 8px;
  background: #111113;
  padding: 22px;
}
.deep-grid b {
  display: block;
  margin: 26px 0 10px;
  color: #fafafa;
  font-size: 24px;
  line-height: 1.2;
}
.deep-grid p {
  margin: 0;
  color: #b8b8c1;
  line-height: 1.7;
}
.matrix {
  border: 1px solid #2f2f36;
  border-radius: 8px;
  overflow: hidden;
}
.matrix-row {
  display: grid;
  grid-template-columns: 0.7fr 1.15fr 1.15fr;
  border-bottom: 1px solid #2f2f36;
}
.matrix-row:last-child {
  border-bottom: 0;
}
.matrix-row > * {
  padding: 18px;
  border-right: 1px solid #2f2f36;
  color: #c7c7cf;
  line-height: 1.65;
}
.matrix-row > *:last-child {
  border-right: 0;
}
.matrix-row.head {
  background: #18181b;
}
.matrix-row.head b {
  color: #fafafa;
}
.matrix-row span:first-child {
  color: #fafafa;
  font-weight: 800;
}
.note-panel {
  margin-top: 16px;
  border: 1px solid #2f2f36;
  border-radius: 8px;
  background: #111113;
  padding: 20px;
}
.note-panel b {
  display: block;
  margin-bottom: 8px;
  color: #fafafa;
}
.note-panel p {
  margin: 0;
  color: #b8b8c1;
  line-height: 1.7;
}
.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  background: #0c0c0e;
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-list div {
  border: 1px solid #2f2f36;
  border-radius: 8px;
  background: #151517;
  padding: 18px;
}
.feature-list b,
.feature-list span {
  display: block;
}
.feature-list b {
  margin-bottom: 8px;
  color: #fafafa;
  font-size: 17px;
}
.feature-list span {
  color: #b8b8c1;
  line-height: 1.6;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.price-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: space-between;
}
.price-card .btn-link,
.price-card .btn-primary {
  margin-top: 20px;
  width: 100%;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 30px clamp(18px, 6vw, 86px);
  border-top: 1px solid rgba(250, 250, 250, 0.08);
  color: #a1a1aa;
}
.docs-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 24px 80px;
}
.docs-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
  border: 1px solid #2f2f36;
  border-radius: 8px;
  background: #111113;
  padding: 12px;
}
.docs-content {
  min-width: 0;
}
.doc-section {
  scroll-margin-top: 92px;
  border-top: 1px solid #2f2f36;
  padding: 34px 0;
}
.doc-section h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.15;
}
.doc-section p,
.doc-section li {
  color: #c7c7cf;
  line-height: 1.75;
}
.doc-section pre {
  overflow: auto;
  border: 1px solid #2f2f36;
  border-radius: 8px;
  background: #050506;
  padding: 16px;
  color: #e4e4e7;
}
@media (max-width: 920px) {
  .site-nav {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .site-links {
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .site-hero {
    min-height: 86vh;
    padding-top: 70px;
  }
  .hero-media {
    background-position: 60% center;
  }
  .hero-shade {
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.94) 0%, rgba(9, 9, 11, 0.72) 52%, rgba(9, 9, 11, 0.92) 100%);
  }
  .hero-copy {
    font-size: 17px;
  }
  .compare-grid,
  .feature-band,
  .price-grid,
  .value-grid,
  .flow-band,
  .deep-grid {
    grid-template-columns: 1fr;
  }
  .site-main {
    padding-top: 0;
  }
  .matrix-row {
    grid-template-columns: 1fr;
  }
  .matrix-row > * {
    border-right: 0;
    border-bottom: 1px solid #2f2f36;
  }
  .matrix-row > *:last-child {
    border-bottom: 0;
  }
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer {
    flex-direction: column;
    gap: 10px;
  }
  .docs-shell {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }
  .docs-sidebar {
    position: static;
  }
}

/* operations frontend integration */
:root {
  --wp-text: #000000;
  --wp-muted: #666666;
  --wp-soft: #999999;
  --wp-bg: #ffffff;
  --wp-panel: #f5f5f5;
  --wp-line: #e0e0e0;
  --wp-accent: #000000;
  --wp-green: #0f766e;
  --wp-ok: #166534;
  --wp-warn: #b45309;
  --wp-err: #dc2626;
}

.wp-body,
.wp-auth-body,
.wp-console-body {
  margin: 0;
  background: var(--wp-bg);
  color: var(--wp-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}
.wp-body a,
.wp-auth-body a,
.wp-console-body a { color: inherit; text-decoration: none; }
.wp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--wp-line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.wp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.wp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--wp-text);
}
.wp-logo .sf-mark { color: var(--wp-green); }
.wp-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
.wp-links a { color: var(--wp-text); transition: color .2s; }
.wp-links a:hover,
.wp-links a.active { color: var(--wp-green); }
.wp-lang {
  width: auto;
  min-width: 120px;
  min-height: 38px;
  border: 1px solid var(--wp-line);
  border-radius: 6px;
  background: var(--wp-bg);
  color: var(--wp-text);
  padding: 0 10px;
}
.wp-lang-form { display: inline-flex; width: auto; min-width: 120px; }
.wp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--wp-line);
  border-radius: 6px;
  background: var(--wp-panel);
  color: var(--wp-text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.wp-btn:hover { background: #f0f0f0; border-color: var(--wp-text); }
.wp-btn-primary {
  background: var(--wp-accent);
  border-color: var(--wp-accent);
  color: #ffffff !important;
}
.wp-btn-primary:hover { background: #333333; border-color: #333333; }
.wp-btn-danger {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff !important;
}
.wp-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 92px 32px 72px;
  text-align: center;
}
.wp-hero h1 {
  max-width: 920px;
  margin: 0 auto 18px;
  color: var(--wp-text);
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}
.wp-hero p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--wp-muted);
  font-size: 20px;
}
.wp-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 42px; }
.wp-actions.compact { justify-content: flex-start; align-items: center; margin: 0; }
.wp-preview {
  min-height: 380px;
  border: 1px solid var(--wp-line);
  border-radius: 12px;
  background: var(--wp-panel);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1px;
  overflow: hidden;
  text-align: left;
}
.wp-preview-main,
.wp-preview-side { background: #ffffff; padding: 28px; }
.wp-preview-title { color: var(--wp-soft); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.wp-chart {
  height: 160px;
  margin-top: 34px;
  display: flex;
  align-items: end;
  gap: 12px;
}
.wp-chart span {
  flex: 1;
  min-height: 28px;
  border-radius: 5px 5px 0 0;
  background: #111111;
}
.wp-chart span:nth-child(2) { height: 62%; background: #0f766e; }
.wp-chart span:nth-child(3) { height: 48%; background: #14b8a6; }
.wp-chart span:nth-child(4) { height: 78%; background: #111111; }
.wp-chart span:nth-child(5) { height: 55%; background: #99f6e4; }
.wp-preview-grid { display: grid; gap: 12px; margin-top: 26px; }
.wp-preview-card {
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  padding: 16px;
}
.wp-preview-card b { display: block; font-size: 28px; line-height: 1.1; }
.wp-preview-card span { color: var(--wp-muted); font-size: 13px; }
.wp-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  border-top: 1px solid var(--wp-line);
}
.wp-section-title {
  margin: 0 0 12px;
  color: var(--wp-text);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  text-align: center;
}
.wp-section-subtitle {
  max-width: 620px;
  margin: 0 auto 42px;
  color: var(--wp-muted);
  text-align: center;
  font-size: 17px;
}
.wp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.wp-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wp-card,
.wp-price-card {
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  background: var(--wp-bg);
  padding: 28px;
  transition: border-color .2s, box-shadow .2s;
}
.wp-card:hover,
.wp-price-card:hover { border-color: var(--wp-text); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.wp-card .wp-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--wp-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--wp-green);
  font-weight: 900;
}
.wp-card h3,
.wp-price-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.25; color: var(--wp-text); }
.wp-card p,
.wp-price-card p { margin: 0; color: var(--wp-muted); font-size: 15px; line-height: 1.7; }
.wp-price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 42px; }
.wp-price-card { position: relative; display: flex; flex-direction: column; min-height: 360px; }
.wp-price-card.featured { border: 2px solid var(--wp-accent); transform: translateY(-8px); }
.wp-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--wp-accent);
  color: #ffffff;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.wp-price { margin: 16px 0; font-size: 42px; font-weight: 800; color: var(--wp-text); }
.wp-price small { color: var(--wp-muted); font-size: 16px; font-weight: 500; }
.wp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0;
}
.wp-price-row .wp-price { margin: 0; }
.wp-price-original {
  color: var(--wp-soft);
  font-size: 16px;
  font-weight: 700;
  text-decoration: line-through;
}
.wp-offer-badge {
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--wp-green);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.wp-list { list-style: none; margin: 22px 0; padding: 0; color: var(--wp-muted); flex: 1; }
.wp-list li { padding: 9px 0; border-bottom: 1px solid var(--wp-line); }
.wp-list li::before { content: "✓ "; color: var(--wp-green); font-weight: 900; }
.wp-pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}
.wp-plan-list { display: grid; gap: 12px; min-width: 0; }
.wp-pricing-note {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  background: var(--wp-panel);
  padding: 18px;
}
.wp-pricing-note h2 { margin: 0 0 6px; font-size: 22px; }
.wp-pricing-note p { margin: 0; color: var(--wp-muted); }
.wp-plan-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) minmax(220px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  background: var(--wp-bg);
  padding: 18px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.wp-plan-row:hover {
  border-color: #b8c9c5;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}
.wp-plan-row.selected {
  border-color: var(--wp-green);
  background: #fbfefd;
  box-shadow: inset 4px 0 0 var(--wp-green);
}
.wp-plan-main { min-width: 0; }
.wp-plan-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.wp-plan-title h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}
.wp-plan-title span,
.wp-selected-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  background: var(--wp-panel);
  color: var(--wp-muted);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}
.wp-plan-main p {
  margin: 0;
  color: var(--wp-muted);
  font-size: 14px;
  line-height: 1.65;
}
.wp-plan-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-plan-features li {
  border: 1px solid var(--wp-line);
  border-radius: 999px;
  color: var(--wp-muted);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.wp-plan-price {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 128px;
}
.wp-plan-price b {
  color: var(--wp-text);
  font-size: 26px;
  line-height: 1.15;
}
.wp-plan-price .wp-price-original { font-size: 13px; }
.wp-selected-pill {
  background: #ecfdf5;
  color: var(--wp-green);
}
.wp-activation-panel {
  position: sticky;
  top: 92px;
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  background: var(--wp-bg);
  padding: 22px;
}
.wp-activation-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}
.wp-activation-panel p {
  margin: 14px 0 18px;
  color: var(--wp-muted);
  line-height: 1.7;
}
.wp-activation-total {
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  background: var(--wp-panel);
  padding: 16px;
}
.wp-activation-total span,
.wp-activation-total small {
  display: block;
  color: var(--wp-muted);
  font-size: 13px;
}
.wp-activation-total b {
  display: block;
  margin: 6px 0;
  font-size: 32px;
  line-height: 1.1;
}
.wp-activation-panel .wp-form { display: grid; gap: 14px; }
.wp-activation-panel .wp-field { margin-bottom: 0; }
.wp-activation-panel .wp-btn { width: 100%; }
.wp-footer { border-top: 1px solid var(--wp-line); background: var(--wp-panel); margin-top: 64px; }
.wp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.wp-footer h4 { margin: 0 0 14px; }
.wp-footer a { display: block; margin: 8px 0; color: var(--wp-muted); font-size: 14px; }
.wp-footer-bottom { border-top: 1px solid var(--wp-line); padding: 28px 32px; text-align: center; color: var(--wp-soft); font-size: 14px; }

.wp-auth-body { min-height: 100vh; display: block; }
.wp-auth-shell { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.wp-auth-side {
  border-right: 1px solid var(--wp-line);
  background: var(--wp-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.wp-auth-copy { max-width: 430px; }
.wp-auth-copy h1 { margin: 24px 0 14px; font-size: 42px; line-height: 1.14; }
.wp-auth-copy p,
.wp-auth-copy li { color: var(--wp-muted); }
.wp-auth-copy ul { list-style: none; margin: 28px 0 0; padding: 0; }
.wp-auth-copy li { margin: 14px 0; }
.wp-auth-copy li::before { content: "✓ "; color: var(--wp-green); font-weight: 900; }
.wp-auth-main { display: flex; align-items: center; justify-content: center; padding: 48px 28px; }
.wp-auth-card { width: 100%; max-width: 430px; }
.wp-auth-card.wide { max-width: 620px; }
.wp-auth-card h2,
.wp-auth-card h1 { margin: 0 0 8px; font-size: 32px; text-align: center; }
.wp-auth-card > p { margin: 0 0 28px; color: var(--wp-muted); text-align: center; }
.wp-form { display: block; }
.wp-field { margin-bottom: 20px; }
.wp-field label { display: block; margin-bottom: 8px; color: var(--wp-text); font-size: 15px; font-weight: 600; }
.wp-field input,
.wp-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--wp-line);
  border-radius: 6px;
  background: var(--wp-bg);
  color: var(--wp-text);
  padding: 10px 12px;
  font-size: 15px;
}
.wp-field input:focus,
.wp-field select:focus { outline: none; border-color: var(--wp-accent); box-shadow: 0 0 0 3px rgba(0,0,0,.08); }
.wp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wp-check { display: flex; align-items: flex-start; gap: 8px; margin: 18px 0; color: var(--wp-muted); font-size: 14px; }
.wp-check input { width: auto; margin-top: 4px; }
.wp-auth-actions { display: grid; gap: 12px; }
.wp-divider { display: flex; align-items: center; gap: 12px; margin: 28px 0; color: var(--wp-soft); font-size: 14px; }
.wp-divider::before,
.wp-divider::after { content: ""; flex: 1; height: 1px; background: var(--wp-line); }
.wp-social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wp-oauth-btn {
  gap: 10px;
  background: #ffffff;
}
.oauth-svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}
.oauth-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.oauth-google {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%234285F4' d='M17.64 9.2c0-.64-.06-1.25-.16-1.84H9v3.48h4.84a4.14 4.14 0 0 1-1.8 2.72v2.26h2.92c1.7-1.57 2.68-3.88 2.68-6.62Z'/%3E%3Cpath fill='%2334A853' d='M9 18c2.43 0 4.47-.8 5.96-2.18l-2.92-2.26c-.8.54-1.84.86-3.04.86-2.34 0-4.33-1.58-5.04-3.72H.94v2.33A9 9 0 0 0 9 18Z'/%3E%3Cpath fill='%23FBBC05' d='M3.96 10.7A5.4 5.4 0 0 1 3.68 9c0-.59.1-1.16.28-1.7V4.97H.94A9 9 0 0 0 0 9c0 1.45.34 2.82.94 4.03l3.02-2.33Z'/%3E%3Cpath fill='%23EA4335' d='M9 3.58c1.32 0 2.5.45 3.44 1.35l2.58-2.58A8.65 8.65 0 0 0 9 0 9 9 0 0 0 .94 4.97L3.96 7.3C4.67 5.16 6.66 3.58 9 3.58Z'/%3E%3C/svg%3E");
}
.oauth-github {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23181717' d='M12 .5a12 12 0 0 0-3.79 23.39c.6.11.82-.26.82-.58v-2.03c-3.34.73-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.09-.75.08-.73.08-.73 1.2.08 1.84 1.24 1.84 1.24 1.07 1.83 2.81 1.3 3.5.99.11-.78.42-1.3.76-1.6-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.13-.3-.54-1.52.12-3.18 0 0 1-.32 3.3 1.23a11.45 11.45 0 0 1 6 0c2.28-1.55 3.29-1.23 3.29-1.23.66 1.66.25 2.88.12 3.18.77.84 1.24 1.91 1.24 3.22 0 4.61-2.81 5.62-5.49 5.92.43.37.81 1.1.81 2.22v3.29c0 .32.21.7.83.58A12 12 0 0 0 12 .5Z'/%3E%3C/svg%3E");
}
.wp-message-ok,
.wp-message-err { border-radius: 6px; padding: 12px; margin-bottom: 16px; font-size: 14px; }
.wp-message-ok { background: #ecfdf5; border: 1px solid #bbf7d0; color: var(--wp-ok); }
.wp-message-err { background: #fef2f2; border: 1px solid #fecaca; color: var(--wp-err); }
.wp-auth-footer { margin-top: 28px; text-align: center; color: var(--wp-muted); font-size: 14px; }
.wp-auth-footer a { color: var(--wp-text); font-weight: 800; }

.wp-console-nav .wp-nav-inner { max-width: 1400px; }
.wp-console-wrap { max-width: 1400px; margin: 0 auto; padding: 32px; }
.wp-console-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 28px; }
.wp-console-head h1 { margin: 0; font-size: 32px; }
.wp-console-head p { margin: 4px 0 0; color: var(--wp-muted); }
.wp-user-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin-top: 4px; color: var(--wp-muted); }
.wp-user-name { color: var(--wp-text); font-weight: 800; }
.wp-tabs { display: flex; border-bottom: 1px solid var(--wp-line); margin-bottom: 28px; overflow-x: auto; }
.wp-tab {
  border: 0;
  background: transparent;
  padding: 14px 22px;
  color: var(--wp-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  font: inherit;
  cursor: pointer;
}
.wp-tab:hover,
.wp-tab:focus,
.wp-tab:active {
  background: transparent;
  color: var(--wp-text);
  outline: none;
}
.wp-tab:focus-visible {
  box-shadow: inset 0 -2px 0 var(--wp-accent), 0 0 0 3px rgba(15, 118, 110, .16);
  border-radius: 6px 6px 0 0;
}
.wp-tab.active { color: var(--wp-text); border-bottom-color: var(--wp-accent); font-weight: 800; }
.wp-tab-content { display: none; }
.wp-tab-content.active { display: block; }
.wp-stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-bottom: 28px; }
.wp-stat {
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  padding: 22px;
}
.wp-stat span { display: block; color: var(--wp-soft); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.wp-stat b { display: block; margin: 8px 0 4px; font-size: 30px; line-height: 1.1; }
.wp-stat small { color: var(--wp-muted); }
.wp-panel {
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  background: var(--wp-bg);
  padding: 24px;
  margin-bottom: 22px;
}
.wp-panel h2,
.wp-panel h3 { margin: 0 0 14px; color: var(--wp-text); }
.wp-panel p { color: var(--wp-muted); }
.wp-section.flush { max-width: none; padding: 0; border-top: 0; }
.wp-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}
.wp-detail-grid > div {
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  padding: 18px;
  min-width: 0;
}
.wp-detail-grid span {
  display: block;
  color: var(--wp-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.wp-detail-grid b {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  font-size: 18px;
}
.wp-badge-soft {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--wp-green);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 800;
}
.usage-steps { margin: 0; padding-left: 22px; color: var(--wp-muted); }
.usage-steps li { margin: 10px 0; }
.wp-admin-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.wp-table-wrap { border: 1px solid var(--wp-line); border-radius: 8px; overflow: auto; }
.wp-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.wp-table thead { background: var(--wp-panel); }
.wp-table th {
  padding: 14px;
  text-align: left;
  color: var(--wp-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.wp-table td { padding: 14px; border-top: 1px solid var(--wp-line); color: var(--wp-muted); }
.wp-progress { width: 120px; height: 8px; border-radius: 999px; background: var(--wp-panel); overflow: hidden; }
.wp-progress span { display: block; height: 100%; background: var(--wp-green); }
.wp-doc-shell {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 280px;
  gap: 32px;
  padding: 32px;
}
.wp-doc-sidebar,
.wp-doc-toc { border-color: var(--wp-line); }
.wp-doc-sidebar { border-right: 1px solid var(--wp-line); padding-right: 24px; }
.wp-doc-toc { border-left: 1px solid var(--wp-line); padding-left: 24px; position: sticky; top: 96px; align-self: start; }
.wp-doc-sidebar h3,
.wp-doc-toc h4 { margin: 0 0 12px; color: var(--wp-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.wp-doc-sidebar a,
.wp-doc-toc a { display: block; padding: 7px 0 7px 10px; border-left: 2px solid transparent; color: var(--wp-muted); font-size: 14px; }
.wp-doc-sidebar a:hover,
.wp-doc-sidebar a.active,
.wp-doc-toc a:hover { color: var(--wp-text); border-left-color: var(--wp-accent); }
.wp-doc-main h1 { margin: 0 0 10px; font-size: 42px; }
.wp-doc-main > p { margin: 0 0 28px; color: var(--wp-muted); }
.wp-doc-section { border-top: 1px solid var(--wp-line); padding: 30px 0; }
.wp-doc-section h2 { margin: 0 0 12px; font-size: 28px; }
.wp-doc-section p,
.wp-doc-section li { color: var(--wp-muted); line-height: 1.75; }
.wp-doc-section pre { overflow: auto; border: 1px solid var(--wp-line); border-radius: 6px; background: var(--wp-panel); padding: 18px; color: var(--wp-text); }

@media (max-width: 980px) {
  .wp-nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 18px; }
  .wp-links { width: 100%; flex-wrap: wrap; gap: 8px; }
  .wp-links a,
  .wp-links .wp-btn { min-height: 34px; padding: 7px 10px; border: 1px solid var(--wp-line); border-radius: 6px; }
  .wp-lang-form { flex: 1 1 130px; }
  .wp-lang { width: 100%; }
  .wp-hero { padding: 68px 20px 52px; text-align: left; }
  .wp-hero h1,
  .wp-hero p { margin-left: 0; margin-right: 0; }
  .wp-actions { justify-content: flex-start; }
  .wp-preview,
  .wp-grid,
  .wp-grid.two,
  .wp-price-grid,
  .wp-pricing-shell,
  .wp-auth-shell,
  .wp-stat-grid,
  .wp-doc-shell,
  .wp-footer-inner { grid-template-columns: 1fr; }
  .wp-plan-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .wp-plan-price {
    justify-items: start;
  }
  .wp-plan-row > .wp-btn {
    width: 100%;
  }
  .wp-activation-panel {
    position: static;
  }
  .wp-section { padding: 60px 20px; }
  .wp-section-title,
  .wp-section-subtitle { text-align: left; margin-left: 0; margin-right: 0; }
  .wp-price-card.featured { transform: none; }
  .wp-auth-side { border-right: 0; border-bottom: 1px solid var(--wp-line); padding: 32px 24px; }
  .wp-auth-main { padding: 32px 20px; }
  .wp-form-row { grid-template-columns: 1fr; gap: 0; }
  .wp-console-wrap { padding: 22px 18px; }
  .wp-console-head { align-items: flex-start; flex-direction: column; }
  .wp-detail-grid { grid-template-columns: 1fr; }
  .wp-doc-sidebar,
  .wp-doc-toc { border: 0; padding: 0; position: static; }
}
