:root {
  color-scheme: light;
  --bg: #f4f7ff;
  --paper: #ffffff;
  --ink: #111822;
  --muted: #62707e;
  --line: #dce6e8;
  --brand-blue: #2563eb;
  --brand-navy: #101b3d;
  --brand-gold: #f5b84b;
  --red: #2563eb;
  --red-dark: #101b3d;
  --accent-positive: #2563eb;
  --amber: #a65f00;
  --blue: #2950b8;
  --coral: #d84632;
  --gold: #f5b84b;
  --cyan: #60a5fa;
  --night: #10202a;
  --electric: #8ab4ff;
  --graphite: #09141b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 247, 255, 0.94) 42%, #f8faff),
    linear-gradient(115deg, rgba(37, 99, 235, 0.16), transparent 34%, rgba(216, 70, 50, 0.1) 72%, transparent),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.06) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(17, 24, 34, 0.04) 0 1px, transparent 1px 88px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; }

.gc-loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(244, 247, 255, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

html[data-gc-loader-boot="1"] .gc-loader-overlay,
.gc-loader-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gc-loader-shell {
  width: min(280px, calc(100vw - 48px));
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
}

.gc-loader-shell[data-mode="auth"] {
  width: min(360px, calc(100vw - 48px));
  padding: 30px 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)),
    #ffffff;
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.18);
}

.gc-loader-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.9);
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.gc-loader-badge img {
  width: 20px;
  height: 20px;
}

.gc-loader-ring {
  position: relative;
  width: 148px;
  height: 148px;
}

.gc-loader-ring svg {
  width: 148px;
  height: 148px;
  transform: rotate(-90deg);
}

.gc-loader-track,
.gc-loader-progress {
  fill: none;
  stroke-width: 8;
}

.gc-loader-track {
  stroke: rgba(148, 163, 184, 0.22);
}

.gc-loader-progress {
  stroke: #2563eb;
  stroke-linecap: round;
  filter: drop-shadow(0 0 14px rgba(37, 99, 235, 0.28));
  transition: stroke-dashoffset 120ms linear;
}

.gc-loader-center {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.gc-loader-center strong {
  font-size: 34px;
  line-height: 1;
  color: var(--brand-navy);
}

.gc-loader-center span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.gc-loader-label {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.gc-loader-meta {
  margin: -4px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.bar,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand span {
  background: linear-gradient(90deg, var(--night), var(--red-dark) 60%, var(--coral));
  background-clip: text;
  color: transparent;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
  font-weight: 750;
}

nav form {
  margin: 0;
}

.app-nav {
  justify-content: flex-end;
  row-gap: 10px;
}

.app-nav-public {
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.app-nav-public a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
}

.app-nav-public a:hover {
  background: #eff6ff;
  color: #0f2f82;
}

.app-nav-auth {
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.app-nav-auth a,
.app-nav-auth .link-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
}

.app-nav-auth a:hover,
.app-nav-auth .link-button:hover {
  background: #eff6ff;
  color: #0f2f82;
}

nav a:hover,
.link-button:hover {
  color: var(--red);
}

.translate-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.translate-menu span {
  color: var(--ink);
}

.translate-menu a {
  color: var(--red);
  text-decoration: none;
}

.translate-menu a:hover {
  color: var(--coral);
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--red);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--red);
}

.link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

main {
  flex: 1;
  padding: 56px 0 70px;
}

.is-waiting {
  opacity: 0;
  transform: translateY(18px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero {
  min-height: calc(100vh - 190px);
  max-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 54px;
  align-items: center;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -26px;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--electric), var(--coral));
  box-shadow: 0 0 28px rgba(96, 165, 250, 0.42);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: 0;
}

p {
  line-height: 1.55;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #33414c;
  font-size: 20px;
}

.lead.small {
  margin-top: 12px;
  font-size: 17px;
}

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

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

.hero-proof div {
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(17, 24, 34, 0.06);
}

.hero-proof strong,
.platform-card h2,
.launch-shell h2 {
  display: block;
}

.hero-proof strong {
  font-size: 15px;
  font-weight: 850;
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.button,
button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 18px;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.primary,
button {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), #60a5fa);
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(17, 24, 34, 0.12);
}

.link-button {
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  box-shadow: none;
}

.link-button:hover {
  transform: none;
  box-shadow: none;
}

.network-stage {
  position: relative;
  aspect-ratio: 1;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(9, 20, 27, 0.96), rgba(16, 27, 61, 0.92)),
    linear-gradient(90deg, rgba(96, 165, 250, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(96, 165, 250, 0.1) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  box-shadow: 0 30px 90px rgba(9, 20, 27, 0.3);
}

.network-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(96, 165, 250, 0.06),
    0 0 0 118px rgba(216, 70, 50, 0.07);
}

.network-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 30%, rgba(255, 255, 255, 0.72) 45%, transparent 61%),
    linear-gradient(180deg, transparent, rgba(16, 32, 42, 0.05));
  transform: translateX(-45%);
  animation: sweep 7s ease-in-out infinite;
}

.signal-map {
  position: absolute;
  inset: 0;
}

.node,
.route,
.pulse {
  position: absolute;
  display: block;
}

.node {
  z-index: 2;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(216, 70, 50, 0.13), 0 12px 24px rgba(17, 24, 34, 0.16);
}

.node-main {
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(96, 165, 250, 0.28);
}

.node-main img {
  width: 74px;
  height: 74px;
}

.n1 { left: 18%; top: 22%; background: var(--gold); }
.n2 { right: 16%; top: 28%; background: var(--red); }
.n3 { left: 20%; bottom: 20%; background: var(--blue); }
.n4 { right: 22%; bottom: 18%; background: var(--coral); }

.route {
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 36%;
  height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.72), rgba(216, 70, 50, 0));
  overflow: hidden;
}

.route::after {
  content: "";
  position: absolute;
  width: 38%;
  inset: 0 auto 0 -40%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: packet 2.8s linear infinite;
}

.r1 { transform: rotate(-139deg); }
.r2 { transform: rotate(-31deg); }
.r3 { transform: rotate(141deg); }
.r4 { transform: rotate(37deg); }

.pulse {
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(37, 99, 235, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-out infinite;
}

.p2 {
  animation-delay: 1.8s;
}

.stage-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(9, 20, 27, 0.9);
  color: #fff;
  padding: 16px;
  box-shadow: 0 16px 42px rgba(16, 32, 42, 0.26);
}

.stage-panel span,
.stage-panel small {
  color: rgba(255, 255, 255, 0.72);
}

.stage-panel strong {
  font-size: 24px;
}

.token-stage {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 25%, rgba(37, 99, 235, 0.22), transparent 28%),
    linear-gradient(145deg, #fff, #edf7f8);
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.12);
}

.token-stage img {
  position: relative;
  z-index: 2;
  width: min(58%, 280px);
  height: auto;
}

.token-ring {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 13, 47, 0.28);
  border-radius: 50%;
}

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

.info-card,
.panel,
.contract-box,
.auth-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(20, 20, 20, 0.05);
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--coral));
}

