﻿:root {
  --page: #f6f8fb;
  --paper: #ffffff;
  --paper-alt: #eef4f8;
  --ink: #162032;
  --ink-soft: #3d4b61;
  --muted: #6d7a8e;
  --line: #dce4ee;
  --line-strong: #c5d1de;
  --teal: #1aa59a;
  --teal-dark: #0b766f;
  --blue: #2d75c8;
  --amber: #d99717;
  --graphite: #1d2735;
  --graphite-soft: #2d3848;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(34, 48, 68, 0.13);
}

/* Official commercial site v2 */
.official-site-v2 {
  --official-ink: #071526;
  --official-muted: #425371;
  --official-soft: #eef6f4;
  --official-surface: #ffffff;
  --official-border: rgba(7, 21, 38, 0.14);
  --official-teal: #0aa494;
  --official-green: #36d58b;
  --official-gold: #f4b63d;
  --official-night: #07111f;
  --official-night-panel: #0e1d30;
  --official-night-panel-2: #142844;
  color: var(--official-ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(54, 213, 139, 0.2), transparent 26rem),
    linear-gradient(180deg, #f7fbfa 0%, #eef5f7 48%, #f7fbfa 100%);
  padding-top: var(--official-header-offset, 9rem) !important;
}

body.theme-night.official-site-v2 {
  color: #f3f8ff;
  background:
    radial-gradient(circle at 12% 10%, rgba(10, 164, 148, 0.24), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(244, 182, 61, 0.11), transparent 28rem),
    linear-gradient(180deg, #06101c 0%, #0a1727 52%, #07111f 100%);
}

.official-site-v2 .official-topbar-v2 {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  right: auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(8rem, 13rem) 1fr auto;
  gap: 1rem;
  align-items: center;
  width: min(78rem, calc(100% - 2rem));
  max-width: 78rem;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-top: 0;
  border-radius: 0 0 1.25rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 244, 0.86));
  box-shadow: 0 1.1rem 2.8rem rgba(7, 21, 38, 0.11);
  backdrop-filter: blur(18px);
}

body.theme-night.official-site-v2 .official-topbar-v2,
body.theme-night.official-site-v2 .official-topbar-v2 {
  border-color: rgba(151, 188, 230, 0.16);
  background: linear-gradient(135deg, rgba(6, 17, 31, 0.94), rgba(14, 36, 55, 0.88));
  box-shadow: 0 1.1rem 2.8rem rgba(0, 0, 0, 0.42);
}

.official-site-v2 .official-brand-v2 {
  min-width: 0;
  width: fit-content;
  border-radius: 0.9rem;
  padding: 0.48rem 0.62rem;
  background: linear-gradient(135deg, rgba(7, 21, 38, 0.92), rgba(8, 111, 108, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0.8rem 1.7rem rgba(7, 21, 38, 0.14);
}

.official-site-v2 .official-brand-v2:hover,
.official-site-v2 .official-brand-v2:focus-visible {
  background: linear-gradient(135deg, rgba(7, 21, 38, 0.98), rgba(10, 164, 148, 0.86));
  outline: 2px solid rgba(10, 164, 148, 0.35);
  outline-offset: 0.2rem;
}

.official-site-v2 .brand-logo-full {
  display: block;
  width: 7.6rem;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0.65rem 1rem rgba(7, 21, 38, 0.16));
}

.official-site-v2 .official-nav-v2 {
  display: flex;
  justify-content: center;
  justify-self: stretch;
  min-width: 0;
  gap: 0.25rem;
}

.official-site-v2 .official-nav-v2 a,
.official-site-v2 .official-actions-v2 .nav-action,
.official-site-v2 .official-actions-v2 .theme-toggle {
  border: 1px solid transparent;
  border-radius: 0.85rem;
  padding: 0.72rem 0.85rem;
  color: #24334a;
  font-weight: 750;
  text-decoration: none;
}

.official-site-v2 .official-nav-v2 a:hover,
.official-site-v2 .official-nav-v2 a:focus-visible,
.official-site-v2 .official-nav-v2 a.is-current,
.official-site-v2 .official-nav-v2 a[aria-current="location"] {
  color: #ffffff;
  background: #071526;
  box-shadow: 0 0.8rem 1.6rem rgba(7, 21, 38, 0.18);
}

.official-site-v2 .official-actions-v2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.official-site-v2 .official-actions-v2 .nav-action,
.official-site-v2 .official-actions-v2 .theme-toggle {
  border-color: var(--official-border);
  background: rgba(255, 255, 255, 0.66);
}

body.theme-night.official-site-v2 .official-nav-v2 a,
body.theme-night.official-site-v2 .official-actions-v2 .nav-action,
body.theme-night.official-site-v2 .official-actions-v2 .theme-toggle {
  color: #d9e7f8;
}

body.theme-night.official-site-v2 .official-nav-v2 a:hover,
body.theme-night.official-site-v2 .official-nav-v2 a:focus-visible,
body.theme-night.official-site-v2 .official-nav-v2 a.is-current,
body.theme-night.official-site-v2 .official-nav-v2 a[aria-current="location"] {
  color: #06111d;
  background: #80f0c0;
}

body.theme-night.official-site-v2 .official-actions-v2 .nav-action,
body.theme-night.official-site-v2 .official-actions-v2 .theme-toggle {
  border-color: rgba(201, 222, 249, 0.18);
  background: rgba(16, 35, 57, 0.88);
}

body.theme-night.official-site-v2 .official-brand-v2 {
  background: linear-gradient(135deg, rgba(3, 11, 21, 0.95), rgba(14, 70, 76, 0.82));
  border-color: rgba(201, 222, 249, 0.14);
}

.official-site-v2 .official-hero-v2,
.official-site-v2 .official-section,
.official-site-v2 .official-footer-v2 {
  width: min(78rem, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.official-site-v2 .official-hero-v2 {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: 2rem;
  align-items: center;
  min-height: 44rem;
  padding: 4rem 0 3rem;
  overflow-x: clip;
}

.official-site-v2 .official-hero-v2::before {
  content: "";
  position: absolute;
  inset: 3rem -1rem auto -1rem;
  height: 24rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at var(--spot-x, 60%) var(--spot-y, 25%), rgba(54, 213, 139, 0.24), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(223, 238, 245, 0.45));
  z-index: -1;
}

body.theme-night.official-site-v2 .official-hero-v2::before {
  background:
    radial-gradient(circle at var(--spot-x, 60%) var(--spot-y, 25%), rgba(54, 213, 139, 0.2), transparent 16rem),
    linear-gradient(135deg, rgba(12, 32, 51, 0.85), rgba(6, 17, 31, 0.65));
}

.official-site-v2 .official-hero-copy-v2 {
  max-width: 39rem;
}

.official-site-v2 .official-hero-logo {
  width: 10rem;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(135deg, rgba(7, 21, 38, 0.9), rgba(8, 111, 108, 0.76));
  filter: drop-shadow(0 1rem 1.4rem rgba(7, 21, 38, 0.16));
}

.official-site-v2 .official-kicker,
.official-site-v2 .section-kicker,
.official-site-v2 .official-heading span {
  color: #008674;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-site-v2 .official-hero-v2 h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--official-ink);
  font-size: 4.25rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.official-site-v2 .official-lead,
.official-site-v2 .official-heading p,
.official-site-v2 .implementation-copy p,
.official-site-v2 .contact-card p,
.official-site-v2 .contact-form p,
.official-site-v2 .official-faq-grid p {
  color: var(--official-muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.official-site-v2 .official-hero-actions,
.official-site-v2 .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.official-site-v2 .official-button,
.official-site-v2 .button {
  border-radius: 0.85rem;
  font-weight: 850;
}

.official-site-v2 .button.primary {
  background: linear-gradient(135deg, #0aa494, #27c17a);
  background-color: #27c17a;
  color: #06111d;
  border-color: transparent;
  box-shadow: 0 0.95rem 1.8rem rgba(10, 164, 148, 0.24);
}

.official-site-v2 .button.secondary,
.official-site-v2 .button.ghost {
  color: var(--official-ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--official-border);
}

.official-site-v2 .official-signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}

.official-site-v2 .official-signal-list li {
  border: 1px solid rgba(10, 164, 148, 0.28);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  color: #0a6159;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
}

.official-site-v2 .official-product-stage-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 1rem;
  align-items: stretch;
}

.official-site-v2 .official-stage-console,
.official-site-v2 .official-stage-tv,
.official-site-v2 .official-stage-weather {
  overflow: hidden;
  border: 1px solid var(--official-border);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.25rem 3rem rgba(7, 21, 38, 0.13);
}

.official-site-v2 .official-stage-console {
  grid-column: 1 / -1;
  color: #f8fbff;
  background:
    radial-gradient(circle at 88% 0%, rgba(10, 164, 148, 0.22), transparent 14rem),
    linear-gradient(135deg, #071526, #0e2238);
}

.official-site-v2 .official-window-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(135deg, #071526, #0b5b79);
  color: #ffffff;
}

.official-site-v2 .official-window-bar span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.official-site-v2 .official-window-bar strong {
  margin-left: 0.35rem;
  font-size: 0.86rem;
}

.official-site-v2 .official-dashboard-v2 {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.official-site-v2 .official-dashboard-v2 small,
.official-site-v2 .surface-card span,
.official-site-v2 .simulator-result span {
  color: #0a897b;
  font-weight: 850;
  text-transform: uppercase;
}

.official-site-v2 .official-dashboard-v2 strong {
  display: block;
  color: var(--official-ink);
  font-size: 1.45rem;
}

.official-site-v2 .official-stage-console .official-dashboard-v2 strong {
  color: #f8fbff;
}

.official-site-v2 .official-stage-console .official-dashboard-v2 small {
  color: #7df0c4;
}

.official-site-v2 .official-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.official-site-v2 .official-dashboard-grid span,
.official-site-v2 .official-dashboard-list li,
.official-site-v2 .product-flow-steps li,
.official-site-v2 .trust-strip-v2 article,
.official-site-v2 .update-list-v2 article {
  border: 1px solid rgba(7, 21, 38, 0.1);
  border-radius: 0.95rem;
  background: rgba(246, 250, 249, 0.88);
  padding: 0.82rem;
}

.official-site-v2 .official-stage-console .official-dashboard-grid span,
.official-site-v2 .official-stage-console .official-dashboard-list li {
  border-color: rgba(201, 230, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.official-site-v2 .official-stage-console .official-dashboard-grid b,
.official-site-v2 .official-stage-console .official-dashboard-list span {
  color: #ffffff;
}

.official-site-v2 .official-dashboard-grid b {
  display: block;
  font-size: 1.35rem;
}

.official-site-v2 .official-dashboard-list {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.official-site-v2 .official-dashboard-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.official-site-v2 .official-dashboard-list em {
  color: #78f4ce;
  font-style: normal;
  font-weight: 800;
}

.official-site-v2 .official-stage-tv img,
.official-site-v2 .official-stage-weather img,
.official-site-v2 .surface-card-tv img {
  display: block;
  width: 100%;
  height: auto;
}

.official-site-v2 .official-stage-tv figcaption,
.official-site-v2 .official-stage-weather figcaption,
.official-site-v2 .surface-card-tv figcaption {
  padding: 0.8rem 0.9rem;
  color: var(--official-muted);
  font-size: 0.88rem;
}

.official-site-v2 .official-section {
  padding: 3.75rem 0;
}

.official-site-v2 .official-heading {
  max-width: 48rem;
  margin-bottom: 1.8rem;
}

.official-site-v2 .official-heading h2,
.official-site-v2 .implementation-copy h2 {
  margin: 0.35rem 0 0;
  color: var(--official-ink);
  font-size: 3.1rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.official-site-v2 .operation-shift-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.official-site-v2 .operation-shift-strip article {
  position: relative;
  min-height: 10.5rem;
  overflow: hidden;
  border: 1px solid var(--official-border);
  border-radius: 1.2rem;
  padding: 1.1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(240, 250, 247, 0.82)),
    radial-gradient(circle at 95% 0%, rgba(54, 213, 139, 0.18), transparent 12rem);
  box-shadow: 0 1rem 2rem rgba(7, 21, 38, 0.07);
}

.official-site-v2 .operation-shift-strip article::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0 1rem;
  height: 0.22rem;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--official-teal), var(--official-gold));
}

.official-site-v2 .operation-shift-strip span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--official-teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-site-v2 .operation-shift-strip strong {
  display: block;
  color: var(--official-ink);
  font-size: 1.15rem;
  line-height: 1.18;
}

.official-site-v2 .operation-shift-strip p {
  margin: 0.65rem 0 0;
  color: var(--official-muted);
  line-height: 1.5;
}

.official-site-v2 .product-scenario-board {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.official-site-v2 .product-scenario-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.official-site-v2 .product-scenario-tabs button,
.official-site-v2 .product-scenario-panel {
  border: 1px solid var(--official-border);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1rem 2.2rem rgba(7, 21, 38, 0.08);
}

.official-site-v2 .product-scenario-tabs button {
  display: grid;
  gap: 0.45rem;
  min-height: 8.2rem;
  padding: 1rem;
  text-align: left;
  color: var(--official-ink);
  cursor: pointer;
}

.official-site-v2 .product-scenario-tabs button:hover,
.official-site-v2 .product-scenario-tabs button:focus-visible,
.official-site-v2 .product-scenario-tabs button.is-active,
.official-site-v2 .product-scenario-tabs button[aria-selected="true"] {
  border-color: rgba(10, 164, 148, 0.6);
  background:
    linear-gradient(135deg, rgba(238, 251, 247, 0.96), rgba(255, 248, 230, 0.84)),
    #ffffff;
  outline: none;
  transform: translateY(-0.08rem);
}

.official-site-v2 .product-scenario-tabs button span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #071526;
  font-size: 0.75rem;
  font-weight: 900;
}

.official-site-v2 .product-scenario-tabs button strong,
.official-site-v2 .product-scenario-tabs button small {
  display: block;
}

.official-site-v2 .product-scenario-tabs button strong {
  font-size: 1.05rem;
}

.official-site-v2 .product-scenario-tabs button small {
  color: var(--official-muted);
  line-height: 1.35;
}

.official-site-v2 .product-scenario-panel {
  display: grid;
  align-content: center;
  padding: 1.3rem;
  background:
    linear-gradient(135deg, rgba(7, 21, 38, 0.96), rgba(13, 87, 102, 0.82)),
    radial-gradient(circle at 88% 10%, rgba(54, 213, 139, 0.34), transparent 14rem);
  color: #ffffff;
}

.official-site-v2 .product-scenario-panel h3 {
  margin: 0.45rem 0 0.7rem;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.8vw, 2.65rem);
  line-height: 1.04;
  text-wrap: balance;
}

.official-site-v2 .product-scenario-panel p {
  margin: 0;
  color: #cce8e4;
  line-height: 1.6;
}

.official-site-v2 .product-scenario-outcomes {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.15rem 0 0;
  list-style: none;
}

.official-site-v2 .product-scenario-outcomes li {
  display: grid;
  grid-template-columns: 8.2rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.95rem;
  padding: 0.78rem;
  background: rgba(255, 255, 255, 0.08);
}

.official-site-v2 .product-scenario-outcomes strong {
  color: #8ff4cf;
}

.official-site-v2 .product-scenario-outcomes span {
  color: #f4fbff;
  line-height: 1.45;
}

.official-site-v2 .product-action-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: start;
}

.official-site-v2 .product-flow-card,
.official-site-v2 .surface-showcase,
.official-site-v2 .official-simulator-card,
.official-site-v2 .segment-panel-v2,
.official-site-v2 .update-board-v2,
.official-site-v2 .implementation-section,
.official-site-v2 .official-faq-grid-v2 details {
  border: 1px solid var(--official-border);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.1rem 2.6rem rgba(7, 21, 38, 0.08);
}

.official-site-v2 .product-flow-card,
.official-site-v2 .official-simulator-card,
.official-site-v2 .segment-panel-v2,
.official-site-v2 .update-board-v2,
.official-site-v2 .implementation-section {
  padding: 1.3rem;
}

.official-site-v2 .product-flow-card {
  display: flex;
  flex-direction: column;
}

.official-site-v2 .product-flow-card h3,
.official-site-v2 .simulator-copy h3,
.official-site-v2 .segment-panel-v2 h3,
.official-site-v2 .update-main h3,
.official-site-v2 .contact-card h3 {
  margin: 0.45rem 0 0.7rem;
  color: var(--official-ink);
  font-size: 1.75rem;
  line-height: 1.14;
}

.official-site-v2 .product-flow-steps {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.official-site-v2 .product-flow-steps strong {
  display: block;
  margin-bottom: 0.25rem;
}

.official-site-v2 .product-flow-steps span,
.official-site-v2 .trust-strip-v2 span,
.official-site-v2 .update-list-v2 span,
.official-site-v2 .surface-card p,
.official-site-v2 .receiver-phone-preview p,
.official-site-v2 .receiver-context-preview figcaption span,
.official-site-v2 .context-showcase-copy p,
.official-site-v2 .context-showcase-copy li,
.official-site-v2 .context-showcase-media figcaption {
  color: var(--official-muted);
  line-height: 1.55;
}

.official-site-v2 .product-flow-result {
  margin-top: auto;
  border: 1px solid rgba(24, 169, 153, 0.18);
  border-radius: 1rem;
  padding: 0.95rem;
  background:
    radial-gradient(circle at 96% 0%, rgba(53, 206, 141, 0.13), transparent 12rem),
    rgba(238, 248, 244, 0.76);
}

.official-site-v2 .product-flow-result strong,
.official-site-v2 .product-flow-result span {
  display: block;
}

.official-site-v2 .product-flow-result strong {
  color: var(--official-ink);
  font-size: 0.95rem;
}

.official-site-v2 .product-flow-result span {
  margin-top: 0.25rem;
  color: var(--official-muted);
  line-height: 1.45;
}

.official-site-v2 .surface-showcase {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 0.9rem;
  padding: 0.9rem;
  align-content: start;
}

.official-site-v2 .surface-card {
  border: 1px solid rgba(7, 21, 38, 0.1);
  border-radius: 1.1rem;
  background: #f8fbfa;
  padding: 1rem;
}

.official-site-v2 .surface-card-pc {
  min-height: 8.4rem;
  background:
    linear-gradient(135deg, rgba(7, 21, 38, 0.9), rgba(13, 87, 102, 0.82)),
    radial-gradient(circle at 80% 20%, rgba(54, 213, 139, 0.4), transparent 12rem);
  color: #ffffff;
}

.official-site-v2 .surface-card-visibility {
  min-height: 8.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(234, 249, 245, 0.82)),
    radial-gradient(circle at 86% 16%, rgba(54, 213, 139, 0.22), transparent 10rem);
}

.official-site-v2 .surface-card-pc span,
.official-site-v2 .surface-card-pc p {
  color: #c8f4e4;
}

.official-site-v2 .surface-card strong {
  display: block;
  margin: 0.55rem 0;
  font-size: 1.25rem;
}

.official-site-v2 .surface-card-tv {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
}

.official-site-v2 .surface-card-tv img {
  height: clamp(12rem, 18vw, 15.5rem);
  object-fit: cover;
  object-position: top center;
}

.official-site-v2 .surface-card-receivers {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(9.5rem, 0.34fr) minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.9rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 244, 0.82)),
    radial-gradient(circle at 10% 18%, rgba(53, 206, 141, 0.12), transparent 13rem);
}

.official-site-v2 .receiver-phone-preview,
.official-site-v2 .receiver-context-preview {
  min-width: 0;
}

.official-site-v2 .receiver-phone-preview {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.72rem;
  border: 1px solid rgba(7, 21, 38, 0.08);
  border-radius: 1rem;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.72);
}

.official-site-v2 .receiver-phone-preview .official-phone-v2 {
  width: min(8.8rem, 100%);
  border-width: 0.65rem;
  border-radius: 1.7rem;
  padding: 0.68rem;
}

.official-site-v2 .receiver-phone-preview .official-phone-v2 .phone-speaker {
  width: 2.35rem;
  height: 0.22rem;
  margin-bottom: 0.55rem;
}

.official-site-v2 .receiver-phone-preview .official-phone-v2 strong {
  font-size: 1rem;
  line-height: 1.16;
}

.official-site-v2 .receiver-phone-preview .official-phone-v2 small {
  margin-top: 0.18rem;
  font-size: 0.72rem;
}

.official-site-v2 .receiver-phone-preview .official-phone-v2 article {
  margin-top: 0.55rem;
  border-radius: 0.75rem;
  padding: 0.5rem;
}

.official-site-v2 .receiver-phone-preview .official-phone-v2 article + article {
  display: none;
}

.official-site-v2 .receiver-phone-preview p {
  margin: 0;
  max-width: 13.5rem;
  font-size: 0.8rem;
  text-align: center;
}

.official-site-v2 .receiver-context-preview {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.official-site-v2 .receiver-context-preview img {
  width: 100%;
  height: clamp(12rem, 18vw, 14.5rem);
  border-radius: 0.95rem;
  object-fit: cover;
  object-position: top left;
  box-shadow: 0 1.1rem 2rem rgba(7, 21, 38, 0.16);
}

.official-site-v2 .receiver-context-preview figcaption {
  display: grid;
  gap: 0.25rem;
}

.official-site-v2 .receiver-context-preview figcaption strong,
.official-site-v2 .receiver-context-preview figcaption span {
  display: block;
}

.official-site-v2 .receiver-context-preview figcaption strong {
  color: var(--official-ink);
}

.official-site-v2 .official-phone-v2 {
  width: min(13rem, 100%);
  border: 0.85rem solid #071526;
  border-radius: 2.1rem;
  padding: 0.9rem;
  color: #071526;
  background: linear-gradient(180deg, #f9fffc, #edf5f8);
  background-color: #f7fffb;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 1.5rem 2.3rem rgba(7, 21, 38, 0.22);
}

.official-site-v2 .official-phone-v2 .phone-speaker {
  width: 3rem;
  height: 0.28rem;
  margin: 0 auto 0.8rem;
  border-radius: 999px;
  background: #7b8da3;
}

.official-site-v2 .official-phone-v2 strong,
.official-site-v2 .official-phone-v2 small {
  display: block;
}

.official-site-v2 .official-phone-v2 article {
  margin-top: 0.75rem;
  border: 1px solid rgba(7, 21, 38, 0.12);
  border-radius: 0.9rem;
  padding: 0.7rem;
  background: #ffffff;
}

.official-site-v2 .official-phone-v2 span,
.official-site-v2 .official-phone-v2 em {
  color: #008674;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.official-site-v2 .official-context-showcase {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
  border: 1px solid var(--official-border);
  border-radius: 1.4rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 250, 246, 0.74)),
    radial-gradient(circle at 90% 10%, rgba(54, 213, 139, 0.18), transparent 18rem);
  box-shadow: 0 1.4rem 3rem rgba(7, 21, 38, 0.1);
}

.official-site-v2 .context-showcase-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.35rem 0.5rem 0.4rem;
}

