:root {
  --edge-bg: #09090b;
  --edge-panel: #0c0c0f;
  --edge-line: #27272a;
  --edge-line-strong: #3f3f46;
  --edge-ink: #ffffff;
  --edge-muted: #b3b3bd;
  --edge-muted-strong: #d4d4d8;
  --edge-black: #000000;
  --edge-max: 1280px;
  --edge-gutter: clamp(1rem, 3vw, 2rem);
  --edge-font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --edge-font-mono: "JetBrains Mono", "SFMono-Regular", "Cascadia Code", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--edge-bg);
  scroll-behavior: smooth;
}

body.site {
  background: var(--edge-bg);
  color: var(--edge-ink);
  font-family: var(--edge-font-sans);
  font-size: 1rem;
  line-height: 1.58;
  margin: 0;
  min-width: 320px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.edge-drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

pre,
code {
  font-family: var(--edge-font-mono);
}

h1,
h2,
h3,
.edge-kicker,
.eyebrow,
.container-header .brand-logo,
.container-header .mod-menu a,
.container-header .metismenu-item > a,
.container-header .metismenu-item > button,
.er-anchor-nav a,
.er-mobile-toggle,
.er-mobile-title,
.er-mobile-close,
.er-mobile-nav a,
.edge-terminal-bar,
.edge-action,
.hero-actions a,
.inline-cta a,
.edge-doc-links a,
.edge-footer strong,
.edge-footer h2 {
  font-family: var(--edge-font-mono);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--edge-ink);
  letter-spacing: 0;
}