.info-card span,
.contract-box span,
.muted {
  color: var(--muted);
}

.info-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: rgba(16, 32, 42, 0.1);
  box-shadow: 0 20px 46px rgba(17, 24, 34, 0.08);
}

.signal-strip div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 251, 0.88)),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.05) 0 1px, transparent 1px 34px);
  padding: 18px;
}

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

.platform-card {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,247,255,0.96)),
    var(--paper);
  padding: 24px;
  box-shadow: 0 18px 42px rgba(17, 24, 34, 0.08);
}

.platform-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.platform-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.platform-card p {
  margin: 0;
  color: #33414c;
}

.launch-band {
  margin-top: 56px;
}

.launch-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 27, 61, 0.98), rgba(37, 99, 235, 0.95));
  color: #fff;
  padding: 30px 32px;
  box-shadow: 0 24px 56px rgba(16, 27, 61, 0.26);
}

.launch-shell .eyebrow,
.launch-shell p {
  color: rgba(255, 255, 255, 0.84);
}

.launch-shell h2 {
  margin: 8px 0 10px;
  font-size: 34px;
  line-height: 1.04;
}

.launch-shell .button {
  border-color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.launch-shell .button.primary {
  background: #fff;
  color: var(--brand-navy);
  border-color: #fff;
}

.signal-strip span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.signal-strip strong {
  font-size: 22px;
}

.signal-strip small {
  color: var(--muted);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.split {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.support-band {
  margin-top: 36px;
}

.buy-section {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.payment-trust-strip {
  max-width: 960px;
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(16, 32, 42, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 9px 12px;
  box-shadow: 0 10px 22px rgba(17, 24, 34, 0.07);
}

.metrics-rail {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metrics-rail div {
  min-height: 130px;
  display: grid;
  align-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(9, 20, 27, 0.96), rgba(8, 88, 82, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 38px);
  color: #fff;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(17, 24, 34, 0.13);
  transform: perspective(700px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.metrics-rail div::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric), var(--gold), var(--coral));
}

.metrics-rail span {
  color: #ffffff;
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
}

.metrics-rail small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.payment-powered {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(16, 32, 42, 0.1);
  padding-right: 12px;
}

.payment-powered strong {
  color: #635bff;
  font-size: 17px;
  line-height: 1;
  font-weight: 950;
  text-transform: lowercase;
  letter-spacing: 0;
}

.card-network-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.card-logo {
  min-width: 68px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(16, 32, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 24, 34, 0.08);
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.card-logo.visa {
  color: #1434cb;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.03em;
}

.card-logo.mastercard {
  gap: 0;
  color: #1f2937;
  font-size: 9px;
}

.card-logo.mastercard i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
}

.card-logo.mastercard i:first-child {
  background: #eb001b;
  margin-right: -6px;
}

.card-logo.mastercard i:nth-child(2) {
  background: #f79e1b;
}

.card-logo.mastercard b {
  margin-left: 5px;
  font-size: 8px;
}

.card-logo.amex {
  background: #2e77bc;
  color: #ffffff;
  border-color: #2e77bc;
  font-size: 13px;
}

.card-logo.discover {
  color: #111827;
  background: linear-gradient(90deg, #ffffff 0 48%, #f58220 48% 100%);
}

.card-logo.diners {
  color: #0079be;
  border-color: rgba(0, 121, 190, 0.32);
}

.verify-band {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 42, 0.96), rgba(16, 27, 61, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 54px);
  color: #fff;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(16, 32, 42, 0.18);
}

.verify-band .eyebrow {
  color: #8ab4ff;
}

.verify-band p {
  color: rgba(255, 255, 255, 0.74);
}

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

.inventory-grid .info-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}

.inventory-grid .info-card span {
  color: rgba(255, 255, 255, 0.72);
}

.buy-section > div:first-child {
  max-width: 760px;
}

.buy-section h2 {
  max-width: 760px;
}

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

.action-card,
.pricing-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 245, 0.92)),
    repeating-linear-gradient(135deg, rgba(37, 99, 235, 0.045) 0 1px, transparent 1px 18px);
  padding: 18px;
  box-shadow: 0 16px 38px rgba(17, 24, 34, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-card::after,
.pricing-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 50%;
}

.action-card:hover,
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(17, 24, 34, 0.12);
}

.action-card h3,
.pricing-card h3 {
  margin: 0;
  font-size: 18px;
}

.action-card p,
.pricing-card p {
  flex: 1;
  color: var(--muted);
  font-size: 14px;
}

.pricing-card {
  min-height: 330px;
  background:
    linear-gradient(180deg, #ffffff, #f6fbfa),
    repeating-linear-gradient(135deg, rgba(37, 99, 235, 0.045) 0 1px, transparent 1px 18px);
  transform: perspective(700px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.34);
  background:
    linear-gradient(180deg, #ffffff, #effaf8),
    repeating-linear-gradient(135deg, rgba(37, 99, 235, 0.07) 0 1px, transparent 1px 18px);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.16);
}

.plan-ribbon {
  align-self: flex-start;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #10202a;
  color: #ffffff;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 12px;
}

.plan-price strong {
  color: var(--red-dark);
  font-size: 40px;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: #33414c;
  font-size: 13px;
}

.pricing-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
}

.action-card a,
.pricing-card a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  background: #fff;
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease;
}

.action-card a:hover,
.pricing-card a:hover {
  background: var(--red);
  color: #fff;
}

.contract-box,
.panel {
  padding: 22px;
}

code {
  display: block;
  margin-top: 8px;
  color: var(--red-dark);
  font: 13px/1.5 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
}

.auth-wrap {
  min-height: 68vh;
  display: grid;
  place-items: center;
}

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

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

.auth-card h1,
.page-head h1 {
  font-size: clamp(34px, 6vw, 64px);
}

label {
  display: block;
  margin: 16px 0 7px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.captcha-box {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 12px;
}

.captcha-box label {
  margin-top: 0;
}

form button {
  margin-top: 18px;
}

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

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

.client-account-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 18px;
}

.account-metric {
  min-height: 116px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(19, 35, 58, 0.07);
  padding: 16px;
}

.account-metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-metric strong {
  color: var(--night);
  font-size: 24px;
  line-height: 1;
}

.account-metric small {
  color: var(--muted);
  line-height: 1.35;
}