.official-site-v2 .context-showcase-copy h3 {
  margin: 0.45rem 0 0.75rem;
  color: var(--official-ink);
  font-size: clamp(1.6rem, 2.9vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.official-site-v2 .context-showcase-copy p {
  margin: 0;
  max-width: 35rem;
}

.official-site-v2 .context-showcase-copy ul {
  display: grid;
  gap: 0.58rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.official-site-v2 .context-showcase-copy li {
  position: relative;
  padding-left: 1.2rem;
}

.official-site-v2 .context-showcase-copy li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--official-teal), var(--official-gold));
}

.official-site-v2 .context-showcase-media {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  margin: 0;
}

.official-site-v2 .context-showcase-media img {
  display: block;
  width: 100%;
  max-height: 21rem;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(7, 21, 38, 0.12);
  border-radius: 1rem;
  background: #07111f;
  box-shadow: 0 1.2rem 2.6rem rgba(7, 21, 38, 0.18);
}

.official-site-v2 .context-showcase-media figcaption {
  padding: 0 0.2rem;
  font-size: 0.92rem;
}

.official-site-v2 .official-simulator-card {
  display: grid;
  grid-template-columns: 0.7fr 0.85fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}

.official-site-v2 .official-simulator-form {
  display: grid;
  gap: 0.75rem;
}

.official-site-v2 .official-simulator-form label,
.official-site-v2 .contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--official-ink);
  font-weight: 800;
}

.official-site-v2 .official-simulator-form select,
.official-site-v2 .contact-form input,
.official-site-v2 .contact-form select,
.official-site-v2 .contact-form textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(7, 21, 38, 0.18);
  border-radius: 0.8rem;
  padding: 0.72rem 0.8rem;
  color: var(--official-ink);
  background: #ffffff;
  font: inherit;
}

.official-site-v2 .simulator-result {
  display: grid;
  gap: 0.7rem;
}

.official-site-v2 .simulator-result article {
  border: 1px solid rgba(10, 164, 148, 0.18);
  border-radius: 0.95rem;
  padding: 0.8rem;
  background: rgba(238, 248, 244, 0.72);
}

.official-site-v2 .simulator-result strong,
.official-site-v2 .simulator-result small {
  display: block;
  margin-top: 0.2rem;
}

.official-site-v2 .applications-section {
  border-top: 1px solid rgba(7, 21, 38, 0.08);
}

.official-site-v2 .segment-workbench {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.official-site-v2 .segment-tabs-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.official-site-v2 .segment-tabs-v2 button {
  min-height: 8.5rem;
  border: 1px solid var(--official-border);
  border-radius: 1.15rem;
  padding: 1rem;
  text-align: left;
  color: var(--official-ink);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  box-shadow: 0 0.8rem 1.8rem rgba(7, 21, 38, 0.06);
}

.official-site-v2 .segment-tabs-v2 button:hover,
.official-site-v2 .segment-tabs-v2 button:focus-visible,
.official-site-v2 .segment-tabs-v2 button.is-active,
.official-site-v2 .segment-tabs-v2 button[aria-selected="true"] {
  border-color: rgba(244, 182, 61, 0.8);
  background: linear-gradient(135deg, #fff8e6, #effbf6);
  outline: none;
}

.official-site-v2 .segment-tabs-v2 strong,
.official-site-v2 .segment-tabs-v2 span {
  display: block;
}

.official-site-v2 .segment-tabs-v2 span {
  margin-top: 0.55rem;
  color: var(--official-muted);
}

.official-site-v2 .trust-strip-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

.official-site-v2 .trust-strip-v2 strong,
.official-site-v2 .update-list-v2 strong {
  display: block;
  margin-bottom: 0.35rem;
}

.official-site-v2 .update-board-v2 {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1rem;
}

.official-site-v2 .public-updates-section {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

.official-site-v2 .public-updates-section .official-heading.compact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.72fr);
  align-items: end;
  gap: 1rem;
  max-width: none;
  margin-bottom: 1rem;
}

.official-site-v2 .public-updates-section .official-heading.compact span {
  grid-column: 1 / -1;
}

.official-site-v2 .public-updates-section .official-heading.compact h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
}

.official-site-v2 .public-updates-section .official-heading.compact p {
  margin: 0;
  align-self: center;
  font-size: 0.98rem;
}

.official-site-v2 .update-main {
  border-radius: 1.1rem;
  padding: 1.15rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 0%, rgba(54, 213, 139, 0.25), transparent 12rem),
    linear-gradient(135deg, #071526, #0e4d5d);
}

.official-site-v2 .update-main span,
.official-site-v2 .update-main p {
  color: #d5f5ee;
}

.official-site-v2 .update-main h3 {
  color: #ffffff;
}

.official-site-v2 .update-main-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.official-site-v2 .update-main-tags small {
  border: 1px solid rgba(213, 245, 238, 0.22);
  border-radius: 999px;
  padding: 0.36rem 0.55rem;
  color: #071526;
  background: #8ff4cf;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.official-site-v2 .update-list-v2 {
  display: grid;
  gap: 0.7rem;
}

.official-site-v2 .implementation-section {
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1.2rem;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 0%, rgba(53, 206, 141, 0.13), transparent 18rem),
    radial-gradient(circle at 92% 100%, rgba(18, 94, 120, 0.1), transparent 20rem),
    rgba(255, 255, 255, 0.92);
}

.official-site-v2 .implementation-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.official-site-v2 .implementation-steps {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.official-site-v2 .implementation-steps li {
  border-left: 0.24rem solid var(--official-teal);
  padding: 0.2rem 0 0.2rem 0.8rem;
}

.official-site-v2 .implementation-steps strong,
.official-site-v2 .implementation-steps span {
  display: block;
}

.official-site-v2 .implementation-steps span {
  color: var(--official-muted);
  line-height: 1.5;
}

.official-site-v2 .implementation-proof-panel {
  display: grid;
  gap: 0.68rem;
  margin-top: auto;
  border: 1px solid rgba(24, 169, 153, 0.18);
  border-radius: 1.15rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(7, 21, 38, 0.94), rgba(13, 87, 102, 0.82)),
    radial-gradient(circle at 92% 10%, rgba(53, 206, 141, 0.26), transparent 12rem);
  box-shadow: 0 1.2rem 2.5rem rgba(7, 21, 38, 0.14);
}

.official-site-v2 .implementation-proof-panel > span {
  color: #8ff4cf;
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-site-v2 .implementation-proof-panel article {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.72rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.95rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
}

.official-site-v2 .implementation-proof-panel article strong {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  color: #071526;
  background: #8ff4cf;
  font-size: 0.82rem;
}

.official-site-v2 .implementation-proof-panel b,
.official-site-v2 .implementation-proof-panel small {
  display: block;
}

.official-site-v2 .implementation-proof-panel b {
  color: #ffffff;
}

.official-site-v2 .implementation-proof-panel small {
  margin-top: 0.18rem;
  color: #c8f4e4;
  line-height: 1.45;
}

.official-site-v2 .contact-section-v2 {
  display: grid;
  grid-template-columns: minmax(16rem, 0.92fr) minmax(18rem, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.official-site-v2 .contact-card,
.official-site-v2 .contact-form {
  border: 1px solid var(--official-border);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.15rem;
}

.official-site-v2 .contact-card {
  display: flex;
  flex-direction: column;
}

.official-site-v2 .contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0.72rem;
}

.official-site-v2 .official-contact-intro,
.official-site-v2 .official-contact-form .contact-message-field,
.official-site-v2 .official-contact-brief,
.official-site-v2 .official-contact-form #clubal-contact-status {
  grid-column: 1 / -1;
}

.official-site-v2 .official-pilot-brief {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.official-site-v2 .official-pilot-brief article {
  border: 1px solid rgba(7, 21, 38, 0.09);
  border-radius: 0.95rem;
  padding: 0.66rem 0.76rem;
  background: rgba(255, 255, 255, 0.66);
}

.official-site-v2 .official-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.official-site-v2 .official-contact-actions .button {
  width: 100%;
}

.official-site-v2 .official-pilot-brief strong,
.official-site-v2 .official-pilot-brief span {
  display: block;
}

.official-site-v2 .official-pilot-brief strong {
  color: var(--official-ink);
  font-size: 0.88rem;
}

.official-site-v2 .official-pilot-brief span {
  margin-top: 0.2rem;
  color: var(--official-muted);
  font-size: 0.83rem;
  line-height: 1.36;
}

.official-site-v2 .contact-brief {
  border: 1px solid rgba(7, 21, 38, 0.12);
  border-radius: 1rem;
  padding: 0.85rem;
  background: rgba(238, 248, 244, 0.7);
}

.official-site-v2 .contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.official-site-v2 .official-faq-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.official-site-v2 .official-faq-grid-v2 details {
  padding: 1rem;
}

.official-site-v2 .official-faq-grid-v2 summary {
  cursor: pointer;
  color: var(--official-ink);
  font-weight: 850;
}

.official-site-v2 .official-footer-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(7, 21, 38, 0.12);
}

.official-site-v2 .official-footer-v2 div,
.official-site-v2 .official-footer-v2 nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.official-site-v2 .official-footer-v2 span,
.official-site-v2 .official-footer-v2 a {
  color: var(--official-muted);
}

body.theme-night.official-site-v2 .official-hero-v2 h1,
body.theme-night.official-site-v2 .official-heading h2,
body.theme-night.official-site-v2 .implementation-copy h2,
body.theme-night.official-site-v2 .product-flow-card h3,
body.theme-night.official-site-v2 .simulator-copy h3,
body.theme-night.official-site-v2 .context-showcase-copy h3,
body.theme-night.official-site-v2 .segment-panel-v2 h3,
body.theme-night.official-site-v2 .contact-card h3,
body.theme-night.official-site-v2 .official-faq-grid-v2 summary,
body.theme-night.official-site-v2 .official-dashboard-v2 strong,
body.theme-night.official-site-v2 .surface-card,
body.theme-night.official-site-v2 .operation-shift-strip strong,
body.theme-night.official-site-v2 .official-simulator-form label,
body.theme-night.official-site-v2 .contact-form label {
  color: #f4f8ff;
}

body.theme-night.official-site-v2 .official-lead,
body.theme-night.official-site-v2 .official-heading p,
body.theme-night.official-site-v2 .implementation-copy p,
body.theme-night.official-site-v2 .contact-card p,
body.theme-night.official-site-v2 .contact-form p,
body.theme-night.official-site-v2 .official-faq-grid p,
body.theme-night.official-site-v2 .operation-shift-strip p,
body.theme-night.official-site-v2 .product-flow-steps span,
body.theme-night.official-site-v2 .trust-strip-v2 span,
body.theme-night.official-site-v2 .update-list-v2 span,
body.theme-night.official-site-v2 .surface-card p,
body.theme-night.official-site-v2 .context-showcase-copy p,
body.theme-night.official-site-v2 .context-showcase-copy li,
body.theme-night.official-site-v2 .context-showcase-media figcaption,
body.theme-night.official-site-v2 .implementation-steps span,
body.theme-night.official-site-v2 .segment-tabs-v2 span,
body.theme-night.official-site-v2 .official-footer-v2 span,
body.theme-night.official-site-v2 .official-footer-v2 a {
  color: #bdd0e7;
}

body.theme-night.official-site-v2 .official-stage-console,
body.theme-night.official-site-v2 .official-stage-tv,
body.theme-night.official-site-v2 .official-stage-weather,
body.theme-night.official-site-v2 .operation-shift-strip article,
body.theme-night.official-site-v2 .product-scenario-tabs button,
body.theme-night.official-site-v2 .product-flow-card,
body.theme-night.official-site-v2 .surface-showcase,
body.theme-night.official-site-v2 .official-context-showcase,
body.theme-night.official-site-v2 .official-simulator-card,
body.theme-night.official-site-v2 .segment-panel-v2,
body.theme-night.official-site-v2 .update-board-v2,
body.theme-night.official-site-v2 .implementation-section,
body.theme-night.official-site-v2 .official-faq-grid-v2 details,
body.theme-night.official-site-v2 .contact-card,
body.theme-night.official-site-v2 .contact-form,
body.theme-night.official-site-v2 .surface-card,
body.theme-night.official-site-v2 .segment-tabs-v2 button {
  border-color: rgba(183, 216, 255, 0.16);
  background: rgba(13, 29, 49, 0.9);
  box-shadow: 0 1.1rem 2.6rem rgba(0, 0, 0, 0.28);
}

body.theme-night.official-site-v2 .official-dashboard-grid span,
body.theme-night.official-site-v2 .official-dashboard-list li,
body.theme-night.official-site-v2 .product-flow-steps li,
body.theme-night.official-site-v2 .trust-strip-v2 article,
body.theme-night.official-site-v2 .update-list-v2 article,
body.theme-night.official-site-v2 .simulator-result article,
body.theme-night.official-site-v2 .product-flow-result,
body.theme-night.official-site-v2 .receiver-phone-preview,
body.theme-night.official-site-v2 .contact-brief {
  border-color: rgba(183, 216, 255, 0.13);
  background: rgba(18, 40, 66, 0.86);
}

body.theme-night.official-site-v2 .surface-card-receivers {
  border-color: rgba(183, 216, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(13, 29, 49, 0.96), rgba(10, 44, 55, 0.82)),
    radial-gradient(circle at 10% 16%, rgba(54, 213, 139, 0.1), transparent 12rem);
}

body.theme-night.official-site-v2 .product-flow-result strong,
body.theme-night.official-site-v2 .receiver-context-preview figcaption strong {
  color: #f4f8ff;
}

body.theme-night.official-site-v2 .product-flow-result span,
body.theme-night.official-site-v2 .receiver-phone-preview p,
body.theme-night.official-site-v2 .receiver-context-preview figcaption span {
  color: #bdd0e7;
}

body.theme-night.official-site-v2 .implementation-section {
  background:
    radial-gradient(circle at 6% 0%, rgba(53, 206, 141, 0.11), transparent 18rem),
    radial-gradient(circle at 92% 100%, rgba(18, 94, 120, 0.16), transparent 20rem),
    rgba(13, 29, 49, 0.9);
}

body.theme-night.official-site-v2 .implementation-proof-panel {
  border-color: rgba(183, 216, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(5, 14, 24, 0.96), rgba(11, 46, 61, 0.9)),
    radial-gradient(circle at 92% 10%, rgba(53, 206, 141, 0.16), transparent 12rem);
}

body.theme-night.official-site-v2 .official-signal-list li {
  color: #97f7d5;
  background: rgba(17, 39, 63, 0.86);
}

body.theme-night.official-site-v2 .official-kicker,
body.theme-night.official-site-v2 .section-kicker,
body.theme-night.official-site-v2 .official-heading span,
body.theme-night.official-site-v2 .simulator-result span {
  color: #6df0ce;
}

body.theme-night.official-site-v2 .button.secondary,
body.theme-night.official-site-v2 .button.ghost {
  color: #f4f8ff;
  background: rgba(17, 39, 63, 0.86);
  border-color: rgba(183, 216, 255, 0.18);
}

body.theme-night.official-site-v2 .official-simulator-form select,
body.theme-night.official-site-v2 .contact-form input,
body.theme-night.official-site-v2 .contact-form select,
body.theme-night.official-site-v2 .contact-form textarea {
  color: #f4f8ff;
  background: #091726;
  border-color: rgba(183, 216, 255, 0.22);
}

body.theme-night.official-site-v2 .segment-tabs-v2 button:hover,
body.theme-night.official-site-v2 .segment-tabs-v2 button:focus-visible,
body.theme-night.official-site-v2 .segment-tabs-v2 button.is-active,
body.theme-night.official-site-v2 .segment-tabs-v2 button[aria-selected="true"],
body.theme-night.official-site-v2 .product-scenario-tabs button:hover,
body.theme-night.official-site-v2 .product-scenario-tabs button:focus-visible,
body.theme-night.official-site-v2 .product-scenario-tabs button.is-active,
body.theme-night.official-site-v2 .product-scenario-tabs button[aria-selected="true"] {
  color: #f7fbff;
  background: linear-gradient(135deg, rgba(35, 55, 72, 0.95), rgba(18, 58, 61, 0.9));
}

body.theme-night.official-site-v2 .product-scenario-tabs button span {
  background: #39d69e;
  color: #06111d;
}

body.theme-night.official-site-v2 .product-scenario-tabs button small {
  color: #b8cce1;
}

body.theme-night.official-site-v2 .product-scenario-panel {
  border-color: rgba(75, 231, 182, 0.28);
  background:
    linear-gradient(135deg, rgba(4, 13, 25, 0.98), rgba(9, 35, 52, 0.9)),
    radial-gradient(circle at 88% 10%, rgba(54, 213, 139, 0.2), transparent 14rem);
}

body.theme-night.official-site-v2 .official-phone-v2 {
  color: #071526;
  background: linear-gradient(180deg, #fbfffc, #eef6f8);
  background-color: #fbfffc;
  box-shadow: 0 1.5rem 2.4rem rgba(0, 0, 0, 0.5);
}

body.theme-night.official-site-v2 .surface-card-pc {
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(13, 80, 92, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(54, 213, 139, 0.24), transparent 12rem);
}

body.theme-night.official-site-v2 .surface-card-visibility,
body.theme-night.official-site-v2 .surface-card-context {
  background:
    linear-gradient(135deg, rgba(13, 29, 49, 0.96), rgba(10, 44, 55, 0.82)),
    radial-gradient(circle at 86% 12%, rgba(54, 213, 139, 0.12), transparent 12rem);
}

body.theme-night.official-site-v2 .surface-card-context figcaption span {
  color: #bdd0e7;
}

body.theme-night.official-site-v2 .official-pilot-brief article {
  border-color: rgba(183, 216, 255, 0.12);
  background: rgba(18, 40, 66, 0.72);
}

body.theme-night.official-site-v2 .official-pilot-brief strong {
  color: #f4f8ff;
}

body.theme-night.official-site-v2 .official-pilot-brief span {
  color: #bdd0e7;
}

body.theme-night.official-site-v2 .update-main-tags small {
  color: #06111d;
  background: #80f0c0;
  border-color: rgba(128, 240, 192, 0.42);
}

body.theme-night.official-site-v2 .official-context-showcase {
  background:
    linear-gradient(135deg, rgba(9, 23, 38, 0.94), rgba(10, 52, 57, 0.76)),
    radial-gradient(circle at 92% 8%, rgba(128, 240, 192, 0.1), transparent 18rem);
}

body.theme-night.official-site-v2 .context-showcase-media img {
  border-color: rgba(183, 216, 255, 0.16);
  box-shadow: 0 1.3rem 3rem rgba(0, 0, 0, 0.42);
}

@media (max-width: 1100px) {
  .official-site-v2 .official-topbar-v2 {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .official-site-v2 .official-nav-v2,
  .official-site-v2 .official-actions-v2 {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .official-site-v2 .official-hero-v2,
  .official-site-v2 .product-action-grid,
  .official-site-v2 .product-scenario-board,
  .official-site-v2 .operation-shift-strip,
  .official-site-v2 .official-context-showcase,
  .official-site-v2 .segment-workbench,
  .official-site-v2 .implementation-section,
  .official-site-v2 .contact-section-v2,
  .official-site-v2 .update-board-v2 {
    grid-template-columns: 1fr;
  }

  .official-site-v2 .official-hero-v2 {
    padding-top: 2.5rem;
  }

  .official-site-v2 .official-hero-v2 h1,
  .official-site-v2 .official-heading h2,
  .official-site-v2 .implementation-copy h2 {
    font-size: 3rem;
  }

  .official-site-v2 .official-simulator-card {
    grid-template-columns: 1fr;
  }

  .official-site-v2 .trust-strip-v2,
  .official-site-v2 .official-faq-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .official-site-v2 .official-hero-v2,
  .official-site-v2 .official-section,
  .official-site-v2 .official-footer-v2 {
    width: min(100% - 1rem, 78rem);
  }

  .official-site-v2 .official-topbar-v2 {
    width: min(100% - 0.75rem, 78rem);
    padding: 0.75rem;
  }

  .official-site-v2 .brand-logo-full {
    width: 6.5rem;
  }

  .official-site-v2 .official-nav-v2 a,
  .official-site-v2 .official-actions-v2 .nav-action,
  .official-site-v2 .official-actions-v2 .theme-toggle {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 0.62rem 0.72rem;
    white-space: nowrap;
  }

  .official-site-v2 .official-nav-v2 {
    display: flex !important;
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: flex-start;
  }

  .official-site-v2 .official-hero-v2 h1,
  .official-site-v2 .official-heading h2,
  .official-site-v2 .implementation-copy h2 {
    max-width: none;
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .official-site-v2 .official-product-stage-v2,
  .official-site-v2 .surface-showcase,
  .official-site-v2 .surface-card-receivers,
  .official-site-v2 .product-scenario-tabs,
  .official-site-v2 .product-scenario-outcomes li,
  .official-site-v2 .segment-tabs-v2,
  .official-site-v2 .trust-strip-v2,
  .official-site-v2 .official-faq-grid-v2,
  .official-site-v2 .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .official-site-v2 .official-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .official-site-v2 .official-contact-actions {
    grid-template-columns: 1fr;
  }

  .official-site-v2 .official-footer-v2 {
    align-items: flex-start;
    flex-direction: column;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body.theme-night {
  --page: #08111f;
  --paper: #101c2d;
  --paper-alt: #152236;
  --ink: #edf5ff;
  --ink-soft: #c2d1e3;
  --muted: #8ea1b7;
  --line: #24364d;
  --line-strong: #33465f;
  background: #08111f;
}

body.theme-night .topbar {
  background: rgba(8, 17, 31, 0.9);
}

body.theme-night .button.secondary,
body.theme-night .button.ghost,
body.theme-night .nav-action,
body.theme-night .theme-toggle {
  background: #101c2d;
  color: #edf5ff;
  border-color: #33465f;
}

body.theme-night .button.ghost {
  background: rgba(18, 138, 114, 0.12);
  border-color: rgba(123, 201, 111, 0.35);
  color: #c7f7bd;
}

body.theme-night .product-frame,
body.theme-night .feature-card,
body.theme-night .deployment-list article,
body.theme-night .distribution-grid article,
body.theme-night .artifact-list article,
body.theme-night .docs-grid a,
body.theme-night .docs-grid article,
body.theme-night .release-list article,
body.theme-night .timeline article,
body.theme-night .vertical-stack div {
  background: #101c2d;
  border-color: #24364d;
}

body.theme-night .hero,
body.theme-night.pemse-page,
body.theme-night.pemse-gate {
  background:
    radial-gradient(circle at top left, rgba(123, 201, 111, 0.14), transparent 34rem),
    linear-gradient(180deg, #08111f 0%, #101c2d 100%);
}

body.theme-night .pemse-topbar {
  background: rgba(8, 17, 31, 0.9);
}

body.theme-night .pemse-access-panel,
body.theme-night .pemse-access-support {
  background: #101c2d;
  border-color: #24364d;
}

body.theme-night .pemse-access-panel h1,
body.theme-night .pemse-access-support strong {
  color: #edf5ff;
}

body.theme-night .pemse-access-panel p,
body.theme-night .pemse-access-support p,
body.theme-night .pemse-access-support small,
body.theme-night .pemse-access-form label,
body.theme-night .pemse-access-form p {
  color: #c2d1e3;
}

body.theme-night .pemse-access-form {
  background:
    linear-gradient(180deg, rgba(18, 138, 114, 0.14), rgba(8, 17, 31, 0.88)),
    #08111f;
  border-color: #33465f;
}

body.theme-night .pemse-access-form input {
  background: #08111f;
  border-color: #33465f;
  color: #edf5ff;
}

body.theme-night .pemse-section-heading h2,
body.theme-night .pemse-hero-copy h1,
body.theme-night .snapshot-copy h2,
body.theme-night .next-steps h2,
body.theme-night .pemse-final h2,
body.theme-night .director-detail h3,
body.theme-night .focus-detail h3 {
  color: #edf5ff;
}

body.theme-night .pemse-section-heading span,
body.theme-night .pemse-lead,
body.theme-night .snapshot-copy span,
body.theme-night .next-steps p,
body.theme-night .pemse-final p,
body.theme-night .focus-detail span,
body.theme-night .director-detail-grid span {
  color: #b9c9db;
}

body.theme-night .updates-list article,
body.theme-night .director-grid article,
body.theme-night .director-detail,
body.theme-night .stage-detail,
body.theme-night .focus-detail,
body.theme-night .public-boundary,
body.theme-night .feedback-panel,
body.theme-night .next-steps,
body.theme-night .next-step-board article,
body.theme-night .module-card,
body.theme-night .ti-grid a,
body.theme-night .pemse-final,
body.theme-night .chart-card {
  background: #101c2d;
  border-color: #24364d;
}

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

.sr-only {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0 !important;
  white-space: nowrap;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
  background: rgba(246, 248, 251, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 228, 238, 0.7);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--graphite);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(17, 24, 39, 0.12));
}

.pemse-access-brand {
  min-width: 142px;
}

.pemse-access-logo {
  width: min(148px, 44vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(17, 24, 39, 0.22));
}

.pemse-gate .pemse-topbar {
  padding-inline: 24px;
  border-color: rgba(13, 22, 35, 0.08);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(
      100deg,
      rgba(13, 22, 35, 0.9) 0%,
      rgba(18, 43, 58, 0.72) 18%,
      rgba(246, 248, 251, 0.9) 47%,
      rgba(246, 248, 251, 0.78) 100%
    );
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.05);
}

body.theme-night.pemse-gate .pemse-topbar {
  background:
    linear-gradient(
      100deg,
      rgba(3, 9, 18, 0.96) 0%,
      rgba(10, 43, 55, 0.92) 24%,
      rgba(18, 53, 64, 0.72) 48%,
      rgba(10, 20, 34, 0.92) 100%
    );
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

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

body.pemse-page:not(.pemse-gate) .pemse-topbar {
  display: grid;
  grid-template-columns: minmax(190px, max-content) minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
}

body.pemse-page:not(.pemse-gate):not(.meeting-mode) {
  --pemse-fixed-topbar-space: 96px;
  padding-top: var(--pemse-fixed-topbar-space);
  scroll-padding-top: calc(var(--pemse-fixed-topbar-space) + 16px);
}

body.pemse-page:not(.pemse-gate):not(.meeting-mode) .pemse-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 80;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0;
  transform: translateX(-50%);
  box-shadow: 0 18px 48px rgba(13, 22, 35, 0.08);
}

body.pemse-page.meeting-mode {
  padding-top: 0;
  scroll-padding-top: 0;
}

body.pemse-page:not(.pemse-gate) .pemse-topbar .brand {
  min-width: 190px;
  white-space: nowrap;
}

body.pemse-page:not(.pemse-gate) .pemse-topbar .nav-links {
  min-width: 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: none;
}

body.pemse-page:not(.pemse-gate) .pemse-topbar .nav-links::-webkit-scrollbar {
  display: none;
}

body.pemse-page:not(.pemse-gate) .pemse-topbar .nav-links a,
body.pemse-page:not(.pemse-gate) .pemse-topbar .nav-action,
body.pemse-page:not(.pemse-gate) .pemse-topbar .theme-toggle {
  font-size: 0.88rem;
  white-space: nowrap;
}

body.pemse-page:not(.pemse-gate) .pemse-topbar .nav-action,
body.pemse-page:not(.pemse-gate) .pemse-topbar .theme-toggle {
  padding-inline: 11px;
}

.nav-links a,
.nav-action {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-action:hover {
  color: var(--ink);
}

.pemse-page .nav-links a {
  padding: 8px 7px;
  border-radius: 6px;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.pemse-page .nav-links a.is-current,
.pemse-page .nav-links a[aria-current="location"] {
  background: var(--pemse-night);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 22, 35, 0.14);
}

body.theme-night.pemse-page .nav-links a.is-current,
body.theme-night.pemse-page .nav-links a[aria-current="location"] {
  background: #edf5ff;
  color: #0d1623;
}

.nav-action {
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--paper);
}

.theme-toggle {
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
}

.theme-toggle:hover {
  color: var(--ink);
}

.whatsapp-link,
.whatsapp-action {
  gap: 8px;
}

.whatsapp-action {
  border-color: rgba(37, 211, 102, 0.45);
  background: #25d366;
  color: #071b12;
}

.whatsapp-icon {
  display: inline-flex;
  width: 19px;
  height: 19px;
  color: currentColor;
  transform-origin: center;
  animation: whatsappPulse 2.2s ease-in-out infinite;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-1px) scale(1.08);
  }
}

.section {
  scroll-margin-top: 96px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-band {
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  align-items: center;
  min-height: min(570px, calc(100svh - 73px));
  padding: 22px max(20px, calc((100vw - var(--max-width)) / 2)) 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8)),
    linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%);
}

.hero-copy h1 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(3.4rem, 6.3vw, 5.6rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 630px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.24rem, 2.25vw, 1.76rem);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 760;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

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

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: var(--paper);
  border-color: var(--line-strong);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 670px;
  margin: 18px 0 0;
}