.sr-only {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.er-skip-link {
  background: var(--edge-ink);
  color: var(--edge-black);
  font-family: var(--edge-font-mono);
  font-size: 0.78rem;
  font-weight: 900;
  left: 0;
  padding: 0.75rem 1rem;
  position: fixed;
  text-decoration: none;
  text-transform: uppercase;
  top: 0;
  transform: translateY(-120%);
  transition: transform 140ms ease;
  z-index: 60;
}

.er-skip-link:focus {
  transform: translateY(0);
}

/* Cliff header: one strict 1280px grid, split into logo and nav columns. */
.container-header {
  align-items: center;
  background: var(--edge-bg) !important;
  border-bottom: 1px solid var(--edge-line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  color: var(--edge-ink);
  display: grid;
  grid-template-columns:
    minmax(var(--edge-gutter), 1fr)
    minmax(0, calc(var(--edge-max) / 2))
    minmax(0, calc(var(--edge-max) / 2))
    minmax(var(--edge-gutter), 1fr);
  min-height: 78px;
  overflow: visible;
  position: sticky;
  top: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
  z-index: 40;
}

.container-header.edge-header-hidden {
  transform: translateY(-100%);
}

.container-header:focus-within,
body.edge-drawer-open .container-header {
  transform: translateY(0);
}

.container-header::after {
  background: var(--edge-line);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.container-header > .grid-child {
  box-sizing: border-box;
  margin: 0;
  max-width: none;
  padding: 0;
  width: auto;
}

.container-header > .grid-child:not(.container-nav) {
  grid-column: 2;
}

.container-header > .container-nav {
  grid-column: 3;
  justify-self: stretch;
}

.container-header .navbar-brand {
  align-items: center;
  display: flex;
  gap: 0.9rem;
  justify-content: flex-start;
  min-height: 78px;
  padding: 0;
}

.container-header .brand-logo,
.container-header .navbar-brand > a {
  align-items: center;
  background: url("/templates/cliff/images/edgerecord-logo.svg") left center / contain no-repeat;
  color: var(--edge-ink);
  display: inline-flex;
  gap: 0.8rem;
  min-height: 52px;
  min-width: clamp(168px, 18vw, 228px);
  position: relative;
  text-decoration: none;
}

.container-header .brand-logo.edge-has-template-logo,
.container-header .navbar-brand > a.edge-has-template-logo {
  background: none;
  min-width: 0;
}

.container-header .brand-logo::before,
.container-header .navbar-brand > a::before {
  align-items: center;
  border: 1px solid var(--edge-line-strong);
  color: var(--edge-ink);
  content: none;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.container-header .brand-logo.edge-has-template-logo::before,
.container-header .brand-logo.edge-has-template-logo::after,
.container-header .navbar-brand > a.edge-has-template-logo::before,
.container-header .navbar-brand > a.edge-has-template-logo::after {
  content: none;
}

.container-header .brand-logo img.edge-template-logo,
.container-header .navbar-brand > a img.edge-template-logo {
  display: block;
  height: auto;
  max-height: 54px;
  width: clamp(168px, 18vw, 228px);
}

.container-header.edge-header-condensed .brand-logo img.edge-template-logo,
.container-header.edge-header-condensed .navbar-brand > a img.edge-template-logo {
  max-height: 46px;
}

.container-header .brand-logo span,
.container-header .navbar-brand > a span {
  color: var(--edge-ink);
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.container-header .brand-logo > img:not(.edge-template-logo),
.container-header .navbar-brand > a > img:not(.edge-template-logo),
.container-header .brand-logo > span,
.container-header .navbar-brand > a > span {
  display: none !important;
}

.container-header .site-description {
  color: var(--edge-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.container-header .container-nav {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  min-height: 78px;
  overflow: visible;
}

.container-header .mod-menu,
.container-header .metismenu.mod-menu,
.er-anchor-nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.25rem;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}

.container-header .mod-menu > li:nth-child(n+5),
.container-header .metismenu.mod-menu > li:nth-child(n+5) {
  display: none;
}

.edge-js .container-header .mod-menu,
.edge-js .container-header .metismenu.mod-menu,
.container-header .mod-menu.er-legacy-menu,
.container-header .metismenu.mod-menu.er-legacy-menu {
  display: none !important;
}

.container-header .er-anchor-nav {
  display: flex !important;
}

/* Compatibility layer for the pre-Cliff live header/home classes.
   This keeps old Joomla-rendered routes on the same grid until every page is republished. */
html:not(.edge-js) .er-top-strip-inner,
html:not(.edge-js) .container-header .grid-child,
html:not(.edge-js) .container-header .container-nav,
.er-home,
.er-live-footer,
.er-footer-bottom {
  box-sizing: border-box;
  margin-inline: auto !important;
  max-width: var(--edge-max) !important;
  width: min(calc(100% - (2 * var(--edge-gutter))), var(--edge-max)) !important;
}

html:not(.edge-js) .container-header .grid-child,
html:not(.edge-js) .container-header .container-nav,
.er-top-strip-inner,
.er-home,
.er-live-footer,
.er-footer-bottom {
  padding-inline: 0 !important;
}

html:not(.edge-js) .container-header .container-nav {
  display: flex;
  justify-content: flex-end;
}

html:not(.edge-js) .container-header .mod-menu,
html:not(.edge-js) .container-header .metismenu.mod-menu {
  flex-wrap: nowrap !important;
  overflow: hidden;
}

html:not(.edge-js) .container-header .mod-menu > li:nth-child(n+6),
html:not(.edge-js) .container-header .metismenu.mod-menu > li:nth-child(n+6) {
  display: none !important;
}

.container-header .mod-menu > li,
.container-header .metismenu-item {
  margin: 0;
  position: relative;
}

.container-header .mod-menu a,
.container-header .mod-menu button,
.container-header .metismenu-item > a,
.container-header .metismenu-item > button,
.er-anchor-nav a {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--edge-muted);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 0.42rem;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 0.76rem 0.86rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
  white-space: nowrap;
}

.container-header .mod-menu .current > a,
.container-header .mod-menu .active > a,
.container-header .metismenu-item.current > a,
.container-header .metismenu-item.active > a,
.er-anchor-nav a[aria-current="page"],
.container-header .mod-menu a:hover,
.container-header .mod-menu a:focus,
.container-header .mod-menu button:hover,
.container-header .mod-menu button:focus,
.container-header .metismenu-item > a:hover,
.container-header .metismenu-item > a:focus,
.container-header .metismenu-item > button:hover,
.container-header .metismenu-item > button:focus,
.er-anchor-nav a:hover,
.er-anchor-nav a:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--edge-line-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: var(--edge-ink);
  outline: 0;
}

.container-header .mod-menu > .parent > a::after,
.container-header .mod-menu > .deeper > a::after,
.container-header .metismenu-item.parent > a::after,
.container-header .metismenu-item.deeper > a::after,
.container-header .metismenu-item > button::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 0.4rem;
  opacity: 0.72;
  transform: rotate(45deg) translateY(-0.08rem);
  width: 0.4rem;
}

.container-header .mod-menu ul,
.container-header .mod-menu .mod-menu__sub,
.container-header .metismenu.mod-menu .mm-collapse,
.container-header .metismenu.mod-menu .mm-collapsing {
  background: var(--edge-bg);
  border: 1px solid var(--edge-line);
  display: grid;
  gap: 0.15rem;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 238px;
  opacity: 0;
  padding: 0.45rem;
  position: absolute;
  top: calc(100% + 0.5rem);
  transform: translateY(0.35rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
  z-index: 45;
}

.container-header .mod-menu li:hover > ul,
.container-header .mod-menu li:focus-within > ul,
.container-header .mod-menu li:hover > .mod-menu__sub,
.container-header .mod-menu li:focus-within > .mod-menu__sub,
.container-header .metismenu.mod-menu li:hover > .mm-collapse,
.container-header .metismenu.mod-menu li:focus-within > .mm-collapse,
.container-header .metismenu.mod-menu .mm-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.container-header .mod-menu ul a,
.container-header .mod-menu .mod-menu__sub a,
.container-header .metismenu.mod-menu .mm-collapse a {
  border-color: transparent;
  color: var(--edge-muted);
  justify-content: flex-start;
  min-height: 40px;
  padding: 0.7rem 0.75rem;
  width: 100%;
}

.container-header .mod-menu ul a:hover,
.container-header .mod-menu ul a:focus,
.container-header .mod-menu .mod-menu__sub a:hover,
.container-header .mod-menu .mod-menu__sub a:focus,
.container-header .metismenu.mod-menu .mm-collapse a:hover,
.container-header .metismenu.mod-menu .mm-collapse a:focus {
  background: var(--edge-ink);
  color: var(--edge-black);
}

.container-header .mod-menu ul ul,
.container-header .mod-menu .mod-menu__sub .mod-menu__sub,
.container-header .metismenu.mod-menu .mm-collapse .mm-collapse {
  left: calc(100% + 0.5rem);
  top: -0.45rem;
}

.container-header .navbar-toggler {
  display: none;
}

.er-mobile-toggle {
  align-items: center;
  background: var(--edge-black);
  border: 1px solid var(--edge-line-strong);
  color: var(--edge-ink);
  cursor: pointer;
  display: none;
  height: 48px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 48px;
}

.er-mobile-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  position: absolute;
  width: 20px;
}

.er-mobile-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.er-mobile-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.er-mobile-toggle:hover,
.er-mobile-toggle:focus,
.er-mobile-close:hover,
.er-mobile-close:focus,
.edge-action:hover,
.edge-action:focus,
.hero-actions a:hover,
.hero-actions a:focus,
.inline-cta a:hover,
.inline-cta a:focus,
.edge-doc-links a:hover,
.edge-doc-links a:focus {
  background: var(--edge-ink);
  color: var(--edge-black);
  outline: 0;
}

.er-mobile-drawer {
  background: var(--edge-bg);
  color: var(--edge-ink);
  display: block;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: fixed;
  z-index: 50;
}

.er-mobile-drawer[hidden] {
  display: none;
}

.er-mobile-drawer-inner {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100svh;
  padding: 0 var(--edge-gutter) max(1rem, env(safe-area-inset-bottom));
}

.er-mobile-drawer-head {
  align-items: center;
  border-bottom: 1px solid var(--edge-line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
}

.er-mobile-title {
  color: var(--edge-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.er-mobile-close {
  background: var(--edge-black);
  border: 1px solid var(--edge-line-strong);
  color: var(--edge-ink);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 900;
  min-height: 48px;
  padding: 0 1rem;
  text-transform: uppercase;
}

.er-mobile-nav {
  align-content: start;
  display: grid;
  gap: 1.1rem;
  padding-block: 1.3rem 2rem;
}

.er-mobile-quick {
  display: grid;
}

.er-mobile-quick a {
  align-items: center;
  border-bottom: 1px solid var(--edge-line);
  color: var(--edge-ink);
  display: flex;
  font-size: clamp(1.6rem, 8vw, 3.4rem);
  font-weight: 900;
  min-height: 74px;
  text-decoration: none;
}

.er-mobile-groups {
  display: grid;
  gap: 0.75rem;
}

.er-mobile-group {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.28rem;
  padding: 0.8rem;
}

.er-mobile-group-title {
  color: var(--edge-ink);
  display: flex;
  font-family: var(--edge-font-mono);
  font-size: 0.84rem;
  font-weight: 900;
  min-height: 32px;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.er-mobile-group a.er-mobile-group-title {
  color: var(--edge-ink);
  font-size: 0.84rem;
}

.er-mobile-group p {
  color: var(--edge-muted);
  font-size: 0.82rem;
  line-height: 1.35;
  margin: 0 0 0.35rem;
}

.er-mobile-group a {
  align-items: center;
  color: var(--edge-muted-strong);
  display: flex;
  font-size: 1rem;
  font-weight: 800;
  min-height: 42px;
  text-decoration: none;
}

.er-mobile-group a::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 0.42rem;
  margin-left: auto;
  transform: rotate(45deg);
  width: 0.42rem;
}

.er-mobile-nav a:hover,
.er-mobile-nav a:focus {
  color: var(--edge-muted-strong);
  outline: 0;
}

.site-grid {
  background: var(--edge-bg);
  margin-top: 0;
  padding: 0;
}

.grid-child.container-component,
.com-content-article {
  box-sizing: border-box;
  margin-inline: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

.com-content-article > *:not(.edge-home):not(.edge-hero):not(.edge-section):not(.edge-close):not(script):not(style) {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: var(--edge-max);
  width: min(calc(100% - (2 * var(--edge-gutter))), var(--edge-max));
}

.er-home,
.edge-home,
.edge-hero,
.edge-section,
.edge-close,
.edge-footer,
.edge-footer-bottom {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: var(--edge-max);
  width: min(calc(100% - (2 * var(--edge-gutter))), var(--edge-max));
}

.er-home,
.edge-home,
.edge-hero,
.edge-section {
  scroll-margin-top: 88px;
}

.edge-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.edge-hero-grid,
.edge-api-grid,
.edge-docs-grid,
.edge-footer {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.edge-hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.edge-hero-copy {
  max-width: 720px;
}

.edge-kicker,
.eyebrow {
  color: var(--edge-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.edge-hero h1,
.com-content-article .edge-hero h1 {
  color: var(--edge-ink);
  font-size: clamp(3.2rem, 10vw, 7.25rem);
  font-weight: 900;
  line-height: 0.92;
  margin: 0 0 1.15rem;
  max-width: 9ch;
  overflow-wrap: anywhere;
}

.edge-hero .lead,
.com-content-article .edge-hero .lead {
  color: var(--edge-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 62ch;
}

.hero-actions,
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.edge-action,
.hero-actions a,
.inline-cta a,
.com-content-article p.hero-actions a,
.com-content-article p.inline-cta a,
.edge-doc-links a {
  align-items: center;
  background: var(--edge-black);
  border: 1px solid var(--edge-ink);
  color: var(--edge-ink);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.edge-terminal {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005)), var(--edge-panel);
  border: 1px solid var(--edge-line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  color: var(--edge-muted-strong);
  min-width: 0;
}

.edge-terminal-bar {
  align-items: center;
  border-bottom: 1px solid var(--edge-line);
  color: var(--edge-muted);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 1rem;
  text-transform: uppercase;
}

.edge-terminal pre,
.edge-json {
  margin: 0;
  overflow-x: auto;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.edge-terminal code,
.edge-json code {
  color: var(--edge-muted-strong);
  display: block;
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  line-height: 1.65;
  min-width: 34rem;
}

.edge-section {
  border-top: 1px solid var(--edge-line);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.edge-section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 760px;
}

.edge-section h2,
.com-content-article .edge-section h2 {
  color: var(--edge-ink);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  max-width: 12ch;
}

.edge-section-copy,
.edge-section > p:not(.eyebrow):not(.inline-cta),
.edge-feature-card p,
.signal-grid span,
.offer-grid p,
.edge-footer p,
.edge-footer-bottom {
  color: var(--edge-muted);
}

.edge-feature-grid,
.signal-grid,
.offer-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.5rem 0 0;
}

.edge-feature-card,
.signal-grid article,
.offer-grid article,
.pricing-grid article,
.contact-panel,
.edge-close {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
  border: 1px solid var(--edge-line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  color: var(--edge-muted);
  min-height: 220px;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.edge-feature-card:hover,
.signal-grid article:hover,
.offer-grid article:hover,
.pricing-grid article:hover,
.contact-panel:hover,
.edge-close:hover {
  border-color: var(--edge-line-strong);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.edge-feature-card h3,
.signal-grid strong,
.offer-grid h3,
.offer-grid strong,
.pricing-grid strong {
  color: var(--edge-ink);
  display: block;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.edge-feature-card p,
.signal-grid p,
.offer-grid p,
.pricing-grid p {
  margin-bottom: 0;
}

.edge-api-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
}

.edge-api-grid .edge-section-head {
  margin-bottom: 0;
}

.edge-terminal-compact code {
  min-width: 40rem;
}

.edge-demo-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.edge-demo-form label {
  color: #d6ecff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.edge-demo-form textarea {
  background: linear-gradient(180deg, rgba(4, 11, 22, 0.96), rgba(2, 7, 16, 0.96));
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 10px;
  color: #f5fbff;
  min-height: 160px;
  padding: 0.95rem 1rem;
  resize: vertical;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.edge-demo-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.82);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
  outline: 0;
}

.edge-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.edge-action {
  border-radius: 10px;
}

.edge-action.edge-action-ghost {
  background: rgba(10, 18, 32, 0.8);
  border-color: rgba(148, 163, 184, 0.55);
  color: #dbe9f9;
}

.edge-demo-summary {
  background: rgba(8, 18, 34, 0.78);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 10px;
  color: #bfe8ff;
  margin-top: 1rem;
  padding: 0.7rem 0.85rem;
}

.edge-proof-ticker {
  background: linear-gradient(90deg, rgba(8, 20, 38, 0.92), rgba(9, 17, 32, 0.92));
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 10px;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.7rem;
  overflow: hidden;
  padding: 0.55rem 0.7rem;
}

.edge-proof-ticker span {
  color: #a5d8f6;
  font-family: var(--edge-font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.edge-demo-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  margin-top: 0.9rem;
}

.edge-receipt-card {
  background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.22), rgba(6, 18, 34, 0.94) 38%);
  border: 1px solid rgba(34, 211, 238, 0.5);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 32px rgba(2, 8, 23, 0.45);
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.edge-receipt-ready .edge-receipt-card {
  animation: edgeReceiptRise 280ms ease-out;
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 22px 40px rgba(2, 8, 23, 0.55);
}

@keyframes edgeReceiptRise {
  0% {
    opacity: 0.55;
    transform: translateY(8px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.edge-receipt-label {
  color: #9adfff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.edge-receipt-card strong {
  color: #ecfeff;
  font-family: var(--edge-font-mono);
  font-size: 0.95rem;
  line-height: 1.35;
  word-break: break-word;
}

.edge-receipt-meta {
  color: #c4dcf2;
  font-size: 0.8rem;
  margin: 0;
}

.edge-receipt-meta span {
  color: #8ab5d6;
}

.edge-receipt-meta code {
  color: #f0f9ff;
}

.edge-docs-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.edge-doc-links {
  display: grid;
  gap: 0.75rem;
}

.edge-action:hover,
.edge-action:focus,
.hero-actions a:hover,
.hero-actions a:focus,
.inline-cta a:hover,
.inline-cta a:focus,
.com-content-article p.hero-actions a:hover,
.com-content-article p.hero-actions a:focus,
.com-content-article p.inline-cta a:hover,
.com-content-article p.inline-cta a:focus,
.edge-doc-links a:hover,
.edge-doc-links a:focus {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.proof-strip span {
  border: 1px solid var(--edge-line);
  color: var(--edge-muted);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 0.48rem 0.68rem;
}

.audience-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.audience-list li {
  border-left: 1px solid var(--edge-line);
  color: var(--edge-muted);
  padding-left: 1rem;
}

.edge-close {
  margin-bottom: 4rem;
  min-height: 0;
}

.container-footer {
  background: var(--edge-bg);
  border-top: 1px solid var(--edge-line);
  color: var(--edge-ink);
  margin-top: 0;
}

.container-footer.footer.full-width > .grid-child {
  display: block !important;
  max-width: none !important;
  padding-inline: 0 !important;
  width: 100% !important;
}

#mod-custom110 {
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: clip;
  width: 100% !important;
}

#mod-custom110 .er-footer {
  max-width: 100% !important;
}

#mod-custom110 .er-footer-inner,
#mod-custom110 .er-footer-top,
#mod-custom110 .er-footer-bottom,
#mod-custom110 .er-newsletter form {
  min-width: 0 !important;
}

#mod-custom110 .er-footer-bottom .er-meta {
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  #mod-custom110 .er-footer {
    padding-inline: 16px !important;
  }

  #mod-custom110 .er-footer-top {
    gap: 1.35rem !important;
    grid-template-columns: 1fr !important;
  }

  #mod-custom110 .er-col,
  #mod-custom110 .er-brand-block,
  #mod-custom110 .er-newsletter,
  #mod-custom110 .er-newsletter form {
    width: 100% !important;
  }
}

.edge-footer {
  align-items: start;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(140px, 0.75fr));
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.edge-footer strong {
  color: var(--edge-ink);
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.edge-footer p {
  margin-bottom: 0;
  max-width: 32ch;
}

.edge-footer nav {
  display: grid;
  gap: 0.55rem;
}

.edge-footer h2 {
  color: var(--edge-ink);
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.edge-footer a,
.edge-footer-bottom a {
  color: var(--edge-muted);
  text-decoration: none;
}

.edge-footer a:hover,
.edge-footer a:focus,
.edge-footer-bottom a:hover,
.edge-footer-bottom a:focus {
  color: var(--edge-ink);
  outline: 0;
}

.edge-footer-bottom {
  align-items: center;
  border-top: 1px solid var(--edge-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-block: 1rem;
}

.edge-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.com-contact,
.com-contact__container {
  background: transparent;
  border: 1px solid var(--edge-line);
  color: var(--edge-muted);
}

.com-contact input,
.com-contact textarea,
.com-contact select {
  background: var(--edge-black);
  border: 1px solid var(--edge-line-strong);
  color: var(--edge-ink);
}

@media (max-width: 980px) {
  .container-header {
    grid-template-columns:
      minmax(var(--edge-gutter), 1fr)
      minmax(0, var(--edge-max))
      minmax(var(--edge-gutter), 1fr);
    min-height: 68px;
  }

  .container-header > .grid-child:not(.container-nav) {
    grid-column: 2;
    grid-row: 1;
  }

  .container-header > .container-nav {
    grid-column: 2;
    grid-row: 1;
  }

  .container-header .navbar-brand {
    min-height: 68px;
    padding-right: 4rem;
  }

  .container-header .site-description {
    display: none;
  }

  .container-header .mod-menu,
  .container-header .metismenu.mod-menu,
  .er-anchor-nav {
    display: none !important;
  }

  .container-header .container-nav {
    justify-content: flex-end;
    min-height: 68px;
  }

  .er-mobile-toggle {
    display: inline-flex;
  }

  .edge-home,
  .edge-hero,
  .edge-section {
    scroll-margin-top: 76px;
  }

  .edge-hero-grid,
  .edge-api-grid,
  .edge-docs-grid,
  .edge-footer,
  .edge-demo-grid {
    grid-template-columns: 1fr;
  }

  .edge-hero h1,
  .com-content-article .edge-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
    line-height: 1;
    max-width: 100%;
  }

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

  .edge-feature-grid,
  .signal-grid,
  .offer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .edge-feature-card,
  .signal-grid article,
  .offer-grid article,
  .pricing-grid article {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .container-header .brand-logo span,
  .container-header .navbar-brand > a span {
    font-size: 0.95rem;
  }

  .container-header .brand-logo::before,
  .container-header .navbar-brand > a::before {
    height: 38px;
    width: 38px;
  }

  .hero-actions,
  .inline-cta,
  .edge-action,
  .hero-actions a,
  .inline-cta a,
  .com-content-article p.hero-actions a,
  .com-content-article p.inline-cta a {
    width: 100%;
  }

  .edge-terminal code,
  .edge-json code {
    font-size: 0.8rem;
    min-width: 24rem;
  }

  .edge-footer-bottom {
    align-items: flex-start;
    display: grid;
  }

  .edge-footer-bottom nav,
  .edge-footer nav {
    display: grid;
    gap: 0;
    width: 100%;
  }

  .edge-footer nav a,
  .edge-footer-bottom nav a {
    align-items: center;
    border-top: 1px solid var(--edge-line);
    display: flex;
    min-height: 44px;
  }

  .edge-footer nav a:last-child,
  .edge-footer-bottom nav a:last-child {
    border-bottom: 1px solid var(--edge-line);
  }
}

/* Modern Cliff mega-navigation refresh. */
.container-header.er-header-modern {
  background:
    linear-gradient(180deg, rgba(18, 18, 22, 0.96), rgba(8, 8, 10, 0.98)),
    var(--edge-bg) !important;
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
  grid-template-columns:
    minmax(var(--edge-gutter), 1fr)
    minmax(190px, 280px)
    minmax(0, calc(var(--edge-max) - 280px))
    minmax(var(--edge-gutter), 1fr);
}

.container-header.er-header-modern::after {
  background: linear-gradient(90deg, #38bdf8, #5eead4, #f0b451);
  height: 2px;
  opacity: 0.92;
}

.container-header.er-header-modern > .grid-child:not(.container-nav) {
  grid-column: 2;
}

.container-header.er-header-modern > .container-nav {
  grid-column: 3;
}

.container-header.er-header-modern .navbar-brand,
.container-header.er-header-modern .container-nav {
  min-height: 76px;
}

.container-header.er-header-modern .brand-logo img.edge-template-logo,
.container-header.er-header-modern .navbar-brand > a img.edge-template-logo {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
  width: clamp(180px, 19vw, 248px);
}

.er-mega-nav {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.er-mega-nav::before {
  background:
    radial-gradient(circle at var(--nav-x, 50%) var(--nav-y, 50%), rgba(94, 234, 212, 0.2), transparent 9rem),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  content: "";
  inset: 0.58rem 0;
  opacity: 0.85;
  pointer-events: none;
  position: absolute;
}

.er-mega-list {
  align-items: center;
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  position: relative;
  z-index: 1;
}

.er-mega-item {
  position: relative;
}

.er-mega-trigger,
.er-mega-direct > a {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--edge-muted);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--edge-font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 0.7rem 0.78rem;
  position: relative;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

.er-mega-trigger::before,
.er-mega-direct > a::before {
  background: #5eead4;
  content: "";
  height: 4px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: scaleX(0.4);
  transition: opacity 150ms ease, transform 150ms ease;
  width: 22px;
}

.er-nav-icon {
  color: #5eead4;
  display: block;
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

.er-mega-trigger::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 0.38rem;
  opacity: 0.64;
  transform: rotate(45deg) translateY(-0.08rem);
  transition: transform 150ms ease;
  width: 0.38rem;
}

.er-mega-trigger:hover,
.er-mega-trigger:focus,
.er-mega-item.is-open > .er-mega-trigger,
.er-mega-item:focus-within > .er-mega-trigger,
.er-mega-direct > a:hover,
.er-mega-direct > a:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--edge-ink);
  outline: 0;
  transform: translateY(-1px);
}

.er-mega-trigger:hover::before,
.er-mega-trigger:focus::before,
.er-mega-item.is-open > .er-mega-trigger::before,
.er-mega-item:focus-within > .er-mega-trigger::before,
.er-mega-direct > a:hover::before,
.er-mega-direct > a:focus::before {
  opacity: 1;
  transform: scaleX(1);
}

.er-mega-item.is-open > .er-mega-trigger::after,
.er-mega-item:focus-within > .er-mega-trigger::after {
  transform: rotate(225deg) translate(-0.08rem, -0.08rem);
}

.er-mega-cta {
  background: #5eead4 !important;
  border-color: transparent !important;
  color: #06100f !important;
  font-weight: 900 !important;
  padding-inline: 1rem !important;
}

.er-menu-panel {
  background:
    radial-gradient(circle at var(--menu-x, 50%) var(--menu-y, 0), rgba(94, 234, 212, 0.16), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    #0d0d11;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.48);
  color: var(--edge-ink);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(245px, 0.82fr) minmax(360px, 1fr);
  grid-template-rows: auto auto 1fr;
  height: min(540px, calc(100svh - 112px));
  left: 50%;
  min-width: 0;
  opacity: 0;
  padding: 0.72rem;
  pointer-events: none;
  position: fixed;
  top: 86px;
  transform: translate(-50%, 0.7rem);
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
  visibility: hidden;
  width: min(900px, calc(100vw - (2 * var(--edge-gutter))));
  z-index: 70;
}

.er-menu-panel::before {
  background: linear-gradient(90deg, #38bdf8, #5eead4, #f0b451);
  content: "";
  height: 3px;
  left: 0.72rem;
  position: absolute;
  right: 0.72rem;
  top: 0.72rem;
  z-index: 2;
}

.er-mega-item:first-child .er-menu-panel {
  left: 50%;
  transform: translate(-50%, 0.7rem);
}

.er-mega-item:nth-last-child(-n+4) .er-menu-panel {
  left: 50%;
  right: auto;
  transform: translate(-50%, 0.7rem);
}

.er-mega-item:hover > .er-menu-panel,
.er-mega-item:focus-within > .er-menu-panel,
.er-mega-item.is-open > .er-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.er-mega-item:first-child:hover > .er-menu-panel,
.er-mega-item:first-child:focus-within > .er-menu-panel,
.er-mega-item:first-child.is-open > .er-menu-panel {
  transform: translate(-50%, 0);
}

.er-mega-item:nth-last-child(-n+4):hover > .er-menu-panel,
.er-mega-item:nth-last-child(-n+4):focus-within > .er-menu-panel,
.er-mega-item:nth-last-child(-n+4).is-open > .er-menu-panel {
  transform: translate(-50%, 0);
}

.er-menu-visual {
  align-content: end;
  background:
    linear-gradient(150deg, rgba(94, 234, 212, 0.2), rgba(56, 189, 248, 0.1) 42%, rgba(240, 180, 81, 0.12)),
    #050506;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-row: 1 / 4;
  grid-template-rows: minmax(136px, 1fr) auto auto auto auto auto;
  min-height: 0;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.er-menu-visual::before,
.er-menu-visual::after,
.er-menu-visual i {
  content: "";
  position: absolute;
}

.er-menu-visual::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  inset: 0;
  opacity: 0.34;
}

.er-menu-visual::after {
  border: 1px solid rgba(255, 255, 255, 0.14);
  inset: 1rem 1rem 4.25rem;
  transform: skewY(-3deg);
}

.er-menu-visual i {
  background: linear-gradient(90deg, #38bdf8, #5eead4);
  bottom: 6.1rem;
  height: 3px;
  left: 1.25rem;
  right: 30%;
  z-index: 1;
}

.er-promo-reel {
  align-self: start;
  display: grid;
  gap: 0.58rem;
  min-height: 164px;
  position: relative;
  z-index: 1;
}

.er-live-caption {
  align-items: center;
  color: var(--edge-muted-strong);
  display: inline-flex;
  font-family: var(--edge-font-mono);
  font-size: 0.62rem;
  font-weight: 900;
  gap: 0.44rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.er-live-caption span {
  background: #5eead4;
  box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.6);
  display: inline-block;
  height: 7px;
  width: 7px;
  animation: er-live-dot 1.7s ease-out infinite;
}

.er-reel-screen {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 1px),
    rgba(0, 0, 0, 0.36);
  background-size: 100% 16px, 22px 100%, auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: block;
  height: 124px;
  overflow: hidden;
  position: relative;
}

.er-reel-screen::before {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.28), rgba(94, 234, 212, 0));
  content: "";
  height: 100%;
  left: -70%;
  position: absolute;
  top: 0;
  transform: skewX(-16deg);
  width: 54%;
  animation: er-reel-light 5.8s ease-in-out infinite;
}

.er-reel-frame {
  color: var(--edge-ink);
  font-family: var(--edge-font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  left: 0.72rem;
  letter-spacing: 0;
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  top: 0.7rem;
  transform: translateY(0.45rem);
  animation: er-reel-label 7.2s linear infinite;
}

.er-reel-frame-2 {
  animation-delay: 2.4s;
}

.er-reel-frame-3 {
  animation-delay: 4.8s;
}

.er-reel-scan {
  background: rgba(94, 234, 212, 0.72);
  box-shadow: 0 0 18px rgba(94, 234, 212, 0.4);
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 30%;
  animation: er-reel-scan 3.8s ease-in-out infinite;
}

.er-reel-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  bottom: 0.7rem;
  display: block;
  height: 34px;
  position: absolute;
  transform: translateY(0);
  width: 30%;
}

.er-reel-card-a {
  background: rgba(56, 189, 248, 0.16);
  left: 0.72rem;
  animation: er-card-a 7.2s ease-in-out infinite;
}

.er-reel-card-b {
  background: rgba(94, 234, 212, 0.13);
  left: 35%;
  animation: er-card-b 7.2s ease-in-out infinite;
}

.er-reel-card-c {
  background: rgba(240, 180, 81, 0.14);
  right: 0.72rem;
  animation: er-card-c 7.2s ease-in-out infinite;
}

.er-reel-timeline {
  display: grid;
  gap: 0.34rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.er-reel-timeline span {
  background: rgba(255, 255, 255, 0.11);
  height: 3px;
  overflow: hidden;
  position: relative;
}

.er-reel-timeline span::before {
  background: #5eead4;
  content: "";
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  animation: er-timeline 7.2s linear infinite;
}

.er-reel-timeline span:nth-child(2)::before {
  animation-delay: 2.4s;
}

.er-reel-timeline span:nth-child(3)::before {
  animation-delay: 4.8s;
}

.er-menu-visual-label,
.er-menu-visual strong,
.er-menu-visual em,
.er-menu-visual p,
.er-menu-visual small {
  display: block;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.er-menu-visual-label {
  color: var(--edge-ink);
  font-family: var(--edge-font-mono);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.er-menu-visual strong {
  color: var(--edge-ink);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 0.98;
  margin-top: 0.55rem;
  max-width: 9ch;
}

.er-menu-visual em {
  color: var(--edge-muted-strong);
  font-size: 0.86rem;
  line-height: 1.35;
  margin-top: 0.7rem;
  max-width: 26ch;
}

.er-menu-theme {
  border-left: 2px solid rgba(94, 234, 212, 0.72);
  color: var(--edge-muted);
  font-size: 0.78rem;
  line-height: 1.35;
  margin: 0.8rem 0 0;
  max-width: 28ch;
  padding-left: 0.7rem;
}

.er-menu-visual small {
  color: #06100f;
  background: #5eead4;
  font-family: var(--edge-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  justify-self: start;
  margin-top: 1rem;
  padding: 0.42rem 0.52rem;
  text-transform: uppercase;
}

.er-menu-story {
  background:
    linear-gradient(90deg, rgba(94, 234, 212, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.68rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0.8rem;
}

.er-menu-story p {
  color: var(--edge-muted-strong);
  font-size: 0.84rem;
  line-height: 1.38;
  margin: 0;
}

.er-proof-loop {
  display: flex;
  gap: 0.34rem;
  grid-column: 1 / 3;
}

.er-proof-loop span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  flex: 1 1 0;
  gap: 0.38rem;
  min-height: 34px;
  padding: 0.32rem 0.42rem;
}

.er-proof-loop i,
.er-proof-loop b {
  font-family: var(--edge-font-mono);
  font-style: normal;
  line-height: 1;
}

.er-proof-loop i {
  color: #5eead4;
  font-size: 0.62rem;
  font-weight: 900;
}

.er-proof-loop b {
  color: var(--edge-ink);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.er-menu-action {
  align-items: center;
  align-self: start;
  background: var(--edge-ink);
  color: var(--edge-black);
  display: inline-flex;
  font-family: var(--edge-font-mono);
  font-size: 0.66rem;
  font-weight: 900;
  gap: 0.48rem;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.58rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.er-menu-action span {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  display: inline-block;
  height: 0.42rem;
  transform: rotate(45deg);
  width: 0.42rem;
}

.er-menu-action:hover,
.er-menu-action:focus {
  background: #5eead4;
  color: #06100f;
  outline: 0;
}

.er-people-strip {
  display: flex;
  gap: 0.5rem;
  margin: 0.75rem 0 0.95rem;
  position: relative;
  z-index: 1;
}

.er-person {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.34rem;
  justify-items: center;
  min-width: 58px;
  padding: 0.48rem 0.44rem;
}

.er-person i {
  align-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 38%, rgba(5, 5, 6, 0.78) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 38%, rgba(5, 5, 6, 0.78) 0 2px, transparent 3px),
    linear-gradient(150deg, #f8fafc, #9eeadf);
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #07100f;
  display: inline-flex;
  font-family: var(--edge-font-mono);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
  padding-top: 15px;
  position: relative;
  width: 34px;
}

.er-person i::after {
  background: rgba(5, 5, 6, 0.48);
  content: "";
  height: 2px;
  left: 11px;
  position: absolute;
  top: 19px;
  width: 12px;
}

.er-person b {
  color: var(--edge-muted);
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.er-person-2 i {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 38%, rgba(5, 5, 6, 0.78) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 38%, rgba(5, 5, 6, 0.78) 0 2px, transparent 3px),
    linear-gradient(150deg, #dbeafe, #38bdf8);
}

.er-person-3 i {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 38%, rgba(5, 5, 6, 0.78) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 38%, rgba(5, 5, 6, 0.78) 0 2px, transparent 3px),
    linear-gradient(150deg, #fef3c7, #f0b451);
}

.er-menu-api .er-menu-visual {
  background:
    linear-gradient(150deg, rgba(56, 189, 248, 0.26), rgba(14, 165, 233, 0.08) 46%, rgba(255, 255, 255, 0.04)),
    #050506;
}

.er-menu-solutions .er-menu-visual {
  background:
    linear-gradient(150deg, rgba(240, 180, 81, 0.22), rgba(94, 234, 212, 0.09) 42%, rgba(255, 255, 255, 0.04)),
    #050506;
}

.er-menu-trust .er-menu-visual {
  background:
    linear-gradient(150deg, rgba(163, 230, 53, 0.17), rgba(94, 234, 212, 0.11) 46%, rgba(255, 255, 255, 0.04)),
    #050506;
}

.er-menu-links {
  display: grid;
  gap: 0.35rem;
  grid-auto-rows: minmax(104px, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 0;
  padding-top: 1.35rem;
  position: relative;
}

.er-menu-metrics {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 1.35rem;
  position: relative;
}

.er-menu-metrics::before,
.er-menu-links::before {
  color: var(--edge-muted);
  font-family: var(--edge-font-mono);
  font-size: 0.66rem;
  font-weight: 900;
  left: 0;
  letter-spacing: 0;
  position: absolute;
  text-transform: uppercase;
  top: 0;
}

.er-menu-metrics::before {
  content: "Signal stack";
}

.er-menu-links::before {
  content: "Explore paths";
}

.er-menu-metrics span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--edge-muted);
  font-family: var(--edge-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  min-height: 36px;
  padding: 0.48rem 0.52rem;
  text-transform: uppercase;
}

.er-menu-links a {
  border: 1px solid transparent;
  color: var(--edge-muted);
  display: grid;
  gap: 0.2rem;
  min-height: 104px;
  overflow: visible;
  padding: 0.78rem 2rem 0.78rem 0.8rem;
  position: relative;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.er-menu-links a,
.er-menu-links a * {
  text-decoration: none !important;
}

.er-menu-links a::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  color: #5eead4;
  content: "";
  height: 0.44rem;
  opacity: 0;
  position: absolute;
  right: 0.82rem;
  top: 50%;
  transform: translate(-0.45rem, -50%) rotate(45deg);
  transition: opacity 150ms ease, transform 150ms ease;
  width: 0.44rem;
}

.er-menu-links a::before {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #5eead4;
  content: "0" counter(menu-link);
  counter-increment: menu-link;
  display: inline-flex;
  font-family: var(--edge-font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  height: 26px;
  justify-content: center;
  justify-self: start;
  margin-bottom: 0.18rem;
  width: 34px;
}

.er-menu-links {
  counter-reset: menu-link;
}

.er-menu-links a strong {
  color: var(--edge-ink);
  font-size: 0.94rem;
  line-height: 1.2;
  padding-right: 0.9rem;
}

.er-menu-links a span {
  color: var(--edge-muted);
  font-size: 0.82rem;
  line-height: 1.35;
  padding-right: 0.65rem;
}

.er-menu-links a:hover,
.er-menu-links a:focus,
.er-menu-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--edge-ink);
  outline: 0;
  transform: translateX(2px);
}

.er-menu-links a:hover::after,
.er-menu-links a:focus::after,
.er-menu-links a[aria-current="page"]::after {
  opacity: 1;
  transform: translate(0, -50%) rotate(45deg);
}

.er-menu-links a[aria-current="page"] {
  border-left-color: #5eead4;
}

.er-menu-panel[data-active-link="2"] .er-menu-visual i {
  right: 18%;
}

.er-menu-panel[data-active-link="3"] .er-menu-visual i {
  left: 28%;
  right: 12%;
}

.er-menu-panel[data-active-link="4"] .er-menu-visual i {
  left: 44%;
  right: 1.25rem;
}

.er-menu-panel[data-active-link="2"] .er-reel-screen {
  background-position: 0 8px, 10px 0, 0 0;
}

.er-menu-panel[data-active-link="3"] .er-reel-card-b {
  transform: translateY(-10px);
}

.er-menu-panel[data-active-link="4"] .er-reel-card-c {
  transform: translateY(-10px);
}

@keyframes er-reel-light {
  0%, 16% { left: -70%; }
  44%, 56% { left: 112%; }
  100% { left: 112%; }
}

@keyframes er-reel-label {
  0%, 8% {
    opacity: 0;
    transform: translateY(0.45rem);
  }
  12%, 28% {
    opacity: 1;
    transform: translateY(0);
  }
  34%, 100% {
    opacity: 0;
    transform: translateY(-0.45rem);
  }
}

@keyframes er-reel-scan {
  0%, 100% { top: 22%; }
  48% { top: 72%; }
}

@keyframes er-card-a {
  0%, 30%, 100% { transform: translateY(0); }
  45%, 58% { transform: translateY(-10px); }
}

@keyframes er-card-b {
  0%, 25%, 100% { transform: translateY(0); }
  36%, 72% { transform: translateY(-7px); }
}

@keyframes er-card-c {
  0%, 40%, 100% { transform: translateY(0); }
  62%, 82% { transform: translateY(-11px); }
}

@keyframes er-timeline {
  0% { transform: scaleX(0); }
  30%, 100% { transform: scaleX(1); }
}

@keyframes er-live-dot {
  0% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(94, 234, 212, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .er-live-caption span,
  .er-reel-screen::before,
  .er-reel-frame,
  .er-reel-scan,
  .er-reel-card,
  .er-reel-timeline span::before {
    animation: none;
  }

  .er-reel-frame-1 {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1121px) and (max-width: 1260px) {
  .container-header.er-header-modern {
    grid-template-columns:
      minmax(var(--edge-gutter), 1fr)
      minmax(172px, 220px)
      minmax(0, calc(var(--edge-max) - 220px))
      minmax(var(--edge-gutter), 1fr);
  }

  .er-mega-list {
    gap: 0.16rem;
  }

  .er-mega-trigger,
  .er-mega-direct > a {
    font-size: 0.8rem;
    gap: 0.36rem;
    padding-inline: 0.52rem;
  }

  .er-menu-panel {
    grid-template-columns: minmax(225px, 0.72fr) minmax(330px, 1fr);
    min-width: min(710px, calc(100vw - (2 * var(--edge-gutter))));
  }

  .er-menu-story {
    grid-template-columns: 1fr;
  }

  .er-proof-loop {
    grid-column: auto;
  }

  .er-menu-action {
    justify-self: start;
  }
}

@media (max-width: 1120px) {
  .container-header.er-header-modern {
    grid-template-columns:
      minmax(var(--edge-gutter), 1fr)
      minmax(0, var(--edge-max))
      minmax(var(--edge-gutter), 1fr);
    min-height: 68px;
  }

  .container-header.er-header-modern > .grid-child:not(.container-nav),
  .container-header.er-header-modern > .container-nav {
    grid-column: 2;
    grid-row: 1;
  }

  .container-header.er-header-modern .navbar-brand,
  .container-header.er-header-modern .container-nav {
    min-height: 68px;
  }

  .container-header.er-header-modern .navbar-brand {
    padding-right: 4rem;
  }

  .er-mega-nav {
    display: none !important;
  }

  .container-header.er-header-modern .er-mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .container-header.er-header-modern .brand-logo img.edge-template-logo,
  .container-header.er-header-modern .navbar-brand > a img.edge-template-logo {
    width: clamp(156px, 52vw, 212px);
  }

  .er-mobile-drawer {
    background:
      linear-gradient(180deg, rgba(18, 18, 22, 0.98), rgba(6, 6, 7, 0.99)),
      var(--edge-bg);
  }

  .er-mobile-quick a {
    font-size: clamp(1.35rem, 7vw, 2.4rem);
    min-height: 62px;
  }

  .er-mobile-group a {
    font-size: 0.96rem;
    min-height: 40px;
  }
}

/* Homepage manual generator workbench. */
.edge-home {
  padding-block: clamp(0.55rem, 1.8vw, 1.5rem);
}

.edge-home-shell-demo {
  display: block;
}

.edge-home-shell-demo .edge-generator-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 252, 0.98)),
    #f8fbff;
  border: 1px solid #d7e4ee;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.2);
  color: #111827;
  padding: clamp(0.85rem, 1.8vw, 1.35rem);
}

.edge-generator-copy {
  align-items: end;
  display: grid;
  gap: 0.75rem 1.1rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  margin-bottom: clamp(0.65rem, 1.5vw, 0.95rem);
  max-width: none;
}

.edge-generator-copy .edge-kicker {
  color: #2f7d70;
  margin: 0;
}

.edge-generator-copy h1,
.com-content-article .edge-generator-copy h1 {
  color: #111827;
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  font-weight: 950;
  line-height: 1;
  margin: 0;
  max-width: 19ch;
}

.edge-generator-copy p:not(.edge-kicker) {
  color: #4b5563;
  font-size: clamp(0.94rem, 1.25vw, 1.04rem);
  line-height: 1.45;
  margin: 0;
  max-width: 72ch;
}

.edge-generator-flow {
  counter-reset: receipt-flow;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0 0 clamp(0.65rem, 1.25vw, 0.85rem);
  padding: 0;
}

.edge-generator-flow li {
  background: #f7fbff;
  border: 1px solid #d9e4ee;
  color: #273449;
  display: grid;
  gap: 0.22rem;
  min-height: 62px;
  padding: 0.55rem 0.7rem;
}

.edge-generator-flow li + li {
  border-left: 0;
}

.edge-generator-flow span,
.edge-generator-flow strong,
.edge-generator-flow em,
.edge-panel-title span,
.edge-panel-title strong {
  font-family: var(--edge-font-mono);
}

.edge-generator-flow span {
  color: #2f7d70;
  font-size: 0.72rem;
  font-weight: 950;
}

.edge-generator-flow strong {
  color: #142033;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.edge-generator-flow em {
  color: #63738a;
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1.35;
}

.edge-generator-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(0.8rem, 1.5vw, 1rem);
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
}

.edge-input-panel,
.edge-output-panel {
  border-radius: 8px;
  min-width: 0;
}

.edge-input-panel {
  background: #ffffff;
  border: 1px solid #d9e4ee;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 0.58rem;
  padding: clamp(0.75rem, 1.45vw, 0.95rem);
}

.edge-output-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 215, 203, 0.16), transparent 34%),
    linear-gradient(180deg, #08101f, #0b1020);
  border: 1px solid rgba(15, 23, 42, 0.92);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.28);
  color: #dbeafe;
  display: grid;
  gap: 0.58rem;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  padding: clamp(0.75rem, 1.45vw, 0.95rem);
}

.edge-panel-title {
  align-items: center;
  border-bottom: 1px solid #e3ebf3;
  display: flex;
  gap: 0.85rem;
  justify-content: space-between;
  min-height: 34px;
  padding-bottom: 0.45rem;
}

.edge-panel-title span {
  color: #2f7d70;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.edge-panel-title strong {
  color: #172033;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.edge-panel-title-dark {
  border-bottom-color: rgba(148, 163, 184, 0.18);
}

.edge-panel-title-dark span {
  color: #67e8f9;
}

.edge-panel-title-dark strong {
  color: #e0f2fe;
}

.edge-field-head,
.edge-output-head {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}

.edge-field-head label,
.edge-output-head span,
.edge-output-head strong {
  font-family: var(--edge-font-mono);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.edge-field-head label {
  color: #172033;
}

.edge-field-head span {
  color: #5b6b80;
  font-family: var(--edge-font-mono);
  font-size: 0.72rem;
  font-weight: 800;
}

.edge-output-head {
  color: #a7f3d0;
}

.edge-output-head strong {
  color: #67e8f9;
}

.edge-generator-card .edge-demo-form {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.edge-generator-card .edge-demo-form textarea {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  border: 2px solid #bac8d8;
  border-radius: 8px;
  color: #111827;
  font-family: var(--edge-font-mono);
  font-size: clamp(0.84rem, 1.15vw, 0.95rem);
  line-height: 1.5;
  min-height: 300px;
  padding: 0.78rem;
  resize: vertical;
  width: 100%;
}

.edge-generator-card .edge-demo-form textarea:focus {
  border-color: #16a3b8;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.17);
}

.edge-input-help {
  color: #69778a;
  font-size: 0.84rem;
  margin: 0;
}

.edge-signal-module {
  background: #f7fbff;
  border: 1px solid #d9e4ee;
  border-radius: 8px;
  display: grid;
  gap: 0.5rem;
  padding: 0.62rem;
}

.edge-signal-head,
.edge-signal-mini {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  justify-content: space-between;
}

.edge-signal-head span,
.edge-signal-head strong,
.edge-signal-mini span,
.edge-permission-room button,
.edge-signal-options label {
  font-family: var(--edge-font-mono);
}

.edge-signal-head span {
  color: #2f7d70;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.edge-signal-head strong {
  color: #172033;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.edge-signal-options {
  display: grid;
  gap: 0.34rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.edge-signal-options label {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dfebf4;
  border-radius: 8px;
  color: #334155;
  display: flex;
  font-size: 0.68rem;
  font-weight: 800;
  gap: 0.45rem;
  min-height: 28px;
  padding: 0.3rem 0.42rem;
}

.edge-signal-options input {
  accent-color: #2f9f90;
  flex: 0 0 auto;
}

.edge-permission-room {
  display: grid;
  gap: 0.34rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.edge-permission-room button {
  background: #eef8f7;
  border: 1px solid #cce7e3;
  border-radius: 8px;
  color: #2f6f66;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 950;
  min-height: 28px;
  text-transform: uppercase;
}

.edge-permission-room button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.edge-signal-readout {
  color: #66778d;
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
}

.edge-browser-mirror {
  background:
    linear-gradient(135deg, rgba(23, 32, 51, 0.05), rgba(47, 125, 112, 0.08)),
    #f8fbff;
  border: 1px solid #d6e5ef;
  border-radius: 8px;
  display: grid;
  gap: 0.62rem;
  padding: 0.72rem;
}

.edge-mirror-grid {
  display: grid;
  gap: 0.42rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.edge-mirror-grid span {
  background: #ffffff;
  border: 1px solid #e1ebf3;
  border-radius: 8px;
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  padding: 0.48rem;
}

.edge-mirror-grid b,
.edge-mirror-grid i,
.edge-mirror-foot p,
.edge-mirror-foot button {
  font-family: var(--edge-font-mono);
}

.edge-mirror-grid b {
  color: #52657a;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.edge-mirror-grid i {
  color: #172033;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 820;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.edge-mirror-foot {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  justify-content: space-between;
}

.edge-mirror-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.edge-mirror-foot p {
  color: #66778d;
  font-size: 0.74rem;
  line-height: 1.42;
  margin: 0;
}

.edge-mirror-foot button {
  background: #172033;
  border: 1px solid #172033;
  border-radius: 8px;
  color: #f8fbff;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.66rem;
  font-weight: 950;
  min-height: 30px;
  padding: 0.3rem 0.55rem;
  text-transform: uppercase;
}

.edge-mirror-foot button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.edge-generator-card .edge-demo-actions,
.edge-output-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.edge-generator-card .edge-action {
  border-radius: 8px;
  min-height: 42px;
}

.edge-generator-card .edge-action-primary {
  background: linear-gradient(90deg, #5bbcf3, #7bdcca);
  border-color: transparent;
  color: #07111f;
  flex: 1 1 220px;
  font-size: 0.86rem;
}

.edge-generator-card .edge-action-ghost {
  background: #f8fbff;
  border-color: #bdcbdc;
  color: #1f2a3d;
}

.edge-output-panel .edge-action-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(125, 211, 252, 0.36);
  color: #dbeafe;
}

.edge-generator-card .edge-demo-summary {
  background: #ecfdf7;
  border: 1px solid #b9eadc;
  border-radius: 8px;
  color: #1f6b5f;
  margin-top: 0.55rem;
  padding: 0.5rem 0.62rem;
}

.edge-generator-card .edge-proof-ticker {
  background: #eef8f7;
  border: 1px solid #cce7e3;
  border-radius: 8px;
}

.edge-generator-card .edge-proof-ticker span {
  color: #2e6f66;
}

.edge-output-panel .edge-json {
  background: rgba(4, 9, 18, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  margin: 0;
  max-height: 420px;
  min-height: 300px;
  overflow: auto;
  padding: 0.78rem;
}

.edge-output-panel .edge-json code {
  color: #e5eefb;
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  line-height: 1.6;
  min-width: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.edge-output-panel .edge-receipt-card {
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(45, 212, 191, 0.1)),
    rgba(10, 20, 36, 0.96);
  border-color: rgba(34, 211, 238, 0.42);
  border-radius: 8px;
}

.edge-signal-mini {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 8px;
  color: #bfdbfe;
  flex-wrap: wrap;
  padding: 0.62rem 0.72rem;
}

.edge-signal-mini span {
  font-size: 0.7rem;
  font-weight: 800;
}

body.itemid-101 .container-footer {
  display: none;
}

@media (max-width: 980px) {
  .edge-generator-copy,
  .edge-generator-grid {
    grid-template-columns: 1fr;
  }

  .edge-generator-flow {
    grid-template-columns: 1fr;
  }

  .edge-signal-options {
    grid-template-columns: 1fr;
  }

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

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

  .edge-generator-flow li + li {
    border-left: 1px solid #d9e4ee;
    border-top: 0;
  }

  .edge-generator-card .edge-demo-form textarea {
    min-height: 360px;
  }

  .edge-output-panel .edge-json {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .edge-home {
    padding-block: 0.75rem 2.5rem;
  }

  .edge-home-shell-demo .edge-generator-card {
    padding: 1rem;
  }

  .edge-generator-copy h1,
  .com-content-article .edge-generator-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .edge-field-head,
  .edge-output-head,
  .edge-mirror-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

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

  .edge-mirror-foot button {
    width: 100%;
  }

  .edge-mirror-actions {
    width: 100%;
  }

  .edge-generator-card .edge-action,
  .edge-output-actions .edge-action {
    width: 100%;
  }
}