.balance-metric {
  border-color: rgba(37, 99, 235, 0.28);
  background: linear-gradient(180deg, #ffffff, #eef5ff);
}

.account-payment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.topup-form {
  min-width: min(360px, 100%);
}

.inline-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.payment-action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.danger-button {
  border-color: #b42318 !important;
  background: #b42318 !important;
  color: #ffffff !important;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin: 26px 0 18px;
}

.details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.details dt {
  color: var(--muted);
  font-weight: 800;
}

.details dd {
  margin: 0 0 10px;
}

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

.message {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfcfd;
}

.message div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.message span {
  color: var(--muted);
  font-size: 13px;
}

.status {
  display: inline-flex;
  margin-top: 6px;
  border-radius: 999px;
  padding: 4px 9px;
  font-style: normal;
  font-weight: 850;
  font-size: 12px;
}

.status.open { background: #fff3d8; color: var(--amber); }
.status.review { background: #fff3d8; color: var(--amber); }
.status.answered { background: #e9f1ff; color: var(--blue); }
.status.closed { background: #eef4ff; color: var(--accent-positive); }
.status.approved { background: #eef4ff; color: var(--accent-positive); }
.status.rejected { background: #fff1f4; color: #8d001b; }
.status.paid_waiting_approval { background: #fff3d8; color: var(--amber); }
.status.expired { background: #f4f4f5; color: #52525b; }
.status.requested { background: #e9f1ff; color: var(--blue); }
.status.sent { background: #eef4ff; color: var(--accent-positive); }
.status.failed { background: #fff1f4; color: #8d001b; }

.dialer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 42, 0.96), rgba(37, 99, 235, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 54px);
  color: #fff;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(16, 32, 42, 0.18);
}

.dialer-head .eyebrow {
  color: #8ab4ff;
}

.dialer-head .lead {
  color: rgba(255, 255, 255, 0.76);
}

.dialer-status {
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.dialer-status span {
  color: #8ab4ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dialer-status strong {
  font-size: 38px;
  line-height: 1;
}

.dialer-status small {
  color: rgba(255, 255, 255, 0.72);
}

.dialer-layout {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.dialer-console {
  border: 1px solid rgba(16, 32, 42, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff, #f4f7fb),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.035) 0 1px, transparent 1px 32px);
  box-shadow: 0 24px 64px rgba(17, 24, 34, 0.14);
  padding: 20px;
}

.softphone-titlebar,
.softphone-brand,
.softphone-brand-mini {
  display: flex;
  align-items: center;
}

.softphone-titlebar {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(16, 32, 42, 0.08);
  padding-bottom: 12px;
}

.softphone-brand,
.softphone-brand-mini {
  gap: 10px;
}

.softphone-brand img,
.softphone-brand-mini img {
  width: 38px;
  height: 38px;
}

.softphone-brand strong,
.softphone-brand-mini strong {
  display: block;
  color: var(--night);
  font-size: 16px;
}

.softphone-brand span,
.softphone-brand-mini span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.softphone-pill {
  min-width: max-content;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: #eef4ff;
  color: #1d4ed8;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 950;
}

.dialer-display input {
  min-height: 64px;
  border-radius: 14px;
  background: #101b3d;
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: 0;
}

.caller-card {
  margin-bottom: 14px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  background: #f8faff;
  padding: 12px;
}

.caller-card label {
  margin-top: 0;
}

.caller-card small {
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

.keypad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.key {
  margin-top: 0;
  min-height: 72px;
  border-color: rgba(16, 32, 42, 0.12);
  background: #fff;
  color: var(--night);
  box-shadow: 0 8px 18px rgba(17, 24, 34, 0.06);
}

.key strong,
.phone-keys button strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.key small,
.phone-keys button small {
  display: block;
  min-height: 12px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.key:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.dialer-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 16px;
}

.dialer-actions .button,
.dialer-actions button {
  width: 100%;
  margin-top: 0;
}

.call-button {
  min-height: 56px;
  font-size: 18px;
}

.phone-control-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.round-control {
  width: 100%;
  aspect-ratio: 1;
  min-height: 58px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 42, 0.12);
  background: #ffffff;
  color: var(--night);
  box-shadow: 0 10px 20px rgba(17, 24, 34, 0.08);
  font-size: 12px;
  font-weight: 950;
}

.round-control.active {
  border-color: #2563eb;
  background: #eef4ff;
  color: #1d4ed8;
}

.call-round {
  min-height: 72px;
  border: 0;
  background: linear-gradient(180deg, #22c55e, #15803d);
  color: #ffffff;
  font-size: 15px;
  box-shadow: 0 14px 28px rgba(21, 128, 61, 0.28);
}

.end-round {
  min-height: 72px;
  border: 0;
  background: linear-gradient(180deg, #ef4444, #b91c1c);
  color: #ffffff;
  font-size: 15px;
  box-shadow: 0 14px 28px rgba(185, 28, 28, 0.24);
}

.end-round:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  filter: grayscale(0.2);
}

.volume-control {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: #fbfcff;
  padding: 10px 12px;
}

.volume-control label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.volume-control input[type="range"] {
  min-height: 22px;
  margin: 0;
  padding: 0;
  accent-color: #2563eb;
}

.volume-control span {
  color: var(--night);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.call-history {
  min-height: 100%;
}

.softphone-status {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 14px;
}

.softphone-status span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.softphone-status strong {
  font-size: 24px;
}

.softphone-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 12px;
}

.softphone-control-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.mini-dot.green { background: #22c55e; }
.mini-dot.red { background: #ef4444; }

.app-download {
  min-height: calc(100vh - 190px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 42, 0.96), rgba(37, 99, 235, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 54px);
  color: #fff;
  padding: 32px;
  box-shadow: 0 28px 70px rgba(16, 32, 42, 0.18);
}

.app-download .eyebrow {
  color: #8ab4ff;
}

.app-download .lead,
.app-download .muted {
  color: rgba(255, 255, 255, 0.76);
}

.install-app-button {
  min-height: 54px;
  border-color: #8ab4ff;
  background: #fff;
  color: var(--red-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.globalconnect-app-shell {
  min-height: calc(100vh - 190px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 42, 0.96), rgba(37, 99, 235, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 54px);
  color: #fff;
  padding: 32px;
  box-shadow: 0 28px 70px rgba(16, 32, 42, 0.18);
}

.globalconnect-app-shell .eyebrow {
  color: #8ab4ff;
}

.globalconnect-app-shell .lead {
  color: rgba(255, 255, 255, 0.78);
}

.globalconnect-app-copy {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.globalconnect-app-shell h1 {
  max-width: 640px;
  font-size: 72px;
  line-height: 0.98;
}

.app-command-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.app-service-tile {
  min-height: 152px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.app-service-tile span,
.app-service-tile em {
  color: #8ab4ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-service-tile strong {
  font-size: 20px;
}

.app-service-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.app-device {
  width: min(100%, 370px);
  aspect-ratio: 9 / 17.5;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  background: #0d1720;
  padding: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.app-device-top {
  width: 92px;
  height: 6px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.app-device-screen {
  height: calc(100% - 16px);
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  gap: 10px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #f9fbff, #edf3ff),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.06) 0 1px, transparent 1px 30px);
  color: var(--night);
  padding: 14px;
}

.app-status-row,
.app-brand-row,
.app-tabbar,
.app-mini-grid {
  display: flex;
  align-items: center;
}

.app-status-row {
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.app-brand-row {
  gap: 10px;
}

.app-brand-row img {
  width: 38px;
  height: 38px;
}

.app-brand-row strong,
.app-brand-row span,
.app-mini-grid strong,
.app-mini-grid span {
  display: block;
}

.app-brand-row span,
.app-mini-grid span {
  color: var(--muted);
  font-size: 11px;
}

.app-balance-card {
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.app-balance-card span,
.app-balance-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.app-balance-card strong {
  display: block;
  margin: 4px 0;
  color: var(--brand-blue);
  font-size: 24px;
}

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

.app-mini-grid a {
  min-height: 64px;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--night);
  padding: 10px;
  text-decoration: none;
}

.app-softphone-panel {
  min-height: 0;
  display: grid;
  gap: 8px;
  overflow: auto;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px;
}

.compact-phone-keys {
  gap: 6px;
}

.compact-phone-keys button {
  min-height: 34px;
}

.app-tabbar {
  justify-content: space-between;
  gap: 4px;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 999px;
  background: #fff;
  padding: 6px;
}

.app-tabbar a {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 8px 6px;
}

.app-tabbar a:first-child {
  background: var(--brand-blue);
  color: #fff;
}

.app-install-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.app-install-actions .hero-actions {
  justify-content: flex-end;
}

.app-install-actions .install-help {
  grid-column: 1 / -1;
}

.desktop-softphone {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.05) 0 1px, transparent 1px 42px);
  padding: 24px;
  box-shadow: 0 18px 48px rgba(16, 32, 42, 0.1);
}

.desktop-softphone h2 {
  margin-bottom: 8px;
}

.desktop-softphone p {
  color: var(--muted);
}

.desktop-softphone-status {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.desktop-softphone-status span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-softphone-status strong {
  color: var(--night);
  font-size: 22px;
}

.desktop-softphone-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.phone-shell {
  width: min(100%, 300px);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  background: #0d1720;
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.phone-top {
  width: 92px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-screen {
  height: calc(100% - 18px);
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #f9ffff, #eef4ff),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.06) 0 1px, transparent 1px 30px);
  color: var(--night);
  padding: 34px 22px;
}

.phone-preview-display {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 32, 42, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--night);
  text-align: center;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
}

.phone-keys {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.phone-keys button {
  min-height: 40px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #142632, #0b171f);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 24, 34, 0.16);
  font-weight: 850;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
}

.phone-keys button strong {
  color: #ffffff;
  font-size: 17px;
}

.phone-keys button small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
}

.phone-keys button:hover {
  border-color: #8ab4ff;
  background: linear-gradient(180deg, #2563eb, #101b3d);
  color: #ffffff;
}

.phone-preview-controls {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.preview-round {
  width: 100%;
  aspect-ratio: 1;
  min-height: 38px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #111f2a;
  color: #d7e4ef;
  font-size: 9px;
  font-weight: 950;
}

.preview-call {
  border: 0;
  background: linear-gradient(180deg, #22c55e, #15803d);
  color: #ffffff;
}

.preview-end {
  border: 0;
  background: linear-gradient(180deg, #ef4444, #b91c1c);
  color: #ffffff;
}

.phone-preview-actions {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.phone-preview-actions button,
.phone-preview-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(37, 99, 235, 0.45);
  border-radius: 8px;
  background: #ffffff;
  color: #101b3d;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: none;
}

.phone-preview-actions button:hover,
.phone-preview-actions a:hover {
  border-color: #101b3d;
  background: #eef4ff;
  color: #172554;
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.kyc-head {
  position: relative;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 42, 0.96), rgba(16, 27, 61, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 54px);
  color: #fff;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(16, 32, 42, 0.18);
}

.kyc-head .eyebrow {
  color: #8ab4ff;
}

.kyc-head .lead {
  color: rgba(255, 255, 255, 0.76);
}

.kyc-head .button {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.kyc-console {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.console-stat {
  min-height: 134px;
  display: grid;
  align-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: 0 16px 38px rgba(17, 24, 34, 0.07);
}

.console-stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--coral));
}

.console-stat span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.console-stat strong {
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
}

.console-stat small {
  color: var(--muted);
}

.console-stat.approved::before { background: var(--accent-positive); }
.console-stat.rejected::before { background: var(--coral); }
.console-stat.review::before { background: var(--gold); }

.kyc-board {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.messaging-layout {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.message-compose textarea {
  min-height: 180px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 18px;
  min-height: 18px;
}

.kyc-case {
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(17, 24, 34, 0.07);
  padding: 20px;
}

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

.kyc-case-head h2 {
  margin-bottom: 6px;
}

.kyc-case-head p,
.case-id {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.case-id {
  display: inline-flex;
  margin-bottom: 8px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--red-dark);
  font-weight: 900;
}

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

.kyc-fields div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 12px;
}

.kyc-fields .wide {
  grid-column: span 2;
}

.kyc-fields dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kyc-fields dd {
  margin: 0;
  overflow-wrap: anywhere;
}

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

.kyc-actions form {
  margin: 0;
}

.status-button {
  margin-top: 0;
  min-height: 38px;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.status-button.review {
  border-color: #f2d28a;
  color: var(--amber);
}

.status-button.approved {
  border-color: #b8cdfa;
  color: var(--accent-positive);
}

.status-button.rejected {
  border-color: #f0b5c0;
  color: #8d001b;
}

.sla-card {
  display: grid;
  gap: 5px;
  margin: 14px 0 0;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 250, 248, 0.94)),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.055) 0 1px, transparent 1px 30px);
  padding: 14px;
}

.sla-card span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sla-card strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.sla-card small {
  color: var(--muted);
}

.sla-card.overdue {
  border-color: #f0b5c0;
  background: #fff1f4;
}

.sla-card.overdue span,
.sla-card.overdue strong {
  color: #8d001b;
}

.sla-card.complete {
  border-color: #b8cdfa;
  background: #eef4ff;
}

.sla-card.complete span,
.sla-card.complete strong {
  color: #1d4ed8;
}

.admin-sla {
  margin-top: 16px;
}

.notice,
.error {
  margin: 12px 0;
  border-radius: 8px;
  padding: 12px;
}

.notice {
  border: 1px solid #b8cdfa;
  background: #eef4ff;
  color: #1d4ed8;
}

.error {
  border: 1px solid #f0b5c0;
  background: #fff1f4;
  color: #8d001b;
}

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

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

.status-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.status-form select {
  max-width: 180px;
}

.status-form button {
  margin-top: 0;
}

.api-key-form {
  align-items: stretch;
  flex-wrap: wrap;
}

.api-key-form input,
.api-key-form select {
  min-width: 190px;
}

.credential-note {
  flex: 1 1 260px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: rgba(37, 99, 235, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
}

.credential-note strong,
.credential-note span {
  display: block;
}

.credential-note span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

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

.sip-summary-grid div {
  border: 1px solid rgba(16, 32, 42, 0.1);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 12px;
}

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

.sip-summary-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.sip-summary-grid strong {
  margin-top: 4px;
  color: var(--night);
}

.approval-table-wrap {
  overflow-x: auto;
}

.approval-table td strong,
.approval-table td span {
  display: block;
}

.compact-status-form {
  margin-top: 0;
  flex-wrap: nowrap;
}

.compact-status-form select {
  min-width: 120px;
}

.sender-action-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.sender-action-row button {
  width: auto;
  margin-top: 0;
}

.danger-send {
  background: #d1122f;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(209, 18, 47, 0.22);
}

.danger-send:hover {
  background: #a80f27;
}

.secondary-send {
  background: #f6f8ff;
  color: #101b3d;
  border: 1px solid var(--line);
}

.sender-banner {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(16, 27, 61, 0.14);
}

.globalconnect-banner {
  background: #2563eb;
}

.amazon-banner {
  background: #101b3d;
}

footer {
  position: relative;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-bar {
  min-height: 58px;
}

.ai-credit {
  width: min(1180px, calc(100% - 32px));
  margin: -8px auto 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  color: rgba(77, 89, 111, 0.78);
  font-size: 11px;
}

.ai-mark {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #101b3d, #2563eb);
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.22);
}

@keyframes sweep {
  0%, 35% { transform: translateX(-55%); opacity: 0; }
  52% { opacity: 1; }
  100% { transform: translateX(55%); opacity: 0; }
}

@keyframes packet {
  to { transform: translateX(380%); }
}

@keyframes pulse {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.55); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}

@media (max-width: 820px) {
  .bar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  main {
    padding-top: 36px;
  }

  .hero,
  .split,
  .dashboard-grid,
  .verify-band,
  .dialer-head,
  .dialer-layout,
  .messaging-layout,
  .globalconnect-app-shell,
  .app-install-actions,
  .desktop-softphone,
  .app-download {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero {
    max-height: none;
    gap: 34px;
  }

  .network-stage {
    min-height: 340px;
  }

  .info-grid,
  .signal-strip,
  .metrics-rail,
  .kyc-console {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kyc-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sip-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .app-install-actions .hero-actions {
    justify-content: flex-start;
  }

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

  .message div,
  .kyc-case-head,
  .footer-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .ai-credit {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .info-grid,
  .signal-strip,
  .inventory-grid,
  .metrics-rail,
  .kyc-console,
  .kyc-fields {
    grid-template-columns: 1fr;
  }

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

  .kyc-fields .wide {
    grid-column: auto;
  }

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

  .globalconnect-app-shell {
    padding: 22px;
  }

  .globalconnect-app-shell h1 {
    font-size: 48px;
  }

  .app-command-row,
  .app-install-actions .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .app-device {
    width: min(100%, 340px);
  }

  .payment-trust-strip,
  .payment-powered,
  .card-network-row {
    justify-content: center;
  }

  .payment-trust-strip {
    flex-direction: column;
  }

  .payment-powered {
    border-right: 0;
    padding-right: 0;
  }

  h1 {
    font-size: 44px;
  }

  .network-stage {
    min-height: 300px;
  }

  .node-main {
    width: 92px;
    height: 92px;
  }

  .node-main img {
    width: 58px;
    height: 58px;
  }

  .stage-panel strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}


.client-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.client-console-main {
  min-width: 0;
}

.client-services-rail {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.rail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(19, 35, 58, 0.08);
  padding: 18px;
}

.rail-brand h2 {
  margin: 4px 0 8px;
  font-size: 22px;
}

.service-links {
  display: grid;
  gap: 10px;
}

.service-link {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  text-decoration: none;
  background: #fbfcfd;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  border-color: var(--blue);
  background: #f4f8ff;
  transform: translateY(-1px);
}

.service-link span {
  font-weight: 850;
}

.service-link small {
  color: var(--muted);
  line-height: 1.35;
}

.service-link.active {
  border-color: var(--blue);
  background: #eef5ff;
}

.service-link.locked {
  background: #f8fafc;
}

.rail-status strong {
  display: block;
  margin-bottom: 10px;
}

.rail-status ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.pending-funds-panel {
  border-color: rgba(180, 35, 24, 0.18);
}

.pending-funds-list {
  display: grid;
  gap: 14px;
}

.pending-fund-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 16px;
}

.pending-fund-card.paid_waiting_approval,
.pending-fund-card.pending {
  border-color: rgba(166, 95, 0, 0.28);
  background: #fffaf0;
}

.pending-fund-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.pending-fund-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.pending-fund-amount {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 160px;
}

.pending-fund-amount strong {
  font-size: 24px;
}

.pending-funds-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 10px;
}

@media (max-width: 980px) {
  .client-account-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-payment-panel {
    grid-template-columns: 1fr;
  }

  .payment-action-row {
    justify-content: flex-start;
  }

  .pending-fund-head,
  .pending-funds-actions,
  .inline-form-row {
    grid-template-columns: 1fr;
  }

  .pending-fund-head {
    display: grid;
  }

  .pending-fund-amount {
    justify-items: start;
  }

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

  .client-services-rail {
    position: static;
    order: -1;
  }
}

@media (max-width: 640px) {
  .form-grid.two,
  .client-account-strip {
    grid-template-columns: 1fr;
  }
}

.number-market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.number-order-form {
  display: block;
}

.capability-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin: 16px 0;
  background: #fbfcfd;
}

.capability-picker legend {
  padding: 0 6px;
  font-weight: 850;
}

.capability-picker label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.number-side-stack {
  display: grid;
  gap: 14px;
}

.clean-steps {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.number-feature-card {
  display: grid;
  gap: 8px;
}

.number-feature-card span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .number-market-layout {
    grid-template-columns: 1fr;
  }

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

.legal-calling-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

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

.legal-plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 18px 45px rgba(19, 35, 58, 0.08);
}

.legal-plan-card h2 {
  margin-top: 0;
  font-size: 22px;
}

.legal-plan-card p,
.legal-rules-card p {
  color: var(--muted);
  line-height: 1.55;
}

.legal-plan-card ul {
  margin: 14px 0 18px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-plan-card form {
  margin-top: auto;
}

@media (max-width: 980px) {
  .legal-calling-layout,
  .legal-plan-grid {
    grid-template-columns: 1fr;
  }
}

.public-calling-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  margin: 34px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f6fbff 52%, #f7fbf8 100%);
  box-shadow: 0 24px 60px rgba(19, 35, 58, 0.08);
}

.public-calling-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.public-calling-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
  max-width: 680px;
}

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

.public-calling-tile {
  display: grid;
  gap: 8px;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.public-calling-tile strong {
  font-size: 18px;
}

.public-calling-tile span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .public-calling-band,
  .public-calling-grid {
    grid-template-columns: 1fr;
  }

  .public-calling-band {
    padding: 20px;
  }
}

.ops-log {
  overflow: auto;
  max-height: 680px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1720;
  color: #d7f7e5;
  padding: 16px;
  line-height: 1.5;
  font-size: 13px;
  white-space: pre-wrap;
}

.public-call-center-band,
.call-center-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  margin: 34px 0;
}

.public-call-center-band {
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(19, 35, 58, 0.08);
}

.public-call-center-band h2,
.call-center-hero h1 {
  margin: 8px 0 12px;
}

.public-call-center-band p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.call-center-signal-board,
.call-center-products {
  display: grid;
  gap: 14px;
}

.call-center-signal-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.call-center-signal-board div,
.call-center-tier {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 18px;
}

.call-center-signal-board strong {
  display: block;
  font-size: 30px;
}

.call-center-signal-board span,
.call-center-tier span,
.call-center-tier p,
.call-center-rules p {
  color: var(--muted);
}

.call-center-tier {
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(19, 35, 58, 0.08);
}

.call-center-tier h2 {
  margin: 8px 0;
}

.call-center-tier ul {
  margin: 14px 0 18px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .public-call-center-band,
  .call-center-layout,
  .call-center-signal-board {
    grid-template-columns: 1fr;
  }

  .public-call-center-band {
    padding: 20px;
  }
}

.demo-console-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.demo-console-main {
  min-width: 0;
}

.demo-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.demo-kpis div,
.demo-channel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.demo-kpis strong {
  display: block;
  font-size: 28px;
}

.demo-kpis span,
.demo-channel span,
.demo-rules-card p {
  color: var(--muted);
}

.demo-dialer-form {
  display: grid;
}

.demo-channel-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(58px, 1fr));
  gap: 8px;
}

.demo-channel {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 3px;
  text-align: center;
  background: #fbfcfd;
}

.demo-channel.live {
  border-color: #14a36f;
  background: #eefcf5;
}

.demo-channel.queued {
  border-color: #c28b00;
  background: #fff8df;
}

.demo-channel.review {
  border-color: var(--blue);
  background: #eef5ff;
}

@media (max-width: 980px) {
  .demo-console-layout,
  .demo-kpis {
    grid-template-columns: 1fr;
  }

  .demo-channel-grid {
    grid-template-columns: repeat(5, minmax(52px, 1fr));
  }
}

.callcenter-admin-kpis,
.callcenter-admin-layout {
  display: grid;
  gap: 18px;
  margin: 22px 0;
}

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

.callcenter-admin-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.callcenter-admin-kpis div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(19, 35, 58, 0.08);
}

.callcenter-admin-kpis strong {
  display: block;
  font-size: 30px;
}

.callcenter-admin-kpis span {
  color: var(--muted);
}

.callcenter-request.ready {
  border-color: #14a36f;
}

.readiness-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.vertical-actions {
  display: grid;
}

.compact-ops-log {
  max-height: 320px;
  font-size: 12px;
}

@media (max-width: 980px) {
  .callcenter-admin-kpis,
  .callcenter-admin-layout {
    grid-template-columns: 1fr;
  }
}

.gc-ai-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  font-family: inherit;
}

.gc-ai-launch {
  min-width: 168px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(16, 27, 61, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #101b3d, #2563eb);
  color: #fff;
  padding: 9px 14px;
  box-shadow: 0 18px 42px rgba(16, 27, 61, 0.28);
}

.gc-ai-launch span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f5b84b;
  color: #101b3d;
  font-weight: 950;
}

.gc-ai-launch strong {
  font-size: 15px;
}

.gc-ai-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(420px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(16, 27, 61, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(17, 24, 34, 0.24);
}

.gc-ai-panel header {
  min-height: auto;
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: #101b3d;
  color: #fff;
  padding: 14px 16px;
}

.gc-ai-panel header strong,
.gc-ai-panel header span {
  display: block;
}

.gc-ai-panel header span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.gc-ai-panel header button {
  min-width: 34px;
  min-height: 34px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  padding: 0;
}

.gc-ai-log {
  height: 360px;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 14px;
  background: #f6f8fb;
}

.gc-ai-message {
  max-width: 92%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  white-space: pre-wrap;
}

.gc-ai-message.user {
  justify-self: end;
  border-color: rgba(37, 99, 235, 0.25);
  background: #eaf1ff;
}

.gc-ai-message b {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: var(--brand-navy);
}

.gc-ai-message p {
  margin: 0;
  color: #24313d;
  font-size: 14px;
}

.gc-ai-message.thinking p {
  color: var(--muted);
}

.gc-ai-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  padding: 10px 12px;
}

.gc-ai-chips button {
  min-height: 34px;
  flex: 0 0 auto;
  border-color: rgba(37, 99, 235, 0.22);
  background: #ffffff;
  color: var(--brand-navy);
  box-shadow: none;
  font-size: 12px;
}

.gc-ai-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 12px;
  background: #fff;
}

.gc-ai-panel input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
}

.gc-ai-panel form button {
  min-height: 42px;
}

.affiliate-rate-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.affiliate-rate-buttons .button {
  min-height: 40px;
  border-color: rgba(37, 99, 235, 0.22);
  background: #ffffff;
  color: var(--brand-navy);
  box-shadow: none;
  font-size: 12px;
  font-weight: 800;
}

.affiliate-tier-note,
.affiliate-inline-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.gc-affiliate-surface {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 27, 61, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(17, 24, 34, 0.08);
}

.gc-affiliate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #101b3d;
  color: #fff;
  padding: 14px 16px;
}

.gc-affiliate-header strong,
.gc-affiliate-header span {
  display: block;
}

.gc-affiliate-header span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.gc-affiliate-surface .gc-ai-log {
  height: 260px;
  border-top: 1px solid rgba(16, 27, 61, 0.08);
  border-bottom: 1px solid rgba(16, 27, 61, 0.08);
}

.gc-affiliate-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  background: #fff;
}

.gc-affiliate-form input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
}

.gc-affiliate-form button {
  min-height: 42px;
}

@media (max-width: 640px) {
  .gc-ai-chat {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .gc-ai-launch {
    width: 100%;
    justify-content: center;
  }

  .gc-ai-panel {
    left: 0;
    right: 0;
    width: 100%;
  }

  .gc-ai-log {
    height: min(58vh, 390px);
  }

  .gc-affiliate-form {
    grid-template-columns: 1fr;
  }

  .affiliate-rate-buttons .button {
    width: 100%;
    justify-content: center;
  }

  .gc-affiliate-summary-grid,
  .gc-affiliate-product-grid,
  .gc-affiliate-product-grid.compact-grid {
    grid-template-columns: 1fr;
  }
}

body:has(.gc-client-console) {
  background: #eef3f8;
}

body:has(.gc-client-console) main {
  width: min(1440px, calc(100% - 24px));
  padding-top: 12px;
}

.gc-client-console {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.gc-console-sidebar {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 12px;
}

.gc-console-tenant,
.gc-console-help,
.gc-console-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.gc-console-tenant {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-color: rgba(15, 23, 42, 0.2);
  background: linear-gradient(180deg, #172033, #101827);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.gc-tenant-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #2d5bff, #0ea5e9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.gc-console-tenant strong,
.gc-console-tenant small {
  display: block;
}

.gc-console-tenant strong {
  color: #f8fafc;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.gc-console-tenant small,
.gc-console-help span {
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.35;
}

.gc-console-nav {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 8px;
  background: #172033;
  padding: 14px 12px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.gc-nav-section {
  display: grid;
  gap: 5px;
}

.gc-nav-label {
  margin: 0 0 3px;
  padding: 0 10px;
  color: #7f90ab;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gc-nav-item {
  display: grid;
  gap: 2px;
  border-radius: 8px;
  color: #d8e1ee;
  text-decoration: none;
  padding: 11px 12px;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.gc-nav-item:hover,
.gc-nav-item:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  transform: translateX(1px);
}

.gc-nav-item.active {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.26), rgba(14, 165, 233, 0.16));
  color: #ffffff;
  box-shadow: inset 3px 0 0 #4f7dff;
}

.gc-nav-item span {
  font-size: 13px;
  font-weight: 900;
}

.gc-nav-item small {
  color: #96a7c0;
  font-size: 11px;
  line-height: 1.25;
}

.gc-console-help {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-color: rgba(15, 23, 42, 0.18);
  background: #172033;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.gc-console-help strong {
  color: #f8fafc;
  font-size: 13px;
}

.gc-console-main {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.gc-console-utility {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 10px 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.gc-console-utility-brand {
  display: grid;
  gap: 2px;
}

.gc-console-utility-brand strong {
  color: #0f172a;
  font-size: 14px;
}

.gc-console-utility-brand span {
  color: #64748b;
  font-size: 12px;
}

.gc-console-utility-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.gc-utility-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.gc-utility-pill b {
  color: #0f172a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gc-console-topbar {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  padding: 18px 20px;
}

.gc-console-topbar h1 {
  margin: 4px 0 4px;
  color: #0f172a;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
}

.gc-console-topbar p {
  margin: 0;
  color: #64748b;
  max-width: 760px;
  font-size: 14px;
}

.gc-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gc-console-alert {
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 750;
}

.gc-console-alert.good {
  border-color: rgba(20, 163, 111, 0.24);
  background: #ecfdf5;
  color: #047857;
}

.gc-console-alert.danger {
  border-color: rgba(216, 70, 50, 0.24);
  background: #fff1f0;
  color: #b42318;
}

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

.gc-metric {
  min-height: 108px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  padding: 16px;
}

.gc-metric.primary {
  border-color: rgba(37, 99, 235, 0.24);
  background: linear-gradient(180deg, #ffffff, #eef5ff);
}

.gc-metric span,
.gc-activity-grid span {
  color: #64748b;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.gc-metric strong {
  color: #0f172a;
  font-size: 29px;
  line-height: 1;
}

.gc-metric small,
.gc-activity-grid small {
  color: #64748b;
  line-height: 1.3;
}

.gc-console-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 14px;
  align-items: start;
}

.gc-console-left,
.gc-console-right {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.gc-console-right {
  position: sticky;
  top: 90px;
}

.gc-console-card {
  padding: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.gc-console-card.compact {
  padding: 14px;
}

.gc-console-card h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.15;
}

.gc-console-card p {
  margin-top: 0;
}

.affiliate-console-card {
  border-color: rgba(37, 99, 235, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.03) 0 1px, transparent 1px 34px);
}

.gc-affiliate-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.gc-affiliate-summary-grid article,
.gc-affiliate-payout-current {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: #f8fbff;
}

.gc-affiliate-summary-grid span,
.gc-affiliate-payout-current span,
.gc-affiliate-link-box label {
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gc-affiliate-summary-grid strong,
.gc-affiliate-payout-current strong {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.1;
}

.gc-affiliate-summary-grid small,
.gc-affiliate-payout-current small {
  color: #64748b;
  line-height: 1.4;
}

.gc-affiliate-link-box {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.92));
}

.gc-affiliate-link-box code {
  display: block;
  overflow-wrap: anywhere;
  border: 1px dashed rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: #16326b;
  padding: 10px 12px;
  font-size: 12px;
}

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

.gc-affiliate-product-grid.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-affiliate-product-card {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  color: inherit;
  text-decoration: none;
}

.gc-affiliate-product-card strong {
  color: #0f172a;
  font-size: 15px;
}

.gc-affiliate-product-card span {
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.gc-affiliate-product-card small {
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
}

.gc-affiliate-payout-form {
  margin-top: 14px;
}

.gc-rule-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #475569;
  line-height: 1.5;
}

.gc-rule-list li {
  margin: 0;
}

.gc-billing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: 18px;
  align-items: end;
}

.gc-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.gc-client-console .button,
.gc-client-console button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  box-shadow: none;
}

.gc-client-console .button:hover,
.gc-client-console button:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

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

.compact-product-head {
  margin: 10px 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.compact-product-head h1 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.05;
}

.compact-product-head .lead {
  margin: 0;
  max-width: 780px;
}

.gc-product-shell {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 16px;
  align-items: start;
}

.gc-product-main,
.gc-product-side {
  display: grid;
  gap: 16px;
}

.gc-client-console .platform-card {
  min-height: 0;
  padding: 18px;
  gap: 10px;
  box-shadow: none;
}

.gc-client-console .platform-card h2 {
  font-size: 18px;
}

.gc-client-console .platform-card p {
  font-size: 13px;
  line-height: 1.5;
}

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

.gc-sidebar-list div {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #f8fafc;
}

.gc-sidebar-list strong {
  color: #0f172a;
  font-size: 13px;
}

.gc-sidebar-list span {
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.compact-compose,
.compact-order-form {
  display: grid;
  gap: 12px;
}

.compact-compose textarea,
.compact-order-form textarea {
  min-height: 140px;
}

.gc-inline-form label {
  grid-column: 1 / -1;
  margin-top: 0;
}

.gc-section-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.gc-status-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.gc-status-pill.good {
  border-color: rgba(20, 163, 111, 0.26);
  background: #ecfdf5;
  color: #047857;
}

.gc-status-pill.warn {
  border-color: rgba(166, 95, 0, 0.26);
  background: #fff7ed;
  color: #a65f00;
}

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

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

.gc-readiness-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 2px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
}

.gc-readiness-list strong {
  color: #0f172a;
  font-size: 13px;
}

.gc-readiness-list small {
  grid-column: 2;
  color: #64748b;
  line-height: 1.35;
}

.gc-dot {
  width: 10px;
  height: 10px;
  align-self: center;
  border-radius: 50%;
  background: #94a3b8;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.16);
}

.gc-dot.good { background: #14a36f; box-shadow: 0 0 0 4px rgba(20, 163, 111, 0.14); }
.gc-dot.warn { background: #f59e0b; box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16); }
.gc-dot.idle { background: #94a3b8; }

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

.gc-form-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.ivr-builder-grid {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
}

.ivr-step-row {
  display: grid;
  grid-template-columns: 42px minmax(180px, 260px) 1fr;
  gap: 8px;
  align-items: center;
}

.ivr-step-row span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-weight: 900;
  font-size: 12px;
}

.gc-ai-assist-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  padding: 12px;
}

.gc-ai-assist-box summary {
  cursor: pointer;
  font-weight: 900;
}

.api-result {
  max-height: 360px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 12px;
}

.gc-request-form label,
.gc-compact-form label {
  margin-top: 10px;
  font-size: 12px;
}

.gc-request-form textarea {
  min-height: 100px;
}

.gc-compact-form textarea {
  min-height: 82px;
}

.gc-compact-form input,
.gc-compact-form textarea,
.gc-compact-form select,
.gc-request-form input,
.gc-request-form textarea,
.gc-request-form select,
.gc-inline-form input {
  min-height: 38px;
  border-color: #d8e2ea;
  background: #fbfdff;
  font-size: 14px;
}

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

.gc-activity-grid div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
}

.gc-activity-grid strong {
  color: #0f172a;
  font-size: 18px;
}

.gc-console-card .message-list {
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .gc-client-console,
  .gc-console-split {
    grid-template-columns: 1fr;
  }

  .gc-console-sidebar,
  .gc-console-right {
    position: static;
  }

  .gc-console-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gc-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gc-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gc-product-shell {
    grid-template-columns: 1fr;
  }

  .gc-console-utility {
    display: grid;
    justify-content: stretch;
  }

  .gc-console-utility-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body:has(.gc-client-console) main {
    width: min(100% - 18px, 100%);
  }

  .compact-product-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gc-console-topbar,
  .gc-console-utility,
  .gc-section-head {
    display: grid;
  }

  .gc-topbar-actions {
    justify-content: flex-start;
  }

  .gc-console-nav,
  .gc-nav-section,
  .gc-metric-grid,
  .gc-service-grid,
  .gc-readiness-list,
  .gc-form-row,
  .gc-activity-grid {
    grid-template-columns: 1fr;
  }

  .gc-inline-form {
    grid-template-columns: 1fr;
  }

  .app-nav,
  .app-nav-public,
  .app-nav-auth {
    justify-content: flex-start;
  }

  .gc-console-card,
  .gc-console-card.compact {
    padding: 14px;
  }

.gc-ai-chat:has(.gc-ai-launch[aria-expanded="false"]) {
    left: auto;
  }
}

.checkout-choice-grid,
.crypto-checkout-grid,
.tatum-wallet-head {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.checkout-summary-card,
.checkout-method-card,
.crypto-pay-card,
.crypto-wallet-card,
.crypto-alert,
.wallet-address-box,
.wallet-total-box {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.checkout-summary-card strong,
.crypto-pay-card strong,
.wallet-total-box strong {
  color: #0f172a;
  font-size: 26px;
}

.checkout-method-card {
  text-align: left;
}

.checkout-method-card button {
  align-self: end;
}

.checkout-method-card.crypto {
  border-color: rgba(34, 197, 94, 0.28);
  background: #f7fef9;
}

.checkout-method-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.checkout-method-toggle label {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  font-weight: 700;
}

.crypto-wallet-card code,
.wallet-address-box code {
  overflow-wrap: anywhere;
  white-space: normal;
}

.crypto-payment-hero {
  align-items: start;
  grid-template-columns: 260px minmax(0, 1fr);
  margin-bottom: 16px;
}

.crypto-qr-frame {
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px;
}

.crypto-qr {
  width: 240px;
  max-width: 100%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 4px;
  background: #fff;
  padding: 0;
  object-fit: contain;
}

.crypto-payment-details {
  display: grid;
  gap: 10px;
  align-content: start;
}

.wallet-address,
.wallet-address-field {
  display: block;
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px 12px;
  color: #0f172a;
  font: 600 13px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.crypto-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.copy-button.copied {
  border-color: rgba(22, 163, 74, 0.28);
  background: #dcfce7;
  color: #14532d;
}

.crypto-led {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.15);
}

.crypto-led.good,
.crypto-alert.good .crypto-led {
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.crypto-led.warn,
.crypto-alert.warn .crypto-led {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.crypto-led.danger,
.crypto-alert.danger .crypto-led {
  background: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.18), 0 0 20px rgba(220, 38, 38, 0.35);
}

.crypto-alert {
  align-content: start;
}

.crypto-alert.danger {
  border-color: rgba(220, 38, 38, 0.28);
  background: #fff5f5;
}

.crypto-alert.warn {
  border-color: rgba(245, 158, 11, 0.28);
  background: #fffbeb;
}

.crypto-alert.good {
  border-color: rgba(22, 163, 74, 0.22);
  background: #f0fdf4;
}

[hidden] {
  display: none !important;
}

.esim-prep-timer {
  --timer-progress: 360deg;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 16px 0;
  border: 1px solid rgba(14, 116, 144, 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, #ecfeff 0%, #f0fdf4 56%, #ffffff 100%);
  padding: 22px;
  box-shadow: 0 18px 44px rgba(15, 118, 110, 0.1);
}

.esim-timer-ring {
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffffff 62%, transparent 64%), conic-gradient(#0f766e var(--timer-progress), rgba(15, 118, 110, 0.12) 0);
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.08), 0 12px 28px rgba(15, 118, 110, 0.14);
}

.esim-timer-ring strong {
  color: #0f172a;
  font: 800 30px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: -1px;
}

.esim-timer-ring span,
.esim-timer-kicker {
  color: #0f766e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.esim-timer-copy {
  display: grid;
  gap: 9px;
}

.esim-timer-copy h2,
.esim-timer-copy p {
  margin: 0;
}

.esim-timer-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
}

.esim-timer-track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e, #22c55e);
  transition: width 0.9s linear;
}

.esim-prep-timer.complete {
  border-color: rgba(22, 163, 74, 0.3);
  background: #f0fdf4;
}

.esim-prep-timer.complete .esim-timer-ring {
  background: radial-gradient(circle at center, #ffffff 62%, transparent 64%), conic-gradient(#16a34a 360deg, #dcfce7 0);
}

@media (max-width: 900px) {
  .checkout-choice-grid,
  .crypto-checkout-grid,
  .tatum-wallet-head {
    grid-template-columns: 1fr;
  }

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

  .esim-prep-timer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .esim-timer-ring {
    margin: 0 auto;
  }
}

.docs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.docs-hero h1 {
  max-width: 920px;
}

.docs-quick-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
}

.docs-quick-card span {
  color: #93a4b8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.docs-quick-card code {
  display: block;
  overflow-wrap: anywhere;
  padding: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.docs-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.docs-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.docs-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #334155;
  text-decoration: none;
  font-weight: 750;
}

.docs-sidebar a:hover {
  background: #eef4ff;
  color: #0f172a;
}

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

.docs-section {
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.docs-section h2 {
  margin-top: 0;
}

.docs-table code,
.docs-section p code {
  padding: 2px 6px;
  border-radius: 4px;
  background: #eef4ff;
  color: #0f172a;
  font-weight: 750;
}

.docs-endpoint {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 16px 0;
}

.docs-endpoint strong {
  padding: 7px 10px;
  border-radius: 6px;
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
}

.docs-endpoint code {
  flex: 1;
  min-width: 260px;
  overflow-wrap: anywhere;
  padding: 9px 10px;
  border-radius: 6px;
  background: #f1f5f9;
}

.docs-code {
  margin: 16px 0 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #0f172a;
}

.docs-code figcaption {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.docs-code pre {
  margin: 0;
  padding: 16px;
  overflow-x: auto;
  white-space: pre;
}

.docs-code code {
  color: #f8fafc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .docs-hero,
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
  }
}
.gc-identity-card .mini-actions{margin-top:16px}
.gc-identity-container{min-height:520px;margin-top:18px;border:1px solid rgba(15,23,42,.12);border-radius:16px;overflow:hidden;background:#fff}
.gc-identity-container[hidden]{display:none}
.gc-identity-container iframe{display:block;width:100%;min-height:520px;border:0}