.hero-facts div,
.feature-card,
.deployment-list article,
.timeline article,
.vertical-stack div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.hero-facts div {
  padding: 11px 12px;
}

.hero-facts dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 680;
}

.hero-product {
  position: relative;
  min-height: 420px;
}

.product-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.product-frame figcaption {
  padding: 11px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 720;
}

.agenda-frame {
  width: min(100%, 650px);
}

.weather-frame {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: min(54%, 400px);
}

.hero + .section {
  padding-top: 30px;
}

.weather-frame img {
  object-position: top left;
}

.section-heading {
  display: grid;
  gap: 13px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  align-self: start;
  max-width: 500px;
  margin: 0;
}

.section-heading h2,
.visual-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.section-heading p,
.visual-copy p,
.final-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.section-kicker {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.feature-card {
  min-height: 255px;
  padding: 24px;
}

.card-number {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 840;
}

.feature-card h3,
.timeline h3 {
  margin: 44px 0 10px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.15;
}

.feature-card p,
.timeline p,
.deployment-list span,
.vertical-stack div {
  color: var(--ink-soft);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.deployment-list,
.vertical-stack,
.distribution-grid {
  display: grid;
  gap: 12px;
}

.deployment-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.deployment-list strong {
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.98rem;
}

.status-section {
  border-top: 1px solid var(--line);
}

.distribution-section {
  border-top: 1px solid var(--line);
}

.docs-section,
.changelog-section,
.artifacts-section {
  border-top: 1px solid var(--line);
}

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

.distribution-grid article {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.distribution-grid strong {
  color: var(--graphite);
  font-size: 1.18rem;
}

.distribution-grid span {
  color: var(--ink-soft);
  margin-top: 16px;
}

.distribution-grid em {
  justify-self: start;
  margin-top: 24px;
  color: var(--teal-dark);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.artifact-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
}

.artifact-primary,
.artifact-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.artifact-primary {
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 316px;
  padding: 24px;
  background: var(--graphite);
  color: #fff;
}

.artifact-primary strong {
  font-size: 1.45rem;
}

.artifact-primary p {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.artifact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artifact-primary .button.primary {
  justify-self: start;
  background: #fff;
  color: var(--graphite);
}

.artifact-primary .button.secondary {
  justify-self: start;
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.artifact-list {
  display: grid;
  gap: 12px;
}

.artifact-list article {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--paper);
}

.artifact-list span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.artifact-list strong {
  color: var(--graphite);
  font-size: 1.12rem;
}

.artifact-list p,
.release-note {
  margin: 0;
  color: var(--ink-soft);
}

.release-note {
  max-width: 780px;
  margin-top: 18px;
  font-weight: 680;
}

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

.docs-grid a,
.docs-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.docs-grid a:hover {
  border-color: rgba(26, 165, 154, 0.72);
  transform: translateY(-1px);
}

.docs-grid strong {
  color: var(--graphite);
  font-size: 1.1rem;
}

.docs-grid span,
.release-list p {
  color: var(--ink-soft);
}

.changelog-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: start;
}

.text-link {
  justify-self: start;
  color: var(--teal-dark);
  font-weight: 820;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.release-list {
  display: grid;
  gap: 12px;
}

.release-list article {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.release-list span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 820;
}

.release-list strong {
  color: var(--ink);
  font-size: 1.14rem;
}

.release-list p {
  margin: 0;
}

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

.timeline article {
  min-height: 230px;
  padding: 20px;
}

.timeline article[data-state="done"] {
  border-color: rgba(26, 165, 154, 0.55);
}

.timeline article[data-state="active"] {
  border-color: rgba(217, 151, 23, 0.62);
  background: #fffaf0;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--paper-alt);
  color: var(--graphite);
  font-weight: 840;
}

.timeline h3 {
  margin-top: 34px;
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visual-copy {
  display: grid;
  gap: 14px;
}

.wide-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0c1422;
  box-shadow: var(--shadow);
}

.wide-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.vertical-stack div {
  padding: 20px;
  font-weight: 720;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta div {
  max-width: 760px;
}

.final-cta p {
  margin-top: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Commercial ClubAL site */
.commercial-page {
  --commercial-page: #f4f8f7;
  --commercial-ink: #101926;
  --commercial-muted: #4d6074;
  --commercial-soft: #e8f1ef;
  --commercial-line: #d6e4e1;
  --commercial-teal: #0d8d7d;
  --commercial-green: #2bbf85;
  --commercial-blue: #1f6fb8;
  --commercial-gold: #c89222;
  --commercial-night: #0a1422;
  background:
    linear-gradient(180deg, #f8fbfb 0%, var(--commercial-page) 44%, #eef5f3 100%);
}

.commercial-page.theme-night,
body.theme-night.commercial-page {
  --commercial-page: #08111f;
  --commercial-ink: #edf6ff;
  --commercial-muted: #b7c8d8;
  --commercial-soft: #111e31;
  --commercial-line: #22384b;
  background:
    linear-gradient(180deg, #08111f 0%, #0d1a2a 48%, #0a1422 100%);
}

.commercial-topbar {
  width: min(1280px, calc(100% - 40px));
  border-bottom: 1px solid rgba(214, 228, 225, 0.82);
}

.commercial-brand .brand-icon {
  width: 46px;
  height: 46px;
}

.commercial-nav {
  gap: 15px;
}

.commercial-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.clubal-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: min(760px, calc(100svh - 78px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0 44px;
}

.clubal-hero-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.clubal-hero-logo {
  width: min(220px, 52vw);
  height: auto;
}

.clubal-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--commercial-ink);
  font-size: clamp(3.1rem, 6.9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.clubal-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--commercial-muted);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  line-height: 1.45;
}

.clubal-product-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
}

.operation-window,
.tv-preview,
.phone-preview,
.mini-dashboard,
.mini-tv,
.mini-phone {
  border: 1px solid var(--commercial-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(16, 25, 38, 0.15);
}

body.theme-night .operation-window,
body.theme-night .tv-preview,
body.theme-night .phone-preview,
body.theme-night .mini-dashboard,
body.theme-night .mini-tv,
body.theme-night .mini-phone,
body.theme-night .impact-strip article,
body.theme-night .module-workbench,
body.theme-night .module-tab,
body.theme-night .module-detail,
body.theme-night .flow-rail article,
body.theme-night .segment-grid article,
body.theme-night .segment-grid button,
body.theme-night .trust-list article,
body.theme-night .update-list article,
body.theme-night .release-channels article,
body.theme-night .contact-card,
body.theme-night .contact-form {
  background: #101c2d;
  border-color: #22384b;
  color: #edf6ff;
}

.operation-window {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  padding: 16px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--commercial-line);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #8aa4b8;
}

.window-bar strong {
  margin-left: 8px;
  color: var(--commercial-ink);
  font-size: 0.9rem;
}

.operation-grid {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.operation-grid article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-left: 4px solid var(--commercial-teal);
  background: var(--commercial-soft);
}

.operation-grid span,
.operation-grid em,
.mini-dashboard span,
.mini-tv span,
.mini-phone span,
.phone-preview span {
  color: var(--commercial-teal);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 840;
  text-transform: uppercase;
}

.operation-grid strong,
.phone-preview b {
  color: var(--commercial-ink);
  font-size: 1rem;
}

.operation-grid em {
  color: var(--commercial-blue);
}

.tv-preview {
  position: absolute;
  right: 0;
  top: 34px;
  z-index: 1;
  width: min(78%, 560px);
  margin: 0;
  overflow: hidden;
}

.tv-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.tv-preview figcaption {
  padding: 12px 14px;
  color: var(--commercial-muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.phone-preview {
  position: absolute;
  right: 26px;
  bottom: 0;
  z-index: 3;
  width: 214px;
  min-height: 330px;
  padding: 20px 14px 16px;
  border: 9px solid var(--commercial-night);
  background: #f7fafc;
}

.phone-speaker {
  width: 54px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #51647d;
}

.phone-preview > strong {
  display: block;
  color: var(--commercial-ink);
  font-size: 1.16rem;
  margin-bottom: 14px;
}

.phone-preview article {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--commercial-line);
  border-radius: 8px;
  background: #fff;
}

.phone-preview small {
  color: var(--commercial-muted);
}

.commercial-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
  border-top: 1px solid var(--commercial-line);
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 34px;
}

.impact-strip article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--commercial-line);
  border-radius: 8px;
  background: #ffffff;
}

.impact-strip strong {
  color: var(--commercial-ink);
  font-size: 1.08rem;
}

.impact-strip span,
.module-detail p,
.flow-rail p,
.segment-grid p,
.trust-copy p,
.trust-list span,
.update-feature p,
.update-list span,
.release-channels p,
.contact-card p,
.contact-form p,
.commercial-heading p {
  color: var(--commercial-muted);
}

.commercial-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 34px;
}

.commercial-heading span,
.trust-copy span,
.release-channels span,
.update-feature span {
  color: var(--commercial-teal);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commercial-heading h2,
.trust-copy h2,
.contact-card h2 {
  margin: 0;
  color: var(--commercial-ink);
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.commercial-heading p,
.trust-copy p,
.contact-card p {
  margin: 0;
  font-size: 1.05rem;
}

.module-workbench {
  display: grid;
  grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--commercial-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.module-tabs {
  display: grid;
  gap: 10px;
}

.module-tab {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--commercial-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--commercial-ink);
  font: inherit;
  font-weight: 820;
  text-align: left;
  cursor: pointer;
}

.module-tab span,
.flow-rail article > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--commercial-soft);
  color: var(--commercial-teal);
  font-size: 0.84rem;
  font-weight: 900;
}

.module-tab.is-active,
.module-tab[aria-selected="true"] {
  border-color: rgba(13, 141, 125, 0.72);
  background: #f4fffb;
}

.module-detail {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 246px;
  padding: 26px;
  border: 1px solid var(--commercial-line);
  border-radius: 8px;
  background: #ffffff;
}

.module-detail span {
  color: var(--commercial-teal);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.module-detail h3 {
  margin: 10px 0 10px;
  color: var(--commercial-ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.module-detail strong {
  display: block;
  max-width: 720px;
  color: var(--commercial-ink);
  font-size: 1.1rem;
  line-height: 1.35;
}

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

.mini-dashboard,
.mini-tv,
.mini-phone {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
  box-shadow: none;
}

.mini-dashboard b,
.mini-tv b,
.mini-phone b {
  color: var(--commercial-ink);
}

.mini-dashboard small,
.mini-tv small,
.mini-phone small {
  color: var(--commercial-muted);
}

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

.flow-rail article,
.segment-grid article,
.segment-grid button,
.trust-list article,
.update-list article,
.release-channels article,
.contact-card,
.contact-form {
  border: 1px solid var(--commercial-line);
  border-radius: 8px;
  background: #ffffff;
}

.flow-rail article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 22px;
}

.flow-rail h3,
.segment-grid h3,
.release-channels h3 {
  margin: 0;
  color: var(--commercial-ink);
  font-size: 1.22rem;
}

.flow-rail p,
.segment-grid p,
.release-channels p {
  margin: 0;
}

.proof-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 16px;
  align-items: start;
}

.proof-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--commercial-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(16, 25, 38, 0.11);
}

.proof-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.proof-gallery figcaption {
  padding: 14px 16px;
  color: var(--commercial-muted);
  font-weight: 720;
}

.proof-main img {
  aspect-ratio: 16 / 8.6;
}

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

.segment-grid article {
  min-height: 210px;
  padding: 22px;
}

.segment-grid button {
  min-height: 210px;
  padding: 22px;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: center;
}

.trust-copy {
  display: grid;
  gap: 14px;
}

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

.trust-list article {
  display: grid;
  gap: 8px;
  min-height: 146px;
  padding: 20px;
}

.trust-list strong {
  color: var(--commercial-ink);
}

.commercial-updates {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 16px;
}

.update-feature {
  display: grid;
  align-content: space-between;
  min-height: 340px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 141, 125, 0.94), rgba(10, 20, 34, 0.98));
  color: #ffffff;
}

.update-feature span {
  color: #98f1de;
}

.update-feature h3 {
  max-width: 560px;
  margin: 28px 0 14px;
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

.update-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.update-list {
  display: grid;
  gap: 12px;
}

.update-list article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.update-list strong {
  color: var(--commercial-teal);
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

.release-channels article {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 260px;
  padding: 24px;
}

.release-channels em {
  justify-self: start;
  color: var(--commercial-gold);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card,
.contact-form {
  padding: 26px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions small {
  color: var(--commercial-muted);
  font-weight: 720;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-brief {
  display: grid;
  gap: 12px;
  margin: 2px 0;
  padding: 16px;
  border: 1px solid var(--commercial-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
}

.contact-brief summary {
  cursor: pointer;
  color: var(--commercial-ink);
  font-size: 0.86rem;
  font-weight: 860;
  list-style-position: inside;
}

.contact-brief summary::marker {
  color: var(--commercial-teal);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--commercial-ink);
  font-size: 0.9rem;
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--commercial-line);
  border-radius: 6px;
  background: #f9fcfb;
  color: var(--commercial-ink);
  font: inherit;
  font-size: 0.96rem;
  padding: 11px 12px;
}

body.theme-night .contact-form input,
body.theme-night .contact-form select,
body.theme-night .contact-form textarea,
body.theme-night .contact-brief,
body.theme-night .phone-preview article {
  background: #08111f;
  border-color: #22384b;
  color: #edf6ff;
}

body.theme-night .contact-brief summary {
  color: #edf6ff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form p {
  margin: 0;
  font-size: 0.9rem;
}

.commercial-footer {
  width: min(1200px, calc(100% - 40px));
}

body.theme-night .window-bar strong,
body.theme-night .operation-grid strong,
body.theme-night .phone-preview > strong,
body.theme-night .phone-preview b,
body.theme-night .commercial-heading h2,
body.theme-night .trust-copy h2,
body.theme-night .contact-card h2,
body.theme-night .module-detail h3,
body.theme-night .module-detail strong,
body.theme-night .flow-rail h3,
body.theme-night .segment-grid h3,
body.theme-night .release-channels h3,
body.theme-night .operation-grid strong,
body.theme-night .impact-strip strong,
body.theme-night .trust-list strong,
body.theme-night .contact-form label,
body.theme-night .mini-dashboard b,
body.theme-night .mini-tv b,
body.theme-night .mini-phone b {
  color: #edf6ff;
}

.pemse-page {
  --pemse-ink: #111827;
  --pemse-night: #0d1623;
  --pemse-deep: #132235;
  --pemse-green: #0f7460;
  --pemse-lime: #7bc96f;
  --pemse-gold: #d3a43b;
  --pemse-sky: #2d75c8;
  --pemse-paper: #ffffff;
  --pemse-soft: #edf4f1;
  background:
    radial-gradient(circle at top left, rgba(123, 201, 111, 0.18), transparent 36rem),
    linear-gradient(180deg, #f4f8f6 0%, #eef4f8 42%, #f9fbfd 100%);
}

.pemse-gate {
  min-height: 100vh;
}

.pemse-access-main {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.5fr);
  gap: 18px;
  align-items: stretch;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 76px;
}

.pemse-access-panel,
.pemse-access-support {
  border: 1px solid rgba(19, 34, 53, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

.pemse-access-panel {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
}

.pemse-access-panel h1 {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--pemse-night);
  font-size: clamp(2.05rem, 3.6vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.pemse-access-panel p {
  max-width: 560px;
  margin: 20px 0 0;
  color: #3f5167;
  font-size: 1.04rem;
}

.pemse-access-note {
  font-weight: 720;
}

.pemse-access-note a {
  color: var(--pemse-green);
  text-decoration: none;
}

.pemse-access-note a:hover {
  text-decoration: underline;
}

.pemse-access-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(19, 34, 53, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 138, 114, 0.08), rgba(255, 255, 255, 0.9)),
    #fff;
}

.pemse-access-form label {
  color: #172437;
  font-weight: 820;
}

.pemse-access-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #c5d1de;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  font: inherit;
}

.pemse-access-form input:focus {
  border-color: rgba(18, 138, 114, 0.72);
  outline: 3px solid rgba(18, 138, 114, 0.14);
}

.pemse-access-form button[disabled],
.pemse-access-form input[disabled] {
  cursor: not-allowed;
  opacity: 0.62;
}

.pemse-access-form.is-unsupported {
  border-color: rgba(217, 151, 23, 0.52);
  background: #fffaf0;
}

.pemse-access-form p {
  min-height: 2.8em;
  margin: 0;
  color: #526278;
  font-size: 0.9rem;
  line-height: 1.45;
}

.pemse-access-support {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
}

.pemse-access-support strong {
  color: var(--pemse-night);
  font-size: 1.25rem;
}

.pemse-access-support p {
  margin: 0;
  color: #40536a;
}

.pemse-access-support small {
  display: block;
  color: #65768a;
  font-size: 0.84rem;
  line-height: 1.5;
}

.pemse-topbar {
  background: rgba(244, 248, 246, 0.92);
}

.pemse-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(300px, 0.7fr);
  gap: 40px;
  align-items: center;
  width: min(var(--max-width), calc(100% - 40px));
  min-height: auto;
  margin: 0 auto;
  padding: 42px 0 48px;
}

.pemse-hero > *,
.pemse-progress-shell > *,
.executive-snapshot > *,
.evidence-carousel > *,
.next-steps > * {
  min-width: 0;
}

.pemse-orbit {
  position: absolute;
  inset: 2rem auto auto 44%;
  z-index: -1;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  opacity: 0.72;
  pointer-events: none;
}

.pemse-orbit span {
  position: absolute;
  inset: calc(var(--i, 0) * 34px);
  border: 1px solid rgba(18, 138, 114, 0.22);
  border-radius: 50%;
}

.pemse-orbit span:nth-child(1) {
  --i: 0;
}

.pemse-orbit span:nth-child(2) {
  --i: 1;
}

.pemse-orbit span:nth-child(3) {
  --i: 2;
}

.pemse-status-line,
.pemse-section-heading p {
  margin: 0;
  color: var(--pemse-green);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.pemse-hero-copy h1 {
  max-width: 850px;
  margin: 14px 0 0;
  color: var(--pemse-night);
  font-size: 4.65rem;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.pemse-lead {
  max-width: 770px;
  margin: 24px 0 0;
  color: #314155;
  font-size: clamp(1.08rem, 2vw, 1.44rem);
  line-height: 1.34;
  font-weight: 620;
  overflow-wrap: break-word;
}

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

.button.ghost {
  background: transparent;
  border-color: rgba(18, 138, 114, 0.35);
  color: var(--pemse-green);
}

.pemse-sound-note {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: #607086;
  font-size: 0.9rem;
}

.pemse-control-room {
  border: 1px solid rgba(19, 34, 53, 0.16);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.4);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.16);
}

.control-screen {
  overflow: hidden;
  border-radius: 7px;
  background: var(--pemse-night);
  color: #f8fafc;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.screen-header span {
  color: #d9f3ed;
  font-weight: 800;
}

.screen-header strong {
  color: var(--pemse-lime);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.control-flow {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.control-flow article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.control-flow span {
  color: var(--pemse-lime);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-flow strong,
.control-flow small {
  display: block;
}

.control-flow strong {
  margin-top: 7px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.control-flow small {
  margin-top: 6px;
  color: #b7c8d8;
  line-height: 1.35;
}

.control-screen dl,
.screen-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
}

.control-screen dl div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.control-screen dt {
  color: #9fb0c5;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.control-screen dd {
  margin: 5px 0 0;
  font-weight: 760;
}

.pemse-section {
  scroll-margin-top: 96px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.pemse-section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.pemse-section-heading h2,
.next-steps h2,
.pemse-final h2 {
  margin: 10px 0 0;
  color: var(--pemse-night);
  font-size: 2.7rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.pemse-section-heading span,
.next-steps p,
.pemse-final p {
  display: block;
  max-width: 760px;
  margin-top: 14px;
  color: #46576d;
  font-size: 1.02rem;
}

.pemse-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 26px;
}

.executive-snapshot {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-top: 22px;
}

.snapshot-copy h2 {
  margin: 10px 0 0;
  color: var(--pemse-night);
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.snapshot-copy span {
  display: block;
  margin-top: 14px;
  color: #46576d;
}

.snapshot-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(19, 34, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.snapshot-dashboard article {
  min-height: 126px;
  padding: 18px;
  border-radius: 7px;
  background: var(--pemse-night);
  color: #fff;
}

.snapshot-dashboard strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.snapshot-dashboard span {
  display: block;
  margin-top: 12px;
  color: #b9c8d8;
  font-size: 0.84rem;
  font-weight: 680;
}

.pemse-live-updates {
  border-top: 1px solid rgba(19, 34, 53, 0.08);
}

.updates-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(300px, 1fr);
  gap: 16px 18px;
  align-items: stretch;
}

.updates-current {
  position: relative;
  grid-row: 1 / span 2;
  isolation: isolate;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(123, 201, 111, 0.26), transparent 11rem),
    linear-gradient(145deg, #0d1623, #14233a);
  color: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

.updates-current p,
.updates-current small {
  color: #9edccf;
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.updates-current h3 {
  max-width: 440px;
  margin: 46px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.updates-current > span {
  display: block;
  max-width: 560px;
  margin-top: 18px;
  color: #dce8f2;
  font-size: 1.02rem;
  line-height: 1.65;
}

.updates-current small {
  display: block;
  margin-top: 24px;
}

.updates-list-header {
  display: flex;
  grid-column: 2;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 4px 0;
}

.updates-list-header strong {
  color: var(--pemse-night);
  font-size: 1rem;
  font-weight: 880;
}

.updates-list-header span {
  max-width: 440px;
  color: var(--pemse-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: right;
}

.signal-panel {
  position: absolute;
  inset: 22px 22px auto auto;
  display: flex;
  gap: 8px;
}

.signal-panel span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--pemse-lime);
  box-shadow: 0 0 24px rgba(123, 201, 111, 0.8);
  animation: pemseSignal 2.8s ease-in-out infinite;
}

.signal-panel span:nth-child(2) {
  animation-delay: 0.25s;
}

.signal-panel span:nth-child(3) {
  animation-delay: 0.5s;
}

.updates-list {
  display: grid;
  grid-column: 2;
  grid-template-columns: 1fr;
  gap: 10px;
}

.updates-list article {
  display: grid;
  grid-template-columns: minmax(118px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(19, 34, 53, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.updates-list strong {
  color: var(--pemse-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.updates-list span {
  color: var(--pemse-night);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.38;
}

.pemse-summary article,
.director-grid article,
.module-card,
.stage-detail,
.ti-grid a,
.public-boundary,
.next-steps,
.pemse-final,
.operator-preview,
.phone-preview,
.chart-card {
  border: 1px solid rgba(19, 34, 53, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.08);
}

.pemse-summary article {
  padding: 24px;
}

.pemse-summary span,
.module-card span {
  color: var(--pemse-green);
  font-weight: 880;
}

.pemse-summary h2,
.director-grid h3,
.module-card h3,
.public-boundary h3 {
  margin: 10px 0;
  color: var(--pemse-night);
}

.pemse-summary p,
.director-grid p,
.module-card p,
.public-boundary li {
  color: #4a5b70;
}

.pemse-progress {
  border-top: 1px solid rgba(19, 34, 53, 0.1);
  border-bottom: 1px solid rgba(19, 34, 53, 0.1);
}

.pemse-progress-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 20px;
  align-items: stretch;
}

.progress-meter {
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #dfe8e5;
}

.progress-meter span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pemse-green), var(--pemse-gold));
}

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

.pemse-stage {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(19, 34, 53, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--pemse-night);
  text-align: left;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 820;
  cursor: pointer;
}

.pemse-stage span {
  display: block;
  margin-bottom: 14px;
  color: #64748b;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pemse-stage.active {
  border-color: rgba(18, 138, 114, 0.42);
  box-shadow: inset 0 0 0 2px rgba(18, 138, 114, 0.08);
}

.pemse-stage[aria-selected="true"] {
  background: var(--pemse-night);
  color: #fff;
}

.pemse-stage[aria-selected="true"] span {
  color: var(--pemse-lime);
}

.stage-detail {
  padding: 26px;
}

.stage-detail p {
  margin: 0;
  color: var(--pemse-green);
  font-size: 0.75rem;
  font-weight: 860;
  text-transform: uppercase;
}

.stage-detail h3 {
  margin: 12px 0;
  color: var(--pemse-night);
  font-size: 2rem;
  line-height: 1.02;
}

.stage-detail span {
  display: block;
  color: #46576d;
}

.stage-detail strong {
  display: block;
  margin-top: 18px;
  color: var(--pemse-green);
}

.director-grid,
.module-rail,
.ti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.director-grid article,
.module-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.director-grid article {
  position: relative;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.director-grid article:hover {
  border-color: rgba(18, 138, 114, 0.36);
  transform: translateY(-1px);
}

.director-grid button {
  margin-top: auto;
  border: 1px solid rgba(18, 138, 114, 0.3);
  border-radius: 6px;
  padding: 10px 12px;
  background: #f5fbf9;
  color: var(--pemse-green);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.director-grid article.is-highlighted {
  border-color: rgba(211, 164, 59, 0.72);
  background: #fffaf0;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.1);
}

.director-grid article.is-highlighted button {
  background: var(--pemse-night);
  border-color: var(--pemse-night);
  color: #fff;
}

.director-detail {
  position: relative;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(211, 164, 59, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(211, 164, 59, 0.08), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: 0 18px 56px rgba(17, 24, 39, 0.08);
}

.director-detail::before {
  content: "Área selecionada";
  position: absolute;
  right: 18px;
  top: -13px;
  padding: 4px 10px;
  border: 1px solid rgba(211, 164, 59, 0.42);
  border-radius: 999px;
  background: #fffaf0;
  color: #8a6513;
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
}

.director-detail p {
  margin: 0;
  color: var(--pemse-green);
  font-size: 0.75rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.director-detail h3 {
  margin: 10px 0 18px;
  color: var(--pemse-night);
  font-size: 1.65rem;
  line-height: 1.12;
}

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

.director-detail-grid div {
  padding: 16px;
  border: 1px solid rgba(19, 34, 53, 0.1);
  border-radius: 8px;
  background: #f8fbfa;
}

.director-detail-grid strong,
.director-detail-grid span {
  display: block;
}

.director-detail-grid strong {
  color: #172437;
  font-size: 0.86rem;
}

.director-detail-grid span {
  margin-top: 8px;
  color: #4d5f73;
  font-size: 0.94rem;
}

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

.operational-story {
  padding-top: 24px;
}

.story-panel {
  padding: 32px;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(13, 22, 35, 0.96), rgba(19, 34, 53, 0.92)),
    var(--pemse-night);
  color: #fff;
}

.story-panel h2 {
  margin: 10px 0 0;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.story-steps article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.story-steps span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pemse-lime);
  color: var(--pemse-night);
  font-weight: 880;
}

.story-steps strong {
  display: block;
  margin-top: 18px;
  font-size: 1.05rem;
}

.story-steps p {
  margin: 10px 0 0;
  color: #c7d4e3;
}

.module-card.current {
  background:
    linear-gradient(160deg, rgba(18, 138, 114, 0.12), rgba(255, 255, 255, 0.9)),
    #fff;
}

.module-card strong {
  margin-top: auto;
  color: var(--pemse-green);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.evidence-section {
  border-top: 1px solid rgba(19, 34, 53, 0.1);
}

.evidence-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 16px;
  align-items: stretch;
}

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

.evidence-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 20px;
  align-items: center;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(19, 34, 53, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 138, 114, 0.08), rgba(45, 117, 200, 0.06)),
    #fff;
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.1);
}

.evidence-slide-duo {
  align-items: stretch;
}

.evidence-slide[aria-hidden="true"] {
  display: none;
}

.evidence-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.evidence-copy span {
  color: var(--pemse-green);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-copy h3 {
  margin: 0;
  color: var(--pemse-night);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.evidence-copy p {
  margin: 0;
  color: #33445a;
  font-size: 1rem;
  line-height: 1.65;
}

.evidence-copy ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-copy li {
  position: relative;
  padding-left: 18px;
  color: #526278;
  line-height: 1.5;
}

.evidence-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pemse-green);
}

.evidence-note {
  margin-top: 4px !important;
  padding: 12px 14px;
  border-left: 3px solid var(--pemse-gold);
  background: rgba(211, 164, 59, 0.1);
  color: #304156 !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

.evidence-tabs {
  display: grid;
  gap: 12px;
}

.evidence-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-content: start;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(19, 34, 53, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--pemse-night);
  text-align: left;
  box-shadow: 0 14px 42px rgba(17, 24, 39, 0.07);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.evidence-tab:hover,
.evidence-tab:focus-visible {
  border-color: rgba(18, 138, 114, 0.45);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.11);
  transform: translateY(-1px);
}

.evidence-tab.is-active {
  border-color: rgba(18, 138, 114, 0.52);
  background:
    linear-gradient(140deg, rgba(18, 138, 114, 0.12), rgba(211, 164, 59, 0.08)),
    #fff;
}

.evidence-tab span {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--pemse-night);
  color: var(--pemse-lime);
  font-size: 0.8rem;
  font-weight: 900;
}

.evidence-tab strong {
  align-self: end;
  font-size: 1.02rem;
}

.evidence-tab small {
  color: #5c6b7e;
  font-size: 0.88rem;
  line-height: 1.35;
}

.evidence-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 34, 53, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.1);
}

.evidence-shot-duo {
  display: grid;
  align-content: center;
  gap: 14px;
}

.evidence-shot-duo .evidence-shot {
  align-self: stretch;
}

.evidence-shot-duo .evidence-shot img {
  aspect-ratio: 16 / 6.6;
}

.evidence-shot.wide {
  align-self: start;
  display: grid;
  grid-template-rows: auto auto;
}

.evidence-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  min-height: 0;
  object-fit: cover;
  object-position: top left;
  background: #eaf4fb;
}

.evidence-shot figcaption {
  padding: 14px 16px;
  color: #46576d;
}

.evidence-shot figcaption strong {
  color: var(--pemse-night);
}

.operator-preview,
.phone-preview {
  padding: 16px;
}

.evidence-slide .operator-preview,
.evidence-slide .phone-preview {
  position: static;
  inset: auto;
  width: 100%;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.operator-chrome {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 7px 7px 0 0;
  background: #dfe6ee;
}

.operator-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9aa8b8;
}

.operator-body {
  overflow: hidden;
  border: 1px solid #d7e0ea;
  border-top: 0;
  border-radius: 0 0 7px 7px;
  background: #f8fafc;
}

.operator-body header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: #0d4d73;
  color: #fff;
}

.operator-body header span {
  color: #bee6dc;
}

.operator-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 12px 0;
}

.operator-tabs span {
  padding: 7px 10px;
  border-radius: 6px 6px 0 0;
  background: #e7eef6;
  color: #213047;
  font-size: 0.78rem;
  font-weight: 760;
}

.operator-list {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.operator-list article {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-left: 4px solid var(--pemse-green);
  background: #fff;
}

.operator-list small {
  color: #64748b;
}

.operator-preview p,
.phone-preview p {
  margin: 12px 0 0;
  color: #526278;
  font-size: 0.92rem;
}

.phone-preview {
  display: grid;
  justify-items: center;
}

.phone-frame {
  position: relative;
  width: min(245px, 100%);
  padding: 10px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, #172235 0%, #060c17 46%, #182437 100%);
  box-shadow:
    0 28px 62px rgba(17, 24, 39, 0.28),
    0 10px 26px rgba(17, 24, 39, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 13px 12px auto;
  height: 42px;
  border-radius: 25px 25px 10px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.phone-speaker {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 5px;
  margin: 4px auto 10px;
  border-radius: 99px;
  background: #34445b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.phone-screen {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 430px;
  border-radius: 24px;
  border: 1px solid rgba(13, 22, 35, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 138, 114, 0.12), transparent 34%),
    #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.phone-screen header {
  display: grid;
  gap: 3px;
  padding: 18px;
  background: var(--pemse-night);
  color: #fff;
}

.phone-screen header span {
  color: var(--pemse-lime);
  font-size: 0.82rem;
  font-weight: 820;
}

.phone-screen section {
  margin: 12px;
  padding: 14px;
  border: 1px solid #dbe5ef;
  border-radius: 8px;
  background: #fff;
}

.phone-screen p {
  margin: 0 0 4px;
  color: var(--pemse-green);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-screen h3 {
  margin: 0 0 8px;
  color: #142034;
  font-size: 1rem;
}

.phone-status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e0f6ea;
  color: #0f7a58;
  font-size: 0.78rem;
  font-weight: 840;
}

.phone-screen nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px;
}

.phone-screen button {
  border: 0;
  border-radius: 8px;
  padding: 10px 6px;
  background: #e8f0f8;
  color: #213047;
  font-size: 0.76rem;
  font-weight: 760;
}

body.theme-night.pemse-page .phone-frame {
  background:
    linear-gradient(145deg, #263650 0%, #050b15 48%, #192942 100%);
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.46),
    0 16px 34px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

body.theme-night.pemse-page .phone-speaker {
  background: #4b5f7a;
}

body.theme-night.pemse-page .phone-screen {
  border-color: rgba(148, 163, 184, 0.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(36, 211, 159, 0.16), transparent 28%),
    linear-gradient(180deg, #0d1727 0%, #101c2d 46%, #0d1623 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -24px 40px rgba(0, 0, 0, 0.2);
}

body.theme-night.pemse-page .phone-screen header {
  background: rgba(4, 10, 18, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

body.theme-night.pemse-page .phone-screen section {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(237, 245, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

body.theme-night.pemse-page .phone-screen h3,
body.theme-night.pemse-page .phone-screen section > span:not(.phone-status) {
  color: #f4f8ff;
}

body.theme-night.pemse-page .phone-screen p,
body.theme-night.pemse-page .phone-screen header span {
  color: var(--pemse-lime);
}

body.theme-night.pemse-page .phone-status {
  background: rgba(48, 211, 149, 0.2);
  color: #b9ffd8;
}

body.theme-night.pemse-page .phone-screen button {
  background: rgba(237, 245, 255, 0.12);
  color: #edf5ff;
  box-shadow: inset 0 0 0 1px rgba(237, 245, 255, 0.08);
}

.executive-chart {
  padding-top: 26px;
}

.focus-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: 18px;
  align-items: stretch;
}

.chart-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.chart-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 54px;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.chart-row::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--pemse-green), var(--pemse-gold)) 0 / var(--bar) 100% no-repeat,
    #dce8e5;
}

.chart-row span {
  color: #304156;
  font-weight: 760;
}

.chart-row strong {
  color: var(--pemse-night);
  text-align: right;
}

.chart-row.is-active span,
.chart-row:hover span,
.chart-row:focus-visible span {
  color: var(--pemse-green);
}

.chart-row.is-active strong,
.chart-row:hover strong,
.chart-row:focus-visible strong {
  color: var(--pemse-green);
}

.chart-row:focus-visible {
  outline: 2px solid rgba(18, 138, 114, 0.42);
  outline-offset: 4px;
}

.focus-detail {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(19, 34, 53, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 138, 114, 0.09), rgba(211, 164, 59, 0.08)),
    #fff;
  box-shadow: 0 18px 56px rgba(17, 24, 39, 0.08);
}

.focus-detail p {
  margin: 0;
  color: var(--pemse-green);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-detail h3 {
  margin: 0;
  color: var(--pemse-night);
  font-size: 1.82rem;
  line-height: 1.06;
}

.focus-detail div {
  padding-top: 14px;
  border-top: 1px solid rgba(19, 34, 53, 0.1);
}

.focus-detail strong,
.focus-detail span {
  display: block;
}

.focus-detail strong {
  color: var(--pemse-night);
  font-size: 0.86rem;
}

.focus-detail span {
  margin-top: 6px;
  color: #4d5f73;
  line-height: 1.45;
}

.focus-detail small {
  display: block;
  margin-top: 4px;
  color: #6a7b8f;
  font-weight: 680;
}

.ti-grid a {
  padding: 20px;
  color: inherit;
  text-decoration: none;
}

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

.ti-grid span {
  margin-top: 8px;
  color: #56677b;
}

.public-boundary {
  margin-top: 16px;
  padding: 24px;
}

.public-boundary ul,
.next-steps ol {
  margin: 16px 0 0;
  padding-left: 22px;
}

.public-boundary li + li,
.next-steps li + li {
  margin-top: 8px;
}

.feedback-section {
  padding-top: 38px;
}

.feedback-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.56fr);
  gap: 22px;
  align-items: stretch;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 138, 114, 0.08), rgba(13, 22, 35, 0.04)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 56px rgba(17, 24, 39, 0.09);
}

.feedback-panel h2 {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--pemse-night);
  font-size: clamp(2rem, 4.2vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.feedback-panel > div > span {
  display: block;
  max-width: 720px;
  margin-top: 18px;
  color: #41546b;
  font-size: 1.04rem;
  line-height: 1.65;
}

.feedback-perks {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  max-width: 760px;
}

.feedback-perks span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 138, 114, 0.2);
  border-radius: 8px;
  color: var(--pemse-night);
  font-size: 0.88rem;
  font-weight: 860;
  line-height: 1.42;
  padding: 12px;
}

.feedback-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: var(--pemse-night);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.feedback-card strong {
  color: var(--pemse-lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-card > a {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 820;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.feedback-card p {
  margin: 0;
  color: #c9d7e6;
  line-height: 1.55;
}

.feedback-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}

.feedback-actions .button {
  width: 100%;
  justify-content: center;
  min-height: 44px;
  text-align: center;
}

.feedback-actions .whatsapp-action {
  display: inline-flex;
  align-items: center;
}

.feedback-card small {
  min-height: 1.3em;
  color: #9fb1c5;
  font-size: 0.84rem;
}

.next-steps {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 1fr);
  gap: 26px;
  padding: 30px;
}

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

.next-step-board article {
  padding: 18px;
  border: 1px solid rgba(19, 34, 53, 0.1);
  border-radius: 8px;
  background: #f8fbfa;
}

.next-step-board span {
  color: var(--pemse-green);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-step-board h3 {
  margin: 10px 0 8px;
  color: var(--pemse-night);
  font-size: 1.12rem;
  line-height: 1.16;
}

.next-step-board p {
  margin: 0;
  color: #4d5f73;
  font-size: 0.94rem;
}

.next-step-board strong {
  display: block;
  margin-top: 12px;
  color: #0f7460;
  font-size: 0.9rem;
}

.pemse-final {
  padding: 42px;
  text-align: center;
}

.pemse-final p {
  margin-inline: auto;
}

.pemse-final .pemse-actions {
  justify-content: center;
}

body.theme-night.pemse-page .updates-list-header strong,
body.theme-night.pemse-page .updates-list article strong,
body.theme-night.pemse-page .stage-detail p,
body.theme-night.pemse-page .stage-detail strong,
body.theme-night.pemse-page .focus-detail p,
body.theme-night.pemse-page .director-detail p,
body.theme-night.pemse-page .evidence-copy span,
body.theme-night.pemse-page .next-step-board span,
body.theme-night.pemse-page .module-card span,
body.theme-night.pemse-page .pemse-summary span,
body.theme-night.pemse-page .chart-row.is-active span,
body.theme-night.pemse-page .chart-row:hover span,
body.theme-night.pemse-page .chart-row:focus-visible span,
body.theme-night.pemse-page .chart-row.is-active strong,
body.theme-night.pemse-page .chart-row:hover strong,
body.theme-night.pemse-page .chart-row:focus-visible strong {
  color: var(--pemse-lime);
}

body.theme-night.pemse-page .updates-list-header span,
body.theme-night.pemse-page .updates-list article span,
body.theme-night.pemse-page .stage-detail span,
body.theme-night.pemse-page .focus-detail span,
body.theme-night.pemse-page .focus-detail small,
body.theme-night.pemse-page .director-grid p,
body.theme-night.pemse-page .director-detail-grid span,
body.theme-night.pemse-page .evidence-copy p,
body.theme-night.pemse-page .evidence-copy li,
body.theme-night.pemse-page .evidence-tab small,
body.theme-night.pemse-page .module-card p,
body.theme-night.pemse-page .public-boundary li,
body.theme-night.pemse-page .ti-grid span,
body.theme-night.pemse-page .next-step-board p,
body.theme-night.pemse-page .chart-row span,
body.theme-night.pemse-page .evidence-shot figcaption,
body.theme-night.pemse-page .operator-preview p,
body.theme-night.pemse-page .phone-preview p {
  color: #c5d4e7;
}

body.theme-night.pemse-page .updates-current > span,
body.theme-night.pemse-page .feedback-panel > div > span,
body.theme-night.pemse-page .feedback-perks span,
body.theme-night.pemse-page .pemse-summary p {
  color: #d3e0ef;
}

body.theme-night.pemse-page .stage-detail h3,
body.theme-night.pemse-page .focus-detail h3,
body.theme-night.pemse-page .focus-detail strong,
body.theme-night.pemse-page .module-card h3,
body.theme-night.pemse-page .director-grid h3,
body.theme-night.pemse-page .director-detail-grid strong,
body.theme-night.pemse-page .evidence-copy h3,
body.theme-night.pemse-page .evidence-tab strong,
body.theme-night.pemse-page .public-boundary h3,
body.theme-night.pemse-page .ti-grid strong,
body.theme-night.pemse-page .next-step-board h3,
body.theme-night.pemse-page .next-step-board strong,
body.theme-night.pemse-page .pemse-summary h2,
body.theme-night.pemse-page .chart-row strong,
body.theme-night.pemse-page .evidence-shot figcaption strong,
body.theme-night.pemse-page .feedback-panel h2 {
  color: #f5f9ff;
}

body.theme-night.pemse-page .next-step-board article,
body.theme-night.pemse-page .feedback-perks span {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(237, 245, 255, 0.06);
}

body.theme-night.pemse-page .pemse-stage,
body.theme-night.pemse-page .director-detail-grid div,
body.theme-night.pemse-page .evidence-tab,
body.theme-night.pemse-page .evidence-slide,
body.theme-night.pemse-page .evidence-shot {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(237, 245, 255, 0.06);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

body.theme-night.pemse-page .pemse-stage {
  color: #edf5ff;
}

body.theme-night.pemse-page .pemse-stage span {
  color: #97abc1;
}

body.theme-night.pemse-page .pemse-stage[aria-selected="true"],
body.theme-night.pemse-page .director-grid article.is-highlighted,
body.theme-night.pemse-page .evidence-tab.is-active,
body.theme-night.pemse-page .module-card.current {
  border-color: rgba(123, 201, 111, 0.48);
  background:
    linear-gradient(145deg, rgba(18, 138, 114, 0.16), rgba(211, 164, 59, 0.08)),
    rgba(237, 245, 255, 0.08);
}

body.theme-night.pemse-page .director-grid button {
  border-color: rgba(123, 201, 111, 0.38);
  background: rgba(237, 245, 255, 0.08);
  color: var(--pemse-lime);
}

body.theme-night.pemse-page .director-grid article.is-highlighted button {
  background: #edf5ff;
  border-color: #edf5ff;
  color: #0d1623;
}

body.theme-night.pemse-page .director-detail {
  background:
    linear-gradient(145deg, rgba(211, 164, 59, 0.12), rgba(18, 138, 114, 0.08)),
    #101c2d;
}

body.theme-night.pemse-page .director-detail::before {
  border-color: rgba(211, 164, 59, 0.48);
  background: #1d2735;
  color: #f4cf73;
}

body.theme-night.pemse-page .evidence-note {
  background: rgba(211, 164, 59, 0.12);
  color: #e4edf8 !important;
}

body.theme-night.pemse-page .evidence-copy li::before {
  background: var(--pemse-lime);
}

body.theme-night.pemse-page .evidence-tab span {
  background: rgba(237, 245, 255, 0.9);
  color: #0d1623;
}

body.theme-night.pemse-page .evidence-tab.is-active span {
  background: var(--pemse-lime);
  color: #0d1623;
}

body.theme-night.pemse-page .chart-row::before {
  background:
    linear-gradient(90deg, var(--pemse-green), var(--pemse-gold)) 0 / var(--bar) 100% no-repeat,
    rgba(237, 245, 255, 0.12);
}

body.theme-night.pemse-page .pemse-final {
  background:
    radial-gradient(circle at 50% 0%, rgba(123, 201, 111, 0.12), transparent 34rem),
    linear-gradient(135deg, rgba(16, 28, 45, 0.96), rgba(8, 17, 31, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.pemse-page.meeting-mode .topbar,
.pemse-page.meeting-mode .pemse-summary,
.pemse-page.meeting-mode .pemse-ti,
.pemse-page.meeting-mode .footer {
  display: none;
}

.pemse-page.meeting-mode .pemse-hero {
  min-height: 46svh;
}

@keyframes pemsePulse {
  0%,
  100% {
    opacity: 0.66;
  }

  50% {
    opacity: 1;
  }
}

@keyframes pemseSignal {
  0%,
  100% {
    opacity: 0.36;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.pemse-footer {
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: var(--pemse-night);
  color: #c8d6e4;
}

.pemse-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pemse-footer-brand img {
  width: 118px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.26));
}

.pemse-footer-brand span {
  color: #dce7f2;
  font-weight: 760;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  body.pemse-page:not(.pemse-gate) .pemse-topbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.pemse-page:not(.pemse-gate) .pemse-topbar .brand {
    grid-column: 1 / -1;
    min-width: 0;
  }

  body.pemse-page:not(.pemse-gate) .pemse-topbar .nav-action,
  body.pemse-page:not(.pemse-gate) .pemse-topbar .theme-toggle {
    width: 100%;
  }

  .hero,
  .split-section,
  .visual-section,
  .artifact-board,
  .clubal-hero,
  .module-workbench,
  .proof-gallery,
  .trust-section,
  .commercial-updates,
  .contact-section,
  .pemse-access-main,
  .pemse-access-panel,
  .pemse-hero,
  .pemse-progress-shell,
  .next-steps,
  .executive-snapshot,
  .focus-map,
  .updates-board,
  .updates-list-header,
  .feedback-panel,
  .evidence-carousel,
  .evidence-slide {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-product {
    min-height: auto;
  }

  .agenda-frame,
  .weather-frame {
    position: relative;
    width: 100%;
  }

  .weather-frame {
    margin-top: 14px;
  }

  .commercial-topbar {
    align-items: center;
  }

  .clubal-hero {
    min-height: auto;
    padding-top: 38px;
  }

  .clubal-product-stage {
    gap: 14px;
    min-height: auto;
  }

  .operation-window,
  .tv-preview,
  .phone-preview {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .phone-preview {
    max-width: 280px;
    justify-self: center;
  }

  .feature-grid,
  .timeline,
  .distribution-grid,
  .docs-grid,
  .impact-strip,
  .flow-rail,
  .segment-grid,
  .release-channels,
  .trust-list,
  .module-visuals,
  .pemse-summary,
  .updates-board,
  .director-grid,
  .director-detail-grid,
  .module-rail,
  .ti-grid,
  .snapshot-dashboard,
  .next-step-board,
  .story-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .evidence-stage {
    min-height: auto;
  }

  .evidence-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .evidence-tab {
    min-height: 118px;
  }

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

@media (max-width: 680px) {
  .topbar {
    width: min(100% - 28px, var(--max-width));
  }

  .nav-action {
    display: none;
  }

  .section,
  .footer {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    padding-inline: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 20vw, 5rem);
  }

  .hero-text,
  .hero-facts,
  .weather-frame {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-product {
    min-height: auto;
  }

  .commercial-topbar {
    width: min(100% - 28px, var(--max-width));
  }

  .commercial-actions .nav-action {
    display: none;
  }

  .clubal-hero,
  .commercial-section {
    width: min(100% - 28px, var(--max-width));
  }

  .clubal-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.4rem);
    line-height: 0.96;
  }

  .clubal-hero p,
  .commercial-heading p,
  .contact-card p {
    font-size: 1rem;
  }

  .operation-grid article,
  .update-list article {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .feature-grid,
  .timeline,
  .distribution-grid,
  .docs-grid,
  .impact-strip,
  .flow-rail,
  .segment-grid,
  .release-channels,
  .trust-list,
  .module-tabs,
  .module-visuals,
  .commercial-updates,
  .proof-gallery,
  .contact-section,
  .pemse-summary,
  .updates-board,
  .updates-list,
  .director-grid,
  .director-detail-grid,
  .module-rail,
  .ti-grid,
  .pemse-stage-buttons,
  .snapshot-dashboard,
  .next-step-board,
  .story-steps {
    grid-template-columns: 1fr;
  }

  .evidence-slide {
    padding: 12px;
  }

  .evidence-copy h3 {
    font-size: clamp(1.72rem, 10vw, 2.6rem);
  }

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

  .evidence-tab {
    min-height: auto;
  }

  .updates-current,
  .updates-list article {
    min-height: auto;
  }

  .updates-current,
  .updates-list-header,
  .updates-list {
    grid-column: auto;
    grid-row: auto;
  }

  .updates-current h3 {
    margin-top: 42px;
  }

  .updates-list-header {
    display: block;
  }

  .updates-list-header span {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .updates-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feedback-panel {
    padding: 20px;
  }

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

  .feedback-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pemse-hero {
    width: min(100% - 28px, var(--max-width));
    min-height: auto;
    padding-top: 26px;
    overflow: hidden;
  }

  .pemse-hero-copy h1 {
    font-size: clamp(2.24rem, 12vw, 3.7rem);
    line-height: 1.04;
  }

  .pemse-hero-copy,
  .pemse-control-room,
  .control-screen {
    width: 100%;
    max-width: 100%;
  }

  .control-screen dl {
    grid-template-columns: 1fr;
  }

  .pemse-access-main {
    width: min(100% - 28px, var(--max-width));
    grid-template-columns: minmax(0, 1fr);
    padding: 34px 0 56px;
  }

  .pemse-access-panel {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 22px;
  }

  .pemse-access-panel > *,
  .pemse-access-support,
  .pemse-access-form,
  .pemse-access-support .feedback-actions,
  .pemse-access-support .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .pemse-access-panel h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.4vw, 2.2rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .pemse-section {
    width: min(100% - 28px, var(--max-width));
    padding: 58px 0;
  }

  .evidence-shot img {
    min-height: 0;
  }

  .evidence-shot.wide {
    grid-template-rows: auto auto;
  }

  .chart-row {
    grid-template-columns: 1fr 48px;
    gap: 8px;
  }

  .chart-row::before {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .deployment-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .final-cta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Official ClubAL commercial experience */
.official-site {
  --official-ink: #0c1725;
  --official-muted: #4d6278;
  --official-paper: #f7fbfa;
  --official-card: rgba(255, 255, 255, 0.9);
  --official-line: rgba(26, 55, 75, 0.14);
  --official-deep: #06111d;
  --official-deeper: #030914;
  --official-teal: #18a999;
  --official-teal-dark: #087a70;
  --official-green: #35ce8d;
  --official-gold: #d3a43b;
  --official-blue: #58a6ff;
  --official-shadow: 0 28px 90px rgba(8, 24, 35, 0.18);
  --official-soft-shadow: 0 18px 54px rgba(8, 24, 35, 0.1);
  --official-atmosphere-opacity: 0.22;
  --official-texture-opacity: 0.16;
  --official-header-offset: 92px;
  position: relative;
  color: var(--official-ink);
  padding-top: var(--official-header-offset);
  scroll-padding-top: calc(var(--official-header-offset) + 20px);
  background:
    radial-gradient(ellipse at 52% -16%, rgba(255, 255, 255, 0.86), transparent 36rem),
    conic-gradient(from 210deg at 88% 8%, rgba(88, 166, 255, 0.12), transparent 18%, rgba(53, 206, 141, 0.12), transparent 38%),
    radial-gradient(circle at top left, rgba(53, 206, 141, 0.2), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(211, 164, 59, 0.14), transparent 32rem),
    linear-gradient(180deg, #f7fbfa 0%, #eef6f5 48%, #f8fbfa 100%);
}

body.theme-night.official-site {
  --official-ink: #eef8ff;
  --official-muted: #b7cadb;
  --official-paper: #07101b;
  --official-card: rgba(14, 28, 46, 0.78);
  --official-line: rgba(165, 214, 202, 0.18);
  --official-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --official-soft-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  --official-atmosphere-opacity: 0.2;
  --official-texture-opacity: 0.12;
  background:
    radial-gradient(ellipse at 50% -18%, rgba(58, 127, 117, 0.28), transparent 38rem),
    conic-gradient(from 214deg at 86% 10%, rgba(88, 166, 255, 0.16), transparent 18%, rgba(53, 206, 141, 0.14), transparent 38%),
    radial-gradient(circle at 12% 0%, rgba(53, 206, 141, 0.16), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(211, 164, 59, 0.13), transparent 34rem),
    linear-gradient(180deg, #06111d 0%, #0a1626 52%, #07101b 100%);
}

.official-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--official-atmosphere-opacity);
  background-image:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.52), transparent 22rem),
    linear-gradient(rgba(13, 141, 125, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 141, 125, 0.1) 1px, transparent 1px),
    repeating-linear-gradient(135deg, rgba(9, 27, 37, var(--official-texture-opacity)) 0 1px, transparent 1px 8px);
  background-size: auto, 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.84) 42%, transparent 84%);
}

.official-site::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle at 18% 24%, rgba(53, 206, 141, 0.18), transparent 26rem),
    radial-gradient(circle at 76% 42%, rgba(88, 166, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 42% 82%, rgba(211, 164, 59, 0.1), transparent 28rem);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 72%, transparent 100%);
}

body.theme-night.official-site::before {
  background-image:
    radial-gradient(circle at 22% 18%, rgba(104, 227, 191, 0.14), transparent 22rem),
    linear-gradient(rgba(104, 227, 191, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 227, 191, 0.07) 1px, transparent 1px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, var(--official-texture-opacity)) 0 1px, transparent 1px 9px);
}

body.theme-night.official-site::after {
  opacity: 0.26;
  background:
    radial-gradient(circle at 18% 24%, rgba(104, 227, 191, 0.16), transparent 28rem),
    radial-gradient(circle at 76% 42%, rgba(88, 166, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 42% 82%, rgba(211, 164, 59, 0.12), transparent 30rem);
}

.official-site a {
  text-underline-offset: 0.18em;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  max-width: calc(100vw - 24px);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--official-deep);
  color: #fff;
  font-weight: 820;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.official-site .commercial-section,
.official-site #inicio {
  scroll-margin-top: calc(var(--official-header-offset) + 20px);
}

.official-site :is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(11, 118, 111, 0.78);
  outline-offset: 3px;
}

body.theme-night.official-site :is(a, button, input, select, textarea):focus-visible {
  outline-color: rgba(104, 227, 191, 0.9);
}

.official-topbar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(168px, max-content) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: 68px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(166, 214, 202, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 247, 244, 0.7)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 50px rgba(9, 27, 37, 0.08);
  backdrop-filter: blur(18px);
}

.official-topbar::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), transparent 34%, rgba(53, 206, 141, 0.12)),
    radial-gradient(circle at 16% 28%, rgba(255, 255, 255, 0.74), transparent 14rem);
}

body.theme-night .official-topbar {
  border-color: rgba(178, 229, 218, 0.14);
  background:
    linear-gradient(135deg, rgba(6, 17, 29, 0.92), rgba(15, 34, 54, 0.76)),
    rgba(6, 17, 29, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

body.theme-night .official-topbar::before {
  background:
    linear-gradient(120deg, rgba(104, 227, 191, 0.11), transparent 36%, rgba(88, 166, 255, 0.1)),
    radial-gradient(circle at 16% 28%, rgba(104, 227, 191, 0.12), transparent 14rem);
}

.official-brand {
  min-width: 0;
}

.official-brand .brand-icon {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
}

.official-brand strong {
  color: var(--official-ink);
}

.official-brand small,
.official-nav a,
.official-actions .nav-action,
.official-actions .theme-toggle {
  color: var(--official-muted);
}

.official-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.official-nav::-webkit-scrollbar {
  display: none;
}

.official-nav a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 9px 10px;
  font-size: 0.84rem;
  font-weight: 820;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.official-nav-short,
.official-nav-v2 a[data-short-label]::after {
  display: none;
}

.official-nav a:hover,
.official-nav a:focus-visible,
.official-nav a.is-current {
  background: rgba(24, 169, 153, 0.1);
  color: var(--official-ink);
  transform: translateY(-1px);
}

.official-nav a.is-current {
  box-shadow: inset 0 0 0 1px rgba(24, 169, 153, 0.18);
}

body.theme-night .official-nav a.is-current {
  background: rgba(104, 227, 191, 0.12);
  box-shadow: inset 0 0 0 1px rgba(104, 227, 191, 0.2);
}

.official-scroll-progress {
  position: absolute;
  right: 16px;
  bottom: 7px;
  left: 16px;
  height: 3px;
  border-radius: 999px;
  background: rgba(20, 49, 68, 0.09);
  overflow: hidden;
}

.official-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--official-teal), var(--official-green), var(--official-gold));
  transform: scaleX(var(--official-scroll-progress, 0));
  transform-origin: left center;
  transition: transform 90ms linear;
}

body.theme-night .official-scroll-progress {
  background: rgba(178, 229, 218, 0.12);
}

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

.official-actions .theme-toggle,
.official-actions .nav-action {
  border-radius: 12px;
  border-color: rgba(20, 49, 68, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.official-actions .nav-action.is-current {
  border-color: rgba(24, 169, 153, 0.36);
  background: linear-gradient(135deg, rgba(24, 169, 153, 0.16), rgba(53, 206, 141, 0.12));
  color: var(--official-ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

body.theme-night .official-actions .theme-toggle,
body.theme-night .official-actions .nav-action {
  border-color: rgba(178, 229, 218, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #e5f2ff;
}

body.theme-night .official-actions .nav-action.is-current {
  border-color: rgba(133, 240, 208, 0.32);
  background: rgba(133, 240, 208, 0.1);
  color: #f7fbff;
}

.official-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  width: min(1320px, calc(100% - 40px));
  min-height: min(660px, calc(100svh - 88px));
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 54px) 0 44px;
}

.official-hero::before {
  content: "";
  position: absolute;
  inset: 28px -20px 34px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at var(--spot-x, 20%) var(--spot-y, 15%), rgba(53, 206, 141, 0.24), transparent 24rem),
    radial-gradient(circle at 72% 30%, rgba(88, 166, 255, 0.17), transparent 30rem),
    linear-gradient(135deg, #07111e 0%, #0c1a2c 52%, #07101b 100%);
  box-shadow: var(--official-shadow);
}

.official-hero::after {
  content: "";
  position: absolute;
  inset: 34px -14px 42px;
  z-index: -1;
  border-radius: 34px;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(53, 206, 141, 0.1) 68%, transparent),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.14), transparent 20rem);
  mix-blend-mode: screen;
}

.official-ambient {
  position: absolute;
  inset: 70px 0 auto 0;
  z-index: -1;
  height: 44%;
  opacity: 0.46;
  background:
    radial-gradient(circle at 24% 35%, rgba(53, 206, 141, 0.25), transparent 22rem),
    radial-gradient(circle at 82% 48%, rgba(211, 164, 59, 0.2), transparent 24rem);
  filter: blur(20px);
}

@keyframes officialAmbientShift {
  from {
    transform: translate3d(-0.8%, -0.4%, 0) scale(1);
  }

  to {
    transform: translate3d(1.4%, 0.8%, 0) scale(1.04);
  }
}

.official-hero-copy {
  display: grid;
  gap: 14px;
  align-content: center;
  padding-left: clamp(0px, 2vw, 18px);
  color: #f4fbff;
}

.official-hero-logo {
  width: min(128px, 42vw);
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.24));
}

.official-kicker,
.official-heading span,
.official-module-detail span,
.official-proof-tabs span,
.official-flow article > span,
.official-overview span {
  color: #0b766f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.official-hero .official-kicker {
  color: #85f0d0;
  text-shadow: 0 0 22px rgba(53, 206, 141, 0.28);
}

body.theme-night.official-site .official-kicker,
body.theme-night.official-site .official-heading span,
body.theme-night.official-site .official-module-detail span,
body.theme-night.official-site .official-proof-tabs span,
body.theme-night.official-site .official-flow article > span,
body.theme-night.official-site .official-overview span {
  color: #85f0d0;
}

.official-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.official-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(237, 246, 255, 0.82);
  font-size: clamp(1rem, 1.28vw, 1.14rem);
  line-height: 1.42;
}

.official-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.official-button {
  min-height: 48px;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.official-site .button.primary {
  background: linear-gradient(135deg, var(--official-teal), var(--official-green));
  color: #04131d;
}

.official-site .button.secondary {
  border-color: var(--official-line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--official-ink);
}

.official-hero .button.secondary {
  border-color: rgba(143, 190, 210, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #f4fbff;
}

body.theme-night.official-site .button.secondary {
  border-color: rgba(178, 229, 218, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #f4fbff;
}

.official-hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 8px;
}

.official-hero-signals span {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(156, 218, 203, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(237, 246, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 760;
}

.official-product-stage {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}

.official-stage-backdrop {
  position: absolute;
  inset: 38px 0 80px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 24% 24%, rgba(53, 206, 141, 0.14), transparent 22rem);
  transform: rotateX(4deg) rotateY(-5deg);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}

.official-stage-backdrop::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 28px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 24%, rgba(53, 206, 141, 0.22), transparent 16rem),
    radial-gradient(circle at 76% 64%, rgba(88, 166, 255, 0.14), transparent 18rem);
  filter: blur(10px);
}

.official-screen,
.official-phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(174, 222, 215, 0.2);
  border-radius: 16px;
  background: rgba(8, 18, 31, 0.92);
  color: #f1fbff;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.official-screen::after,
.official-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(315deg, rgba(53, 206, 141, 0.08), transparent 48%);
  opacity: 0.48;
}

.official-screen-admin {
  top: 0;
  right: 0;
  width: min(92%, 640px);
  min-height: 330px;
  padding: 16px;
  transform: rotateX(2deg) rotateY(-8deg) translateZ(20px);
}

.official-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  border-bottom: 1px solid rgba(170, 218, 205, 0.14);
}

.official-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7890a5;
}

.official-window-bar strong {
  margin-left: 8px;
  color: #e9f6ff;
  font-size: 0.88rem;
}

.official-dashboard {
  display: grid;
  gap: 16px;
  padding: 18px 0 0;
}

.official-dashboard small,
.official-dashboard-list em,
.official-phone small,
.official-phone span {
  color: #85f0d0;
  font-style: normal;
  font-weight: 820;
  text-transform: uppercase;
}

.official-dashboard strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 1.36rem;
}

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

.official-dashboard-grid span,
.official-dashboard-list span {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(160, 218, 205, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(230, 242, 255, 0.76);
  font-size: 0.84rem;
}

.official-dashboard-grid b {
  color: #ffffff;
  font-size: 1.7rem;
}

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

.official-dashboard-list span {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.official-screen-tv {
  left: 0;
  bottom: 74px;
  z-index: 3;
  width: min(72%, 570px);
  transform: rotateX(2deg) rotateY(7deg) translateZ(42px);
}

.official-screen-tv img,
.official-screen-weather img,
.official-proof-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.official-screen-tv figcaption,
.official-screen-weather figcaption {
  padding: 12px 14px;
  color: rgba(230, 242, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 760;
}

.official-screen-weather {
  right: 24px;
  bottom: 24px;
  z-index: 4;
  width: min(43%, 330px);
  transform: rotateX(5deg) rotateY(-7deg) translateZ(62px);
}

.official-screen-weather img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.official-phone {
  right: 2px;
  bottom: 76px;
  z-index: 5;
  display: grid;
  gap: 10px;
  width: 210px;
  min-height: 360px;
  padding: 18px 14px;
  border: 10px solid #030914;
  border-radius: 34px;
  transform: rotateX(4deg) rotateY(-10deg) translateZ(82px);
}

.official-phone > strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.official-phone article {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(157, 217, 203, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.official-phone b {
  color: #ffffff;
}

.official-phone em {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(53, 206, 141, 0.18);
  color: #9ff5d4;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 820;
}

.official-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 26px;
  border-top: 0;
}

.official-overview article,
.official-impact-grid article,
.official-spec-primary,
.official-spec-grid article,
.official-proof-summary article,
.official-before-after article,
.official-module-lab,
.official-demo-stage,
.official-flow article,
.official-proof-stage,
.official-faq details,
.official-segments article,
.official-segments button,
.official-trust-list article,
.official-update-list article,
.official-release article,
.official-contact-card,
.official-contact-form {
  border: 1px solid var(--official-line);
  border-radius: 18px;
  background: var(--official-card);
  box-shadow: var(--official-soft-shadow);
}

.official-overview article {
  display: grid;
  gap: 10px;
  min-height: 172px;
  padding: 24px;
}

.official-proof-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.official-proof-summary article {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 172px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 244, 0.72)),
    var(--official-card);
}

.official-proof-summary article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--official-teal), var(--official-green), var(--official-gold));
  opacity: 0.9;
}

.official-proof-summary span {
  color: var(--official-teal-dark);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-proof-summary strong {
  color: var(--official-ink);
  font-size: 1.12rem;
  line-height: 1.18;
}

.official-proof-summary p {
  margin: 0;
  color: var(--official-muted);
  line-height: 1.52;
}

.official-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.official-impact-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 214px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 12%, rgba(53, 206, 141, 0.14), transparent 13rem),
    var(--official-card);
}

.official-impact-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(24, 169, 153, 0.12);
  color: var(--official-teal-dark);
  font-weight: 880;
}

.official-impact-grid strong {
  color: var(--official-ink);
  font-size: 1.08rem;
  line-height: 1.18;
}

.official-impact-grid p {
  margin: 0;
  color: var(--official-muted);
  line-height: 1.54;
}

.official-spec-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
}

.official-spec-primary {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(24, 169, 153, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 246, 0.78));
}

.official-spec-primary::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -82px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  border: 1px solid rgba(24, 169, 153, 0.24);
  background: radial-gradient(circle, rgba(53, 206, 141, 0.18), transparent 62%);
  pointer-events: none;
}

.official-spec-primary span,
.official-spec-grid span {
  color: var(--official-teal-dark);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-spec-primary h3 {
  max-width: 460px;
  margin: 0;
  color: var(--official-ink);
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  line-height: 0.98;
}

.official-spec-primary p,
.official-spec-primary li,
.official-spec-grid p {
  color: var(--official-muted);
  line-height: 1.55;
}

.official-spec-primary p {
  margin: 0;
}

.official-spec-primary ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1rem;
}

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

.official-spec-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 178px;
  padding: 22px;
}

.official-spec-grid strong {
  color: var(--official-ink);
  font-size: 1.08rem;
  line-height: 1.18;
}

.official-spec-grid p {
  margin: 0;
}

.official-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.official-before-after article {
  display: grid;
  gap: 14px;
  min-height: 280px;
  padding: 26px;
}

.official-before-after article:first-child {
  background:
    radial-gradient(circle at 88% 12%, rgba(211, 164, 59, 0.14), transparent 18rem),
    var(--official-card);
}

.official-before-after article:last-child {
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 206, 141, 0.16), transparent 18rem),
    var(--official-card);
}

.official-before-after span {
  color: var(--official-teal-dark);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-before-after h3 {
  margin: 0;
  color: var(--official-ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.06;
}

.official-before-after ul,
.official-faq p {
  margin: 0;
}

.official-before-after ul {
  display: grid;
  gap: 9px;
  padding-left: 1.1rem;
  color: var(--official-muted);
}

.official-live-demo {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
}

.official-demo-controls {
  display: grid;
  gap: 12px;
}

.official-demo-tab {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  min-height: 130px;
  border: 1px solid var(--official-line);
  border-radius: 18px;
  padding: 18px;
  background: var(--official-card);
  color: var(--official-ink);
  text-align: left;
  box-shadow: var(--official-soft-shadow);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.official-demo-tab > span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--official-deep);
  color: #fff;
  font-weight: 860;
}

.official-demo-tab strong {
  align-self: end;
  color: var(--official-ink);
  font-size: 1.05rem;
}

.official-demo-tab small {
  color: var(--official-muted);
}

.official-demo-tab.is-active {
  border-color: rgba(53, 206, 141, 0.54);
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(24, 169, 153, 0.14);
  transform: translateY(-2px);
}

.official-demo-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: 16px;
  min-height: 438px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(53, 206, 141, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 12%, rgba(88, 166, 255, 0.12), transparent 20rem),
    var(--official-card);
}

.official-demo-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(24, 169, 153, 0.12);
  border-radius: 14px;
}

.official-demo-operation,
.official-demo-receivers {
  position: relative;
  z-index: 1;
}

.official-demo-operation {
  display: grid;
  gap: 18px;
  min-height: 360px;
  border-radius: 16px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(6, 17, 29, 0.96), rgba(13, 52, 48, 0.88)),
    var(--official-deep);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.official-demo-copy {
  display: grid;
  gap: 12px;
}

.official-demo-operation span,
.official-demo-receivers span {
  color: #85f0d0;
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-demo-operation h3 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.official-demo-operation p {
  max-width: 720px;
  margin: 0;
  color: rgba(237, 246, 255, 0.82);
  font-size: 1.04rem;
}

.official-demo-window {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(133, 240, 208, 0.18);
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 206, 141, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.official-demo-chrome {
  display: flex;
  gap: 7px;
}

.official-demo-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(237, 246, 255, 0.42);
}

.official-demo-window-head {
  display: grid;
  gap: 5px;
  border-left: 3px solid var(--official-green);
  padding-left: 12px;
}

.official-demo-window-head strong {
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.18;
}

.official-demo-window-head small {
  color: rgba(237, 246, 255, 0.72);
}

.official-demo-operation ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.official-demo-operation li {
  border: 1px solid rgba(133, 240, 208, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(237, 246, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 720;
}

.official-demo-receivers {
  display: grid;
  gap: 12px;
}

.official-demo-receivers article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 184px;
  overflow: hidden;
  border: 1px solid var(--official-line);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.official-demo-tv img {
  width: 100%;
  max-height: 96px;
  border: 1px solid var(--official-line);
  border-radius: 10px;
  object-fit: cover;
  object-position: top left;
}

.official-demo-phone-mini {
  position: relative;
  width: 92px;
  min-height: 132px;
  border: 8px solid var(--official-deep);
  border-radius: 24px;
  padding: 18px 9px 10px;
  background:
    linear-gradient(180deg, #f8fbff 0 38%, #eaf2f6 38% 100%);
  box-shadow:
    0 18px 44px rgba(6, 17, 29, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.official-demo-phone-mini::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(6, 17, 29, 0.36);
  transform: translateX(-50%);
}

.official-demo-phone-mini b {
  display: block;
  margin-bottom: 10px;
  color: var(--official-teal-dark);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.official-demo-phone-mini i {
  display: block;
  height: 22px;
  margin-top: 8px;
  border-radius: 8px;
  background: rgba(6, 17, 29, 0.08);
}

.official-demo-receivers strong {
  color: var(--official-ink);
  font-size: 1.18rem;
  line-height: 1.22;
}

.official-demo-receivers small {
  justify-self: start;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(53, 206, 141, 0.16);
  color: var(--official-teal-dark);
  font-weight: 820;
}

.official-simulator {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 18px;
  margin-top: 18px;
  border: 1px solid rgba(24, 169, 153, 0.24);
  border-radius: 22px;
  padding: 20px;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 206, 141, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 250, 248, 0.8));
  box-shadow: var(--official-soft-shadow);
}

.official-simulator-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 220px;
  padding: 18px;
}

.official-simulator-copy span,
.official-simulator-output span {
  color: var(--official-teal-dark);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-simulator-copy h3 {
  max-width: 540px;
  margin: 0;
  color: var(--official-ink);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 0.96;
}

.official-simulator-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--official-muted);
  font-size: 1rem;
}

.official-simulator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  border: 1px solid var(--official-line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.official-simulator-form label {
  display: grid;
  gap: 7px;
  color: var(--official-ink);
  font-weight: 820;
}

.official-simulator-form label:first-child {
  grid-column: 1 / -1;
}

.official-simulator-form select {
  min-height: 44px;
  border: 1px solid rgba(91, 126, 145, 0.26);
  border-radius: 12px;
  background: #f9fcfb;
  color: var(--official-ink);
  font: inherit;
  padding: 10px 12px;
}

.official-simulator-form .official-button {
  min-height: 46px;
}

.official-simulator-output {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.official-simulator-output article {
  display: grid;
  gap: 9px;
  min-height: 150px;
  border: 1px solid rgba(24, 169, 153, 0.18);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.official-simulator-output strong {
  color: var(--official-ink);
  font-size: 1.08rem;
  line-height: 1.24;
}

.official-simulator-output small,
.official-simulator-note {
  color: var(--official-muted);
}

.official-simulator-output small {
  font-weight: 760;
}

.official-simulator-note {
  grid-column: 1 / -1;
  margin: 0;
  border-left: 3px solid var(--official-green);
  padding: 2px 0 2px 12px;
  font-size: 0.94rem;
}

.official-overview strong,
.official-segments h3,
.official-segment-title,
.official-trust-list strong,
.official-release h3,
.official-flow h3 {
  color: var(--official-ink);
}

.official-overview p,
.official-flow p,
.official-segments p,
.official-segment-copy,
.official-trust-list span,
.official-release p,
.official-contact-card p,
.official-contact-form p,
.official-heading p {
  color: var(--official-muted);
}

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

.official-faq details {
  padding: 0;
  overflow: hidden;
}

.official-faq summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--official-ink);
  font-size: 1.05rem;
  font-weight: 840;
  list-style-position: inside;
}

.official-faq summary::marker {
  color: var(--official-teal-dark);
}

.official-faq p {
  padding: 0 24px 24px;
  color: var(--official-muted);
}

.official-section {
  border-top: 1px solid var(--official-line);
}

.official-heading {
  max-width: 920px;
}

.official-heading h2,
.official-trust-copy h2,
.official-contact-card h2 {
  color: var(--official-ink);
}

.official-module-lab {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.official-module-tabs {
  display: grid;
  gap: 12px;
}

.official-module-tab {
  min-height: 118px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: center;
  background: rgba(255, 255, 255, 0.82);
}

.official-module-tab strong,
.official-module-tab small {
  grid-column: 2;
}

.official-module-tab small {
  color: var(--official-muted);
}

.official-module-tab.is-active {
  border-color: rgba(24, 169, 153, 0.6);
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(24, 169, 153, 0.14);
}

body.theme-night .official-module-tab,
body.theme-night .official-module-detail,
body.theme-night .official-module-visual,
body.theme-night .official-overview article,
body.theme-night .official-impact-grid article,
body.theme-night .official-spec-primary,
body.theme-night .official-spec-grid article,
body.theme-night .official-proof-summary article,
body.theme-night .official-before-after article,
  body.theme-night .official-demo-tab,
  body.theme-night .official-demo-stage,
  body.theme-night .official-demo-receivers article,
  body.theme-night .official-simulator,
  body.theme-night .official-simulator-form,
  body.theme-night .official-simulator-output article,
  body.theme-night .official-flow article,
  body.theme-night .official-proof-stage,
  body.theme-night .official-faq details,
body.theme-night .official-segments article,
body.theme-night .official-segments button,
body.theme-night .official-trust-list article,
body.theme-night .official-update-list article,
body.theme-night .official-release article,
body.theme-night .official-contact-card,
body.theme-night .official-contact-form {
  background: rgba(14, 28, 46, 0.78);
  border-color: var(--official-line);
}

body.theme-night .official-module-tab.is-active {
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.16), transparent 16rem),
    rgba(16, 34, 54, 0.94);
}

body.theme-night .official-demo-tab.is-active {
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.14), transparent 16rem),
    rgba(16, 34, 54, 0.92);
}

body.theme-night .official-demo-receivers small {
  color: #85f0d0;
}

body.theme-night .official-demo-receivers article {
  background: rgba(14, 28, 46, 0.78);
}

body.theme-night .official-simulator {
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 206, 141, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(10, 22, 38, 0.95), rgba(14, 28, 46, 0.82));
  border-color: rgba(133, 240, 208, 0.22);
}

body.theme-night .official-simulator-form select {
  border-color: #22384b;
  background: #08111f;
  color: #edf6ff;
}

body.theme-night .official-simulator-copy h3,
body.theme-night .official-simulator-output strong,
body.theme-night .official-simulator-form label {
  color: #edf6ff;
}

body.theme-night .official-simulator-copy p,
body.theme-night .official-simulator-output small,
body.theme-night .official-simulator-note {
  color: rgba(214, 229, 244, 0.78);
}

body.theme-night .official-demo-phone-mini {
  border-color: #06111d;
  background:
    linear-gradient(180deg, #07101b 0 38%, #e8f1f5 38% 100%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body.theme-night .official-demo-phone-mini b {
  color: #85f0d0;
}

.official-module-detail {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 300px;
  padding: 34px;
}

.official-module-detail h3 {
  margin: 0;
  color: var(--official-ink);
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  line-height: 0.96;
}

.official-module-detail p {
  max-width: 650px;
  margin: 0;
  color: var(--official-muted);
  font-size: 1.08rem;
}

.official-module-detail strong {
  display: block;
  max-width: 720px;
  color: var(--official-ink);
  font-size: 1.12rem;
  line-height: 1.38;
}

.official-module-visuals {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.official-module-visual {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  opacity: 0.74;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.official-module-visual.is-active {
  opacity: 1;
  border-color: rgba(53, 206, 141, 0.46);
  transform: translateY(-2px);
}

.official-module-visual span {
  color: var(--official-teal-dark);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

body.theme-night .official-module-visual span,
body.theme-night .official-proof-summary span,
body.theme-night .official-before-after span,
body.theme-night .official-faq summary::marker {
  color: #85f0d0;
}

body.theme-night .official-impact-grid span {
  background: rgba(133, 240, 208, 0.11);
  color: #85f0d0;
}

body.theme-night .official-spec-primary {
  background:
    radial-gradient(circle at 88% 12%, rgba(53, 206, 141, 0.14), transparent 18rem),
    rgba(14, 28, 46, 0.82);
}

body.theme-night .official-spec-primary span,
body.theme-night .official-spec-grid span {
  color: #85f0d0;
}

.official-module-visual b {
  color: var(--official-ink);
}

.official-module-visual small {
  color: var(--official-muted);
}

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

.official-flow article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
}

.official-flow article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(24, 169, 153, 0.12);
}

.official-proof-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  padding: 16px;
}

.official-proof-side {
  display: grid;
  align-content: start;
  gap: 14px;
}

.official-proof-slides {
  position: relative;
  min-height: 520px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 206, 141, 0.15), transparent 24rem),
    rgba(255, 255, 255, 0.56);
}

body.theme-night .official-proof-slides {
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 206, 141, 0.16), transparent 24rem),
    rgba(8, 17, 31, 0.66);
}

.official-proof-slide {
  display: none;
  min-height: 520px;
  margin: 0;
  padding: 24px;
  align-items: center;
}

.official-proof-slide.is-active {
  display: grid;
}

.official-proof-slide img {
  max-height: 390px;
  border: 1px solid var(--official-line);
  border-radius: 14px;
  object-fit: cover;
  object-position: top left;
  box-shadow: var(--official-soft-shadow);
}

.official-proof-device {
  justify-items: center;
}

.official-proof-device .proof-phone {
  position: relative;
  inset: auto;
  transform: none;
}

.official-proof-slide figcaption {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  color: var(--official-muted);
}

.official-proof-slide figcaption strong {
  color: var(--official-ink);
  font-size: 1.22rem;
}

.official-proof-tabs {
  display: grid;
  gap: 12px;
}

.official-proof-tabs button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-content: center;
  min-height: 154px;
  border: 1px solid var(--official-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--official-ink);
  text-align: left;
  cursor: pointer;
}

body.theme-night .official-proof-tabs button {
  background: rgba(14, 28, 46, 0.78);
}

.official-proof-tabs button.is-active {
  border-color: rgba(53, 206, 141, 0.52);
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.92);
}

body.theme-night .official-proof-tabs button.is-active {
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.14), transparent 16rem),
    rgba(16, 34, 54, 0.92);
}

.official-proof-tabs span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--official-deep);
  color: #fff;
  font-weight: 860;
}

.official-proof-tabs strong {
  align-self: end;
  color: var(--official-ink);
  font-size: 1.08rem;
}

.official-proof-tabs small {
  color: var(--official-muted);
}

.official-proof-detail {
  display: grid;
  gap: 10px;
  border: 1px solid var(--official-line);
  border-radius: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(24, 169, 153, 0.13), transparent 15rem),
    rgba(255, 255, 255, 0.88);
}

.official-proof-detail span {
  color: var(--official-teal-dark);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-proof-detail strong {
  color: var(--official-ink);
  font-size: 1.08rem;
  line-height: 1.22;
}

.official-proof-detail p {
  margin: 0;
  color: var(--official-muted);
  line-height: 1.55;
}

body.theme-night .official-proof-detail {
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.12), transparent 15rem),
    rgba(14, 28, 46, 0.78);
}

body.theme-night .official-proof-detail span {
  color: #85f0d0;
}

.official-trust-copy {
  max-width: 520px;
}

.official-trust-list {
  gap: 14px;
}

.official-segments article,
.official-segments button,
.official-trust-list article,
.official-release article {
  min-height: 210px;
}

.official-segments {
  margin-bottom: 14px;
}

.official-segment-card {
  display: grid;
  align-content: start;
  gap: 14px;
  appearance: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.official-segment-title {
  font-size: 1.22rem;
  font-weight: 830;
  line-height: 1.22;
}

.official-segment-copy {
  line-height: 1.52;
}

.official-segment-card.is-active {
  border-color: rgba(53, 206, 141, 0.52);
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--official-soft-shadow);
  transform: translateY(-2px);
}

body.theme-night .official-segment-card.is-active {
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.14), transparent 16rem),
    rgba(16, 34, 54, 0.92);
}

.official-segment-detail {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(53, 206, 141, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(240, 250, 247, 0.72)),
    radial-gradient(circle at 92% 10%, rgba(53, 206, 141, 0.14), transparent 18rem);
}

body.theme-night .official-segment-detail {
  background:
    radial-gradient(circle at 92% 10%, rgba(53, 206, 141, 0.12), transparent 18rem),
    rgba(14, 28, 46, 0.78);
  border-color: rgba(104, 227, 191, 0.24);
}

.official-segment-detail h3,
.official-segment-detail p,
.official-segment-detail strong {
  margin: 0;
}

.official-segment-detail h3 {
  color: var(--official-ink);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.official-segment-detail p {
  max-width: 820px;
  color: var(--official-muted);
  font-size: 1.03rem;
  line-height: 1.56;
}

.official-segment-detail strong {
  color: var(--official-teal-dark);
  font-size: 1.02rem;
  line-height: 1.45;
}

body.theme-night .official-segment-detail strong {
  color: #85f0d0;
}

.official-update-feature {
  min-height: 380px;
  border: 1px solid rgba(104, 227, 191, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(211, 164, 59, 0.22), transparent 20rem),
    linear-gradient(135deg, #0a1626 0%, #0f312d 100%);
  box-shadow: var(--official-shadow);
}

.official-update-list article {
  min-height: 112px;
}

.official-release article em {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(211, 164, 59, 0.12);
}

.official-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.official-footer nav a {
  color: var(--official-muted);
  font-weight: 760;
  text-decoration: none;
}

.official-footer nav a:hover,
.official-footer nav a:focus-visible {
  color: var(--official-ink);
  text-decoration: underline;
}

.official-contact-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 14%, rgba(53, 206, 141, 0.16), transparent 18rem),
    var(--official-card);
}

.official-contact-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(24, 169, 153, 0.16);
  border-radius: 42px;
  opacity: 0.38;
  transform: rotate(18deg);
}

.official-contact-actions {
  position: relative;
  z-index: 1;
}

.official-contact-intro {
  border-left: 3px solid rgba(24, 169, 153, 0.48);
  padding-left: 12px;
}

.official-contact-brief {
  padding: 0;
  overflow: hidden;
}

.official-contact-brief summary {
  padding: 16px;
  outline-offset: 4px;
}

.official-contact-brief > p {
  margin: 0;
  padding: 0 16px 14px;
}

.official-contact-brief .contact-form-grid {
  padding: 0 16px 16px;
}

.official-contact-next {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
  border: 1px solid rgba(24, 169, 153, 0.18);
  border-radius: 16px;
  padding: 0.85rem;
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.12), transparent 14rem),
    rgba(245, 251, 249, 0.78);
}

.official-contact-next > span {
  color: var(--official-teal-dark);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-contact-next ol {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: contact-step;
}

.official-contact-next li {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  counter-increment: contact-step;
  border: 1px solid rgba(24, 169, 153, 0.1);
  border-radius: 0.8rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.42);
}

.official-contact-next li::before {
  content: counter(contact-step);
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.55rem;
  background: rgba(24, 169, 153, 0.13);
  color: var(--official-teal-dark);
  font-weight: 880;
}

.official-contact-next strong {
  color: var(--official-ink);
  font-size: 0.9rem;
}

.official-contact-next p {
  display: none;
}

.official-contact-form input,
.official-contact-form select,
.official-contact-form textarea {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

body.theme-night .official-contact-form input,
body.theme-night .official-contact-form select,
body.theme-night .official-contact-form textarea {
  background: rgba(5, 14, 24, 0.8);
  color: #edf6ff;
}

body.theme-night .official-contact-next {
  border-color: rgba(133, 240, 208, 0.2);
  background:
    radial-gradient(circle at top right, rgba(53, 206, 141, 0.12), transparent 14rem),
    rgba(8, 17, 31, 0.54);
}

body.theme-night .official-contact-next > span,
body.theme-night .official-contact-next li::before {
  color: #85f0d0;
}

body.theme-night .official-contact-next li::before {
  background: rgba(133, 240, 208, 0.11);
}

body.theme-night .official-contact-next li {
  border-color: rgba(133, 240, 208, 0.14);
  background: rgba(18, 40, 66, 0.68);
}

.official-footer {
  align-items: center;
}

.official-footer img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 8px;
}

html.reveal-enabled [data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

html.reveal-enabled [data-reveal].is-visible,
.no-reveal [data-reveal] {
  opacity: 1;
  transform: none;
}

html.reveal-enabled .official-site.effect-low [data-reveal],
html.reveal-enabled .official-site.effect-very-low [data-reveal] {
  transition-duration: 180ms;
}

.official-site.effect-very-low .official-hero::before,
.official-site.effect-very-low .official-hero::after,
.official-site.effect-very-low .official-stage-backdrop,
.official-site.effect-low .official-stage-backdrop {
  filter: none;
  transform: none;
}

.official-site.effect-low::before,
.official-site.effect-low::after,
.official-site.effect-very-low::before,
.official-site.effect-very-low::after {
  display: none;
}

.official-site.effect-low .official-topbar,
.official-site.effect-very-low .official-topbar {
  backdrop-filter: none;
}

.official-site.effect-very-low .official-overview article,
.official-site.effect-very-low .official-before-after article,
.official-site.effect-very-low .official-module-lab,
.official-site.effect-very-low .official-demo-stage,
.official-site.effect-very-low .official-flow article,
.official-site.effect-very-low .official-proof-stage,
.official-site.effect-very-low .official-faq details,
.official-site.effect-very-low .official-segment-card,
.official-site.effect-very-low .official-trust-list article,
.official-site.effect-very-low .official-update-list article,
.official-site.effect-very-low .official-release article,
.official-site.effect-very-low .official-contact-card,
.official-site.effect-very-low .official-contact-form {
  box-shadow: none;
}

@media (prefers-reduced-motion: no-preference) {
  .official-site.effect-high .official-ambient {
    animation: officialAmbientShift 18s ease-in-out infinite alternate;
  }
}

@media (hover: hover) and (pointer: fine) {
  .official-site:not(.effect-very-low) .official-screen,
  .official-site:not(.effect-very-low) .official-phone,
  .official-site:not(.effect-very-low) .official-module-tab,
  .official-site:not(.effect-very-low) .official-proof-tabs button,
  .official-site:not(.effect-very-low) .official-segment-card {
    transition:
      transform 220ms ease,
      box-shadow 220ms ease,
      border-color 220ms ease;
  }

  .official-site:not(.effect-very-low) .official-module-tab:hover,
  .official-site:not(.effect-very-low) .official-proof-tabs button:hover,
  .official-site:not(.effect-very-low) .official-segment-card:hover {
    border-color: rgba(53, 206, 141, 0.46);
    transform: translateY(-2px);
  }
}

@media (max-width: 1120px) {
  .official-topbar {
    grid-template-columns: minmax(170px, max-content) minmax(0, 1fr) auto;
  }

  .official-nav {
    justify-content: flex-start;
  }

  .official-hero,
  .official-module-lab,
  .official-live-demo,
  .official-demo-stage,
  .official-proof-stage,
  .official-before-after,
  .trust-section,
  .commercial-updates,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .official-product-stage {
    min-height: 760px;
  }

  .official-screen-admin,
  .official-screen-tv,
  .official-screen-weather,
  .official-phone {
    transform: none;
  }

  .official-screen-admin {
    width: min(100%, 680px);
  }

  .official-screen-tv {
    left: 0;
    bottom: 160px;
    width: min(72%, 590px);
  }

  .official-phone {
    right: 22px;
    bottom: 120px;
  }

  .official-screen-weather {
    right: 22px;
    bottom: 16px;
  }

  .official-module-visuals {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .official-site {
    --official-header-offset: 154px;
  }

  .official-topbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    grid-template-columns: 1fr auto;
  }

  .official-brand {
    grid-column: 1;
  }

  .official-nav {
    display: flex;
    grid-column: 1 / -1;
    order: 3;
    padding-bottom: 2px;
  }

  .official-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .official-hero {
    width: min(100% - 28px, 1280px);
    min-height: auto;
    padding-top: 32px;
  }

  .official-hero-signals {
    display: none;
  }

  .official-hero::before {
    inset: 16px -8px 28px;
  }

  .official-product-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    min-height: auto;
  }

  .official-stage-backdrop {
    display: none;
  }

  .official-hero::after {
    inset: 18px -4px 30px;
    opacity: 0.36;
  }

  .official-screen-admin,
  .official-screen-weather,
  .official-phone {
    display: none;
  }

  .official-screen,
  .official-phone {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .official-screen-tv {
    grid-column: 1;
    justify-self: center;
    max-width: 520px;
  }

  .official-spec-layout {
    grid-template-columns: 1fr;
  }

  .official-overview,
  .official-impact-grid,
  .official-spec-grid,
  .official-proof-summary,
  .official-flow,
  .official-segments,
  .official-trust-list,
  .official-release,
  .official-faq-grid,
  .official-module-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .official-proof-stage {
    padding: 12px;
  }

  .official-demo-stage {
    grid-template-columns: 1fr;
  }

  .official-proof-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .official-proof-tabs button {
    min-height: 120px;
    grid-template-columns: 1fr;
  }

  .official-proof-tabs span {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .official-site {
    --official-header-offset: 146px;
  }

  .official-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: min(100% - 24px, 1280px);
    margin-top: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .official-site::before {
    background-size: auto, 88px 88px, 88px 88px, auto;
  }

  .official-brand {
    grid-column: auto;
    grid-row: 1;
  }

  .official-actions {
    grid-column: auto;
    grid-row: 1;
    gap: 6px;
  }

  .official-actions .nav-action {
    display: inline-flex;
  }

  .official-actions .theme-toggle {
    display: inline-flex;
  }

  .official-actions .nav-action,
  .official-actions .theme-toggle {
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .official-brand small {
    display: none;
  }

  .official-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column: 1 / -1;
    grid-row: 2;
    order: 3;
    margin-top: 2px;
    gap: 6px;
    padding: 4px 0 2px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .official-nav a:not([data-mobile-nav="primary"]) {
    display: none;
  }

  .official-nav a {
    min-width: 0;
    padding: 8px 6px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    font-size: 0.76rem;
  }

  .official-nav-full,
  .official-nav-v2 a[data-short-label] .official-nav-label {
    display: none;
  }

  .official-nav-short,
  .official-nav-v2 a[data-short-label]::after {
    display: inline;
    content: attr(data-short-label);
  }

  .official-hero h1 {
    font-size: clamp(2.18rem, 10.2vw, 3rem);
    line-height: 1.04;
  }

  .official-hero-signals,
  .official-overview,
  .official-impact-grid,
  .official-spec-grid,
  .official-proof-summary,
  .official-before-after,
  .official-live-demo,
  .official-demo-stage,
  .official-demo-operation ul,
  .official-simulator,
  .official-simulator-form,
  .official-simulator-output,
  .official-flow,
  .official-segments,
  .official-trust-list,
  .official-release,
  .official-faq-grid,
  .official-module-tabs,
  .official-module-visuals,
  .official-proof-tabs,
  .commercial-updates,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .official-hero-actions,
  .official-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .official-hero-logo {
    width: 110px;
  }

  .official-hero-signals {
    display: none;
  }

  .official-lead {
    font-size: 0.96rem;
  }

  .official-spec-primary {
    padding: 22px;
  }

  .official-product-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 4px;
  }

  .official-screen-admin,
  .official-screen-weather,
  .official-phone {
    display: none;
  }

  .official-screen-tv {
    display: block;
    width: 100%;
  }

  .official-screen-tv img {
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: top left;
  }

  .official-screen-tv figcaption {
    padding: 10px 12px;
    font-size: 0.76rem;
  }

  .official-button,
  .official-contact-actions small {
    width: 100%;
  }

  .official-module-lab,
  .official-demo-stage,
  .official-proof-stage {
    padding: 10px;
  }

  .official-module-detail,
  .official-demo-operation,
  .official-contact-card,
  .official-contact-form {
    padding: 22px;
  }

  .official-demo-tab {
    min-height: 106px;
  }

  .official-demo-receivers article {
    min-height: auto;
  }

  .official-simulator {
    padding: 10px;
  }

  .official-simulator-copy {
    min-height: auto;
    padding: 18px 12px;
  }

  .official-simulator-copy h3 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .official-simulator-form {
    padding: 12px;
  }

  .official-simulator-form label:first-child,
  .official-simulator-note {
    grid-column: auto;
  }

  .official-demo-phone-mini {
    width: 78px;
    min-height: 112px;
  }

  .official-proof-slides,
  .official-proof-slide {
    min-height: auto;
  }

  .official-proof-slide {
    padding: 14px;
  }

  .official-proof-slide img {
    max-height: none;
  }

  .official-dashboard-grid,
  .official-dashboard-list span {
    grid-template-columns: 1fr;
  }

  .official-footer {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .official-brand span {
    display: none;
  }

  .official-brand .brand-icon {
    width: 40px;
    height: 40px;
  }

  .official-actions .nav-action,
  .official-actions .theme-toggle {
    min-height: 40px;
    padding: 7px 9px;
    font-size: 0.74rem;
  }

  .official-nav {
    gap: 4px;
  }

  .official-nav a {
    padding: 8px 4px;
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .official-site .official-screen,
  .official-site .official-phone,
  .official-site .official-stage-backdrop,
  .official-site .official-ambient,
  .official-site [data-magnetic],
  .official-site [data-reveal] {
    animation: none !important;
    transform: none !important;
  }

  .official-scroll-progress span {
    transition: none;
  }
}

/* Final official-site v2 overrides.
   Keep this block at the end so legacy commercial-site rules cannot override
   the current official ClubAL landing page. */
body.official-site-v2 {
  padding-top: var(--official-header-offset, 9rem) !important;
  scroll-padding-top: calc(var(--official-header-offset, 9rem) + 1.25rem) !important;
}

body.official-site-v2 #inicio,
body.official-site-v2 .official-section,
body.official-site-v2 #contato {
  scroll-margin-top: calc(var(--official-header-offset, 9rem) + 1.25rem) !important;
}

body.official-site-v2 .official-topbar-v2 {
  position: fixed !important;
  inset: 0.75rem auto auto 50% !important;
  z-index: 40 !important;
  display: grid !important;
  grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr) auto !important;
  align-items: center !important;
  width: min(78rem, calc(100% - 2rem)) !important;
  max-width: 78rem !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0.9rem 1rem !important;
  transform: translateX(-50%) !important;
  overflow: visible !important;
}

body.official-site-v2 .official-brand-v2 {
  grid-column: 1 !important;
  width: fit-content !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body.official-site-v2 .official-brand-v2 .brand-logo-full,
body.official-site-v2 .official-brand-v2 img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: 2.45rem !important;
  object-fit: contain !important;
  object-position: left center !important;
}

body.official-site-v2 .official-nav-v2 {
  grid-column: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  gap: 0.25rem !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none !important;
}

body.official-site-v2 .official-nav-v2::-webkit-scrollbar {
  display: none !important;
}

body.official-site-v2 .official-nav-v2 a {
  flex: 0 0 auto !important;
  min-width: max-content !important;
  max-width: none !important;
  padding: 0.72rem 0.85rem !important;
  overflow: visible !important;
  white-space: nowrap !important;
  text-overflow: clip !important;
}

body.official-site-v2 .official-actions-v2 {
  grid-column: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  width: auto !important;
  min-width: max-content !important;
  gap: 0.5rem !important;
}

body.official-site-v2 .official-actions-v2 .nav-action,
body.official-site-v2 .official-actions-v2 .theme-toggle {
  min-width: max-content !important;
  white-space: nowrap !important;
}

body.official-site-v2 .official-hero-actions .button.secondary,
body.official-site-v2 .button.secondary,
body.official-site-v2 .button.ghost {
  color: var(--official-ink) !important;
  background: rgba(255, 255, 255, 0.74) !important;
  border-color: rgba(7, 21, 38, 0.16) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 1rem 2rem rgba(7, 21, 38, 0.08) !important;
}

body.official-site-v2 .official-hero-actions .button.secondary:hover,
body.official-site-v2 .button.secondary:hover,
body.official-site-v2 .button.ghost:hover {
  color: #ffffff !important;
  background: #071526 !important;
  border-color: #071526 !important;
}

body.theme-night.official-site-v2 .official-hero-actions .button.secondary,
body.theme-night.official-site-v2 .button.secondary,
body.theme-night.official-site-v2 .button.ghost {
  color: #eaf3ff !important;
  background: rgba(15, 36, 58, 0.9) !important;
  border-color: rgba(201, 222, 249, 0.18) !important;
}

body.theme-night.official-site-v2 .official-hero-actions .button.secondary:hover,
body.theme-night.official-site-v2 .button.secondary:hover,
body.theme-night.official-site-v2 .button.ghost:hover {
  color: #06111d !important;
  background: #80f0c0 !important;
  border-color: #80f0c0 !important;
}

body.official-site-v2 .official-scroll-progress {
  grid-column: 1 / -1 !important;
}

body.official-site-v2 .official-hero-v2 {
  min-height: clamp(30rem, calc(100vh - 8.5rem), 34rem) !important;
  margin-top: 0 !important;
  padding-top: 1.55rem !important;
  padding-bottom: 2.2rem !important;
  align-items: center !important;
  gap: 1.35rem !important;
}

body.official-site-v2 .official-hero-v2::before {
  inset: 1.2rem -1rem auto -1rem !important;
  height: 20.5rem !important;
}

body.official-site-v2 .official-hero-logo {
  width: 6.4rem !important;
  margin-bottom: 0.65rem !important;
}

body.official-site-v2 .official-hero-v2 h1 {
  max-width: 18ch !important;
  font-size: clamp(2.75rem, 4.2vw, 3.15rem) !important;
  line-height: 1 !important;
}

body.official-site-v2 .official-hero-v2 .official-kicker {
  color: #006f65 !important;
  text-shadow: none !important;
}

body.theme-night.official-site-v2 .official-hero-v2 .official-kicker {
  color: #85f0d0 !important;
  text-shadow: 0 0 22px rgba(53, 206, 141, 0.28) !important;
}

body.official-site-v2 .official-lead {
  max-width: 38rem !important;
  font-size: 0.95rem !important;
  line-height: 1.48 !important;
}

body.official-site-v2 .official-hero-actions {
  margin-top: 1.05rem !important;
}

body.official-site-v2 .official-signal-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin-top: 0.95rem !important;
}

body.official-site-v2 .official-signal-list li {
  display: grid !important;
  min-height: 2.35rem !important;
  place-items: center !important;
  padding: 0.38rem 0.46rem !important;
  text-align: center !important;
  font-size: 0.76rem !important;
  line-height: 1.15 !important;
}

body.official-site-v2 .official-product-stage-v2 {
  grid-template-columns: 1fr !important;
  align-self: center !important;
  gap: 0.75rem !important;
  min-height: 0 !important;
}

body.official-site-v2 .official-hero-v2 .official-stage-console,
body.official-site-v2 .official-hero-v2 .official-stage-weather {
  display: none !important;
}

body.official-site-v2 .official-hero-v2 .official-stage-tv {
  display: block !important;
}

body.official-site-v2 .official-window-bar {
  padding: 0.56rem 0.78rem !important;
}

body.official-site-v2 .official-dashboard-v2 {
  gap: 0.72rem !important;
  padding: 0.82rem !important;
}

body.official-site-v2 .official-dashboard-v2 strong {
  font-size: 1.16rem !important;
}

body.official-site-v2 .official-dashboard-grid span,
body.official-site-v2 .official-dashboard-list li {
  padding: 0.62rem !important;
}

body.official-site-v2 .official-dashboard-grid b {
  font-size: 1.12rem !important;
}

body.official-site-v2 .official-dashboard-list {
  gap: 0.38rem !important;
}

body.official-site-v2 .official-stage-tv img,
body.official-site-v2 .official-stage-weather img {
  aspect-ratio: 16 / 8.8 !important;
  object-fit: cover !important;
  object-position: top left !important;
}

body.official-site-v2 .official-stage-tv figcaption,
body.official-site-v2 .official-stage-weather figcaption {
  padding: 0.58rem 0.72rem !important;
  font-size: 0.78rem !important;
}

body.theme-night.official-site-v2 .official-topbar-v2 {
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.96), rgba(13, 39, 58, 0.9)),
    radial-gradient(circle at 15% 20%, rgba(10, 164, 148, 0.2), transparent 16rem) !important;
}

body.official-site-v2 .official-contact-form [aria-invalid="true"] {
  border-color: #c94a4a !important;
  box-shadow: 0 0 0 0.18rem rgba(201, 74, 74, 0.14) !important;
}

body.theme-night.official-site-v2 .official-contact-form [aria-invalid="true"] {
  border-color: #ff9b93 !important;
  box-shadow: 0 0 0 0.18rem rgba(255, 155, 147, 0.16) !important;
}

body.official-site-v2 #clubal-contact-status {
  min-height: 1.4rem;
  margin: 0;
  color: #0c6e64;
  font-size: 0.92rem;
  font-weight: 760;
}

body.theme-night.official-site-v2 #clubal-contact-status {
  color: #95f2d5;
}

body.official-site-v2 .official-contact-form {
  gap: 0.66rem !important;
}

body.official-site-v2 .official-contact-card h3 {
  font-size: 1.48rem !important;
  line-height: 1.12 !important;
}

body.official-site-v2 .official-contact-card > p {
  margin-bottom: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.48 !important;
}

body.official-site-v2 .official-contact-intro {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0.7rem 0.8rem 0.7rem 0.95rem !important;
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
}

body.official-site-v2 .official-contact-form label {
  gap: 0.32rem !important;
  font-size: 0.84rem !important;
}

body.official-site-v2 .official-contact-form input,
body.official-site-v2 .official-contact-form select {
  height: 3rem !important;
  min-height: 0 !important;
  padding: 0.62rem 0.72rem !important;
}

body.official-site-v2 .official-contact-form textarea {
  min-height: 7.2rem !important;
  padding: 0.7rem 0.72rem !important;
}

body.official-site-v2 .official-contact-form .button {
  min-height: 3.25rem !important;
  padding: 0.78rem 1rem !important;
}

body.official-site-v2 .official-contact-brief summary {
  padding: 0.8rem !important;
}

body.official-site-v2 .official-contact-brief .contact-form-grid {
  padding: 0 0.8rem 0.8rem !important;
}

body.official-site-v2 .button.primary {
  background-color: #27c17a;
  color: #04131d;
}

body.official-site-v2 .official-product-lab {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: 1rem;
  margin-top: 1rem;
  align-items: stretch;
}

body.official-site-v2 .official-product-lab .official-context-showcase,
body.official-site-v2 .official-product-lab .official-simulator-card {
  min-height: 100%;
  margin-top: 0 !important;
}

body.official-site-v2 .official-product-lab .official-context-showcase,
body.official-site-v2 .official-product-lab .official-simulator-card {
  grid-template-columns: 1fr !important;
}

body.official-site-v2 .official-product-lab .context-showcase-media img,
body.official-site-v2 .official-product-lab .surface-card-tv img {
  max-height: 17rem !important;
}

body.official-site-v2 .official-product-lab .context-showcase-copy {
  justify-content: flex-start !important;
}

body.official-site-v2 .official-product-lab .context-showcase-copy h3,
body.official-site-v2 .official-product-lab .simulator-copy h3 {
  font-size: clamp(1.45rem, 2vw, 2rem) !important;
  line-height: 1.08 !important;
}

body.official-site-v2 .simulator-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.6rem;
}

body.official-site-v2 .official-product-lab .simulator-result {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.official-site-v2 .official-product-lab .simulator-result p {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 900px) {
  body.official-site-v2 {
    --official-header-offset: 11.5rem;
  }

  body.official-site-v2 .official-topbar-v2 {
    grid-template-columns: minmax(7rem, 1fr) auto !important;
    gap: 0.65rem !important;
    padding: 0.75rem !important;
  }

  body.official-site-v2 .official-brand-v2 {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  body.official-site-v2 .official-brand-v2 .brand-logo-full,
  body.official-site-v2 .official-brand-v2 img {
    height: 2.25rem !important;
    width: auto !important;
  }

  body.official-site-v2 .official-actions-v2 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: center !important;
  }

  body.official-site-v2 .official-nav-v2 {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding: 0.15rem 0.1rem 0.05rem !important;
  }
}

@media (max-width: 1100px) {
  body.official-site-v2 .official-product-lab,
  body.official-site-v2 .official-product-lab .simulator-result {
    grid-template-columns: 1fr;
  }

  body.official-site-v2 .official-product-lab .context-showcase-media img {
    max-height: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  body.official-site-v2 .official-hero-v2 {
    grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1fr) !important;
    min-height: clamp(29rem, calc(100vh - 7.5rem), 33rem) !important;
    gap: 1rem !important;
  }

  body.official-site-v2 .official-hero-v2 h1 {
    max-width: 18ch !important;
    font-size: clamp(2.35rem, 3.6vw, 2.8rem) !important;
  }

  body.official-site-v2 .official-lead {
    max-width: 34rem !important;
    font-size: 0.9rem !important;
  }

  body.official-site-v2 .official-hero-actions {
    margin-top: 0.9rem !important;
  }

  body.official-site-v2 .official-stage-tv img {
    aspect-ratio: 16 / 9 !important;
    max-height: 18rem !important;
  }
}

@media (max-width: 560px) {
  body.official-site-v2 {
    --official-header-offset: 8rem;
  }

  body.official-site-v2 .official-topbar-v2 {
    width: calc(100% - 1rem) !important;
    grid-template-columns: minmax(6.5rem, 1fr) auto !important;
    gap: 0.45rem !important;
    padding: 0.45rem 0.5rem !important;
    border-radius: 0 0 1rem 1rem !important;
  }

  body.official-site-v2 .official-brand-v2 {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: fit-content !important;
  }

  body.official-site-v2 .official-brand-v2 .brand-logo-full,
  body.official-site-v2 .official-brand-v2 img {
    height: 1.72rem !important;
  }

  body.official-site-v2 .official-actions-v2 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-content: flex-end !important;
    min-width: 0 !important;
    width: auto !important;
  }

  body.official-site-v2 .official-actions-v2 .nav-action,
  body.official-site-v2 .official-actions-v2 .theme-toggle {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    padding: 0.42rem 0.5rem !important;
    font-size: 0.74rem !important;
    text-align: center !important;
  }

  body.official-site-v2 .official-nav-v2 {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    padding: 0.08rem !important;
    border-radius: 0.78rem !important;
    background: rgba(255, 255, 255, 0.54) !important;
    box-shadow: inset 0 0 0 1px rgba(7, 21, 38, 0.08) !important;
  }

  body.theme-night.official-site-v2 .official-nav-v2 {
    background: rgba(10, 25, 42, 0.72) !important;
    box-shadow: inset 0 0 0 1px rgba(201, 222, 249, 0.12) !important;
  }

  body.official-site-v2 .official-nav-v2 a {
    padding: 0.46rem 0.5rem !important;
    font-size: 0.74rem !important;
  }

  body.official-site-v2 .official-hero-v2 {
    min-height: auto !important;
    gap: 0.62rem !important;
    padding-top: 0.55rem !important;
    padding-bottom: 1.35rem !important;
  }

  body.official-site-v2 .official-hero-logo {
    display: none !important;
  }

  body.official-site-v2 .official-kicker {
    margin-bottom: 0.55rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.05em !important;
  }

  body.official-site-v2 .official-hero-v2 h1 {
    max-width: none !important;
    font-size: clamp(2rem, 9.8vw, 2.46rem) !important;
    line-height: 1.01 !important;
  }

  body.official-site-v2 .official-lead {
    font-size: 0.87rem !important;
    line-height: 1.38 !important;
  }

  body.official-site-v2 .official-hero-actions {
    gap: 0.52rem !important;
    margin-top: 0.78rem !important;
  }

  body.official-site-v2 .official-hero-actions .button {
    min-height: 2.68rem !important;
    padding: 0.72rem 0.9rem !important;
  }

  body.official-site-v2 .official-signal-list {
    display: none !important;
  }

  body.official-site-v2 .official-product-stage-v2 {
    gap: 0.75rem !important;
    margin-top: 0.42rem !important;
  }

  body.official-site-v2 .official-stage-console,
  body.official-site-v2 .official-stage-weather {
    display: none !important;
  }

  body.official-site-v2 .official-hero-v2 .official-stage-tv {
    display: block !important;
    border-radius: 1rem !important;
  }

  body.official-site-v2 .official-stage-tv img {
    aspect-ratio: 16 / 9 !important;
    max-height: 8.8rem !important;
    object-fit: cover !important;
    object-position: top left !important;
  }

  body.official-site-v2 .official-stage-tv figcaption {
    padding: 0.52rem 0.65rem !important;
    font-size: 0.76rem !important;
  }
}

@media (max-width: 380px) {
  body.official-site-v2 {
    --official-header-offset: 7.45rem;
  }

  body.official-site-v2 .official-hero-v2 {
    padding-top: 0.35rem !important;
    padding-bottom: 1rem !important;
  }

  body.official-site-v2 .official-hero-v2 h1 {
    font-size: clamp(1.78rem, 9vw, 2.12rem) !important;
  }

  body.official-site-v2 .official-lead {
    display: -webkit-box !important;
    max-height: 2.8em !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    font-size: 0.82rem !important;
    line-height: 1.34 !important;
  }

  body.official-site-v2 .official-hero-actions .button.secondary {
    display: none !important;
  }

  body.official-site-v2 .official-stage-tv img {
    max-height: 7.6rem !important;
  }
}

body.official-site-v2 .availability-board-v2 {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
  margin-top: 1rem;
}

body.official-site-v2 .availability-summary,
body.official-site-v2 .availability-list article {
  border: 1px solid rgba(7, 21, 38, 0.12);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 1rem 2.2rem rgba(7, 21, 38, 0.08);
}

body.official-site-v2 .availability-summary {
  padding: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 249, 245, 0.78)),
    radial-gradient(circle at 88% 14%, rgba(54, 213, 139, 0.2), transparent 12rem);
}

body.official-site-v2 .availability-summary h3 {
  margin: 0.45rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.05;
}

body.official-site-v2 .availability-summary p {
  margin: 0;
  color: var(--official-muted);
}

body.official-site-v2 .availability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

body.official-site-v2 .availability-list article {
  position: relative;
  min-height: 9.8rem;
  padding: 1rem 1rem 1rem 1.1rem;
  overflow: hidden;
}

body.official-site-v2 .availability-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.28rem;
  background: linear-gradient(180deg, var(--official-teal), var(--official-gold));
}

body.official-site-v2 .availability-list span {
  display: block;
  margin-bottom: 0.48rem;
  color: var(--official-teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.official-site-v2 .availability-list strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--official-ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

body.official-site-v2 .availability-list small {
  display: block;
  color: var(--official-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

body.theme-night.official-site-v2 .availability-summary,
body.theme-night.official-site-v2 .availability-list article {
  border-color: rgba(201, 222, 249, 0.14);
  background: rgba(13, 29, 49, 0.88);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.28);
}

body.theme-night.official-site-v2 .availability-summary {
  background:
    linear-gradient(145deg, rgba(13, 29, 49, 0.92), rgba(11, 43, 51, 0.74)),
    radial-gradient(circle at 88% 14%, rgba(128, 240, 192, 0.12), transparent 12rem);
}

body.theme-night.official-site-v2 .availability-summary p,
body.theme-night.official-site-v2 .availability-list small {
  color: #bdd0e7;
}

body.theme-night.official-site-v2 .availability-list strong {
  color: #f4f8ff;
}

body.theme-night.official-site-v2 .availability-list span {
  color: #85f0d0;
}

@media (max-width: 860px) {
  body.official-site-v2 .availability-board-v2,
  body.official-site-v2 .availability-list {
    grid-template-columns: 1fr;
  }

  body.official-site-v2 .availability-list article {
    min-height: auto;
  }
}
