@import url("https://fonts.googleapis.com/css2?family=Share+Tech&display=swap");

:root {
  --ink: #f2f4f4;
  --muted: #b3bcbe;
  --soft: #d8dddd;
  --line: #3a4347;
  --paper: #0f1213;
  --band: #15191b;
  --panel: #1a1f21;
  --panel-2: #202629;
  --deep: #080a0b;
  --red: #b67a22;
  --red-bright: #e2b15d;
  --red-dark: #5c3a12;
  --green: #2a8cff;
  --link-accent: #5eb2ff;
  --link-accent-soft: rgba(94, 178, 255, 0.62);
  --category-accent: #5ef2ff;
  --category-accent-deep: #2a8cff;
  --category-accent-soft: rgba(94, 242, 255, 0.22);
  --category-accent-faint: rgba(94, 242, 255, 0.075);
  --current-accent: #74ff9a;
  --current-accent-deep: #22c76a;
  --current-accent-soft: rgba(116, 255, 154, 0.2);
  --green-soft: rgba(42, 140, 255, 0.18);
  --green-faint: rgba(42, 140, 255, 0.07);
  --white: #ffffff;
  --shadow:
    0 0 0 1px var(--green-soft),
    0 0 24px var(--green-faint),
    0 18px 38px rgba(0, 0, 0, 0.32);
  --tile-halo:
    0 0 0 1px rgba(42, 140, 255, 0.11),
    0 0 22px rgba(42, 140, 255, 0.055),
    0 14px 28px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Share Tech", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

main {
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 24px);
  min-height: 72px;
  padding: 10px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #080a0b;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  font-weight: 780;
}

.brand img {
  display: block;
  width: clamp(38px, 4vw, 48px);
  height: clamp(38px, 4vw, 48px);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(42, 140, 255, 0.18);
}

.brand span {
  color: var(--white);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.1;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 18px);
  color: #c2c9ca;
  font-size: 0.88rem;
  white-space: nowrap;
}

.main-nav a,
.site-footer a {
  border-bottom: 1px solid transparent;
}

.main-nav a.nav-featured {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-block: -7px;
  padding: 0 13px;
  overflow: hidden;
  border: 1px solid rgba(94, 242, 255, 0.68);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(94, 242, 255, 0.2), rgba(42, 140, 255, 0.2)),
    rgba(19, 24, 28, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(94, 242, 255, 0.1),
    0 0 20px rgba(94, 242, 255, 0.2);
  color: #d9fbff;
  font-weight: 700;
}

.main-nav a.nav-featured::before {
  content: "";
  position: absolute;
  inset: 2px auto 2px 2px;
  width: 22px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(94, 242, 255, 0.2), transparent);
  pointer-events: none;
}

.main-nav a.nav-featured::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--category-accent);
  box-shadow: 0 0 12px rgba(94, 242, 255, 0.85);
}

.main-nav a:hover,
.site-footer a:hover {
  border-color: var(--red-bright);
  color: var(--white);
}

.main-nav a.nav-featured:hover,
.main-nav a.nav-featured:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(94, 242, 255, 0.3), rgba(42, 140, 255, 0.28)),
    rgba(28, 35, 40, 0.96);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(94, 242, 255, 0.18),
    0 0 26px rgba(94, 242, 255, 0.32);
}

.main-nav a.nav-current {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-block: -7px;
  padding: 0 12px;
  border: 1px solid rgba(116, 255, 154, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(116, 255, 154, 0.18), rgba(34, 199, 106, 0.13)),
    rgba(17, 26, 20, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 0 0 1px rgba(116, 255, 154, 0.1),
    0 0 18px rgba(116, 255, 154, 0.18);
  color: #e7ffed;
  font-weight: 820;
}

.main-nav a.nav-current:hover,
.main-nav a.nav-current:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(116, 255, 154, 0.26), rgba(34, 199, 106, 0.2)),
    rgba(20, 34, 25, 0.96);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(116, 255, 154, 0.14),
    0 0 24px rgba(116, 255, 154, 0.28);
}

.main-nav a.nav-featured.nav-current::before {
  background: linear-gradient(90deg, rgba(116, 255, 154, 0.2), transparent);
}

.main-nav a.nav-featured.nav-current::after {
  background: var(--current-accent);
  box-shadow: 0 0 12px rgba(116, 255, 154, 0.85);
}

.header-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-link {
  color: #c2c9ca;
  font-size: 0.94rem;
  font-weight: 740;
  white-space: nowrap;
}

.header-link:hover {
  color: var(--white);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(40px, 4.5vw, 44px);
  padding: 0 clamp(14px, 2vw, 18px);
  border-radius: 6px;
  font-weight: 760;
  white-space: nowrap;
}

.header-action,
.button.primary {
  border: 1px solid #d6a344;
  background: #b67a22;
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(42, 140, 255, 0.14);
}

.header-action:hover,
.button.primary:hover {
  background: #ad7123;
}

.button.secondary {
  border: 1px solid #465054;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 74px);
  padding: clamp(36px, 6vw, 88px) clamp(16px, 4vw, 58px) clamp(40px, 5vw, 66px);
  align-items: center;
  background:
    linear-gradient(112deg, #101315 0%, #090b0c 58%, #071a31 100%),
    var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.hero-copy {
  max-width: 880px;
  width: 100%;
  min-width: 0;
}

.hero-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 20px);
  width: 100%;
  margin-bottom: clamp(22px, 4vw, 36px);
  padding: clamp(12px, 1.8vw, 16px) clamp(16px, 2.2vw, 22px) clamp(12px, 1.8vw, 16px) clamp(12px, 1.8vw, 16px);
  border: 1px solid rgba(42, 140, 255, 0.22);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: var(--tile-halo);
  max-width: 100%;
}

.hero-lockup img {
  width: clamp(176px, 22.5vw, 279px);
  height: clamp(176px, 22.5vw, 279px);
  border-radius: 36px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.38);
}

.hero-logo-lockup {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(18px, 2.4vw, 28px);
  width: min(900px, 100%);
  padding: clamp(18px, 2.4vw, 28px);
}

.hero-logo-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 26px);
  width: min(100%, 790px);
}

.hero-logo-lockup .hero-brand-mark {
  width: clamp(120px, 17vw, 220px);
  height: clamp(120px, 17vw, 220px);
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.hero-wordmark {
  display: grid;
  gap: clamp(2px, 0.5vw, 8px);
  min-width: 0;
}

.hero-wordmark-main {
  display: block;
  color: #eef2f4;
  background: linear-gradient(180deg, #ffffff 0%, #9ca4aa 42%, #f8fbfd 58%, #5b6369 100%);
  font-size: clamp(3.1rem, 7.2vw, 6.65rem);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: none;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-wordmark-main span {
  background: linear-gradient(180deg, #f8d88f 0%, #b9791f 62%, #f4c96d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-wordmark-sub {
  justify-self: center;
  color: #dce2e4;
  background: linear-gradient(180deg, #ffffff 0%, #8c959b 58%, #f5f7f8 100%);
  font-size: clamp(1.15rem, 2.1vw, 2.05rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 3px 9px rgba(0, 0, 0, 0.48);
}

.hero-logo-lockup > span {
  justify-self: start;
  margin-top: clamp(4px, 0.8vw, 10px);
}

.hero-lockup > div:not(.hero-logo-brand) {
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.hero-lockup > div:not(.hero-logo-brand) strong {
  color: var(--white);
  font-size: clamp(1.62rem, 2.7vw, 2.16rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.hero-lockup > span,
.hero-lockup > div:not(.hero-logo-brand) span {
  color: #e2b15d;
  font-size: clamp(1.2rem, 1.875vw, 1.47rem);
  font-weight: 840;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.eyebrow {
  margin: 0 0 12px;
  color: #e2b15d;
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: min(760px, 100%);
  color: var(--white);
  font-size: clamp(3rem, 5.8vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.08rem;
}

.hero-text {
  margin: 26px 0 0;
  max-width: min(650px, 100%);
  color: #c9d0d2;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  max-width: 620px;
  margin: 20px 0 0;
  color: #9ea8aa;
  font-size: 0.95rem;
}

.status-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(94, 178, 255, 0.28);
  border-radius: 7px;
  background: rgba(42, 140, 255, 0.08);
  color: #d9f8e7;
  font-size: clamp(0.95rem, 1.25vw, 1.04rem);
  font-weight: 680;
}

.hero-visual {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: min(480px, 68vh);
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid rgba(42, 140, 255, 0.22);
  border-radius: 7px;
  background: #1a1f21;
  box-shadow: var(--shadow);
}

.platform-path {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.platform-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  min-height: 88px;
  padding: clamp(14px, 1.8vw, 18px);
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 7px;
  background: #202528;
  box-shadow: var(--tile-halo);
}

.platform-step.active {
  border-color: rgba(226, 177, 93, 0.54);
  background: #261d20;
  box-shadow:
    0 0 0 1px rgba(42, 140, 255, 0.1),
    0 0 22px rgba(42, 140, 255, 0.055),
    0 0 18px rgba(182, 122, 34, 0.11),
    0 14px 28px rgba(0, 0, 0, 0.2);
}

.platform-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #b67a22;
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 8px 16px rgba(42, 140, 255, 0.14);
}

.platform-step strong {
  display: block;
  color: var(--white);
  line-height: 1.1;
}

.platform-step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.visual-topline,
.flow-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.visual-topline strong,
.flow-row strong {
  overflow-wrap: anywhere;
  text-align: right;
}

.visual-topline {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
}

.visual-topline strong {
  color: #e2b15d;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: clamp(8px, 1.4vw, 12px);
  margin: 20px 0;
}

.signal-grid div,
.feature-card,
.pricing-card,
.tier-card,
.security-card {
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: var(--tile-halo);
}

.signal-grid div {
  min-height: clamp(88px, 10vw, 112px);
  padding: clamp(12px, 1.6vw, 16px);
}

.signal-grid span,
.flow-row span,
.site-footer span {
  color: var(--muted);
}

.signal-grid strong {
  display: block;
  margin-top: clamp(12px, 2vw, 18px);
  color: var(--white);
  font-size: clamp(1.08rem, 2.1vw, 1.55rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.evidence-flow {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.flow-row {
  min-height: 74px;
  padding: clamp(14px, 1.8vw, 16px) clamp(14px, 2vw, 18px);
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 7px;
  background: #1a1f21;
  box-shadow: var(--tile-halo);
}

.flow-row strong {
  color: var(--white);
}

.section-band,
.split-section,
.contact-section {
  padding: clamp(48px, 7vw, 92px) clamp(16px, 4vw, 58px);
}

.section-band {
  background: var(--paper);
}

.section-band.muted {
  background: var(--band);
}

.company-map {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.company-map .section-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.company-map .feature-grid {
  align-items: stretch;
}

.company-map .feature-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.company-map .feature-card h3,
.company-map .feature-card p {
  max-width: 220px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p,
.split-section p,
.contact-section p,
.feature-card p,
.pricing-card p {
  color: var(--muted);
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 16px;
}

.feature-card,
.pricing-card {
  padding: 22px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-card .text-link {
  align-self: center;
  justify-content: center;
  margin-top: auto;
  text-align: center;
}

.feature-card {
  background: #1a1f21;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}

.suite-card,
.detail-card {
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: var(--tile-halo);
}

.suite-card {
  min-height: 330px;
  padding: 22px;
}

.suite-card.product-card {
  display: flex;
  flex-direction: column;
}

.suite-card.featured {
  border-color: rgba(226, 177, 93, 0.5);
  background:
    linear-gradient(145deg, rgba(182, 122, 34, 0.1), rgba(26, 31, 33, 0.96) 42%),
    var(--panel);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.product-card-top > span:not(.product-icon) {
  color: #e2b15d;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  text-align: right;
}

.product-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 15px;
  object-fit: cover;
  background: #0b0f10;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(42, 140, 255, 0.09);
}

.product-icon.generated {
  border: 1px solid rgba(42, 140, 255, 0.2);
  color: var(--white);
  font-size: 1rem;
  font-weight: 880;
  letter-spacing: 0;
}

.product-icon.large {
  width: clamp(128px, 18vw, 190px);
  height: clamp(128px, 18vw, 190px);
  border-radius: 28px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

img.product-icon[src$=".svg"],
img.product-icon[src*=".svg?"] {
  object-fit: contain;
  padding: 4px;
}

.product-suite .product-card-top {
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.product-suite .product-card-top > span:not(.product-icon) {
  margin-top: 0;
  text-align: center;
}

.product-suite img.product-icon {
  display: block;
  width: min(184px, 100%);
  height: auto;
  aspect-ratio: 1;
  padding: 7px;
  border: 1px solid rgba(94, 178, 255, 0.32);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(191, 213, 236, 0.14), rgba(7, 10, 11, 0.96) 58%),
    #0b0f10;
  object-fit: contain;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 16px 30px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(94, 178, 255, 0.16);
}

.evidence-icon {
  background:
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(145deg, #151a1c 0%, #2a070c 58%, #080a0b 100%);
}

.exposure-icon {
  background:
    radial-gradient(circle at 72% 26%, rgba(42, 140, 255, 0.34), transparent 22%),
    linear-gradient(145deg, #101617 0%, #183123 48%, #07090a 100%);
}

.shielddesk-icon {
  background:
    radial-gradient(circle at 70% 28%, rgba(94, 206, 255, 0.32), transparent 24%),
    linear-gradient(145deg, #171e27 0%, #07101a 52%, #080a0b 100%);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-card .tag-row {
  justify-content: center;
  align-content: flex-start;
  min-height: 68px;
  margin-top: auto;
  padding-top: 18px;
}

.tag-row span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 999px;
  color: #cbd2d3;
  font-size: 0.74rem;
  font-weight: 760;
}

.tag-row span {
  background: rgba(94, 178, 255, 0.04);
}

.category-card .tag-row span,
.app-card .tag-row span {
  border-color: rgba(94, 242, 255, 0.16);
  background: rgba(94, 242, 255, 0.045);
  color: #d6faff;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(135deg, #121618 0%, #080a0b 68%, #16070a 100%),
    #0f1214;
  color: var(--white);
}

.split-section .eyebrow {
  color: #e2b15d;
}

.split-section p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

.capability-stack {
  display: grid;
  gap: 12px;
}

.capability-stack div {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(42, 140, 255, 0.18);
  border-radius: 7px;
  background: #1a1f21;
  box-shadow: var(--tile-halo);
}

.capability-stack strong {
  color: var(--white);
}

.capability-stack span {
  color: rgba(255, 255, 255, 0.68);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(72vh - 74px);
  padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 58px);
  background:
    linear-gradient(126deg, #101315 0%, #080a0b 62%, #071a31 100%),
    var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-hero > div {
  min-width: 0;
}

.product-hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
}

.product-hero p {
  max-width: 760px;
  color: #c9d0d2;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.product-emblem {
  display: grid;
  place-items: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(42, 140, 255, 0.2);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.product-emblem img.product-icon.large[src$="kairnex-solutions-mark.png"],
.product-emblem img.product-icon.large[src*="kairnex-solutions-mark.png?"] {
  width: clamp(156px, 18vw, 220px);
  height: clamp(156px, 18vw, 220px);
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.product-emblem span:not(.product-icon) {
  color: #e2b15d;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-system-visual {
  gap: 14px;
  padding: clamp(10px, 1.8vw, 16px);
  overflow: hidden;
}

.system-visual-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(0, 0, 0, 0.35);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 16px;
}

.detail-card {
  min-height: 220px;
  padding: 22px;
}

.detail-card p {
  color: var(--muted);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
}

.workflow-grid div {
  display: grid;
  gap: 18px;
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: var(--tile-halo);
}

.workflow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #b67a22;
  color: var(--white);
  font-weight: 850;
}

.workflow-grid strong {
  color: var(--white);
  line-height: 1.15;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}

.product-screens .screenshot-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 22px;
}

.screenshot-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: var(--tile-halo);
}

.product-screens .screenshot-card {
  border-color: rgba(42, 140, 255, 0.28);
  padding: 16px;
  cursor: zoom-in;
  box-shadow:
    0 0 0 1px rgba(42, 140, 255, 0.2),
    0 0 24px rgba(42, 140, 255, 0.2),
    0 0 72px rgba(34, 211, 238, 0.08),
    var(--tile-halo);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  animation: screenshotTileGlow 8s ease-in-out infinite;
}

.product-screens .screenshot-card:hover,
.product-screens .screenshot-card:focus {
  border-color: rgba(94, 178, 255, 0.58);
  box-shadow:
    0 0 0 1px rgba(94, 178, 255, 0.42),
    0 0 32px rgba(42, 140, 255, 0.3),
    0 0 92px rgba(34, 211, 238, 0.16),
    var(--tile-halo);
  outline: none;
  transform: translateY(-2px);
}

.screenshot-card.screenshot-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: #05080d;
}

.product-screens .screenshot-card img {
  height: clamp(250px, 27vw, 380px);
  object-fit: contain;
  object-position: top center;
}

.screenshot-card h3 {
  margin-top: 0;
}

.screenshot-card p {
  margin: 0;
  color: var(--muted);
}

.screenshot-lightbox[hidden] {
  display: none;
}

.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 16px;
  background: rgba(4, 7, 8, 0.86);
  backdrop-filter: blur(10px);
}

.screenshot-lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 32px);
  border: 1px solid rgba(94, 178, 255, 0.48);
  border-radius: 8px;
  background: #0b0f10;
  box-shadow:
    0 0 0 1px rgba(42, 140, 255, 0.18),
    0 0 36px rgba(42, 140, 255, 0.22),
    0 0 110px rgba(34, 211, 238, 0.1);
}

.screenshot-lightbox__toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.screenshot-lightbox__title {
  min-width: 0;
  color: var(--white);
  font-weight: 820;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screenshot-lightbox__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
}

.screenshot-lightbox__controls button {
  min-width: 42px;
  min-height: 38px;
  border: 1px solid rgba(94, 178, 255, 0.32);
  border-radius: 7px;
  background: #141a1c;
  color: var(--white);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.screenshot-lightbox__controls button:hover,
.screenshot-lightbox__controls button:focus {
  border-color: rgba(94, 178, 255, 0.72);
  outline: none;
}

.screenshot-lightbox__zoom {
  min-width: 54px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.screenshot-lightbox__stage {
  flex: 1;
  overflow: auto;
  padding: 18px;
  text-align: center;
}

.screenshot-lightbox__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: #05080d;
}

body.lightbox-open {
  overflow: hidden;
}

@keyframes screenshotTileGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(42, 140, 255, 0.2),
      0 0 24px rgba(42, 140, 255, 0.2),
      0 0 72px rgba(34, 211, 238, 0.08),
      var(--tile-halo);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(94, 178, 255, 0.34),
      0 0 32px rgba(94, 178, 255, 0.28),
      0 0 96px rgba(34, 211, 238, 0.14),
      var(--tile-halo);
  }
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 16px;
  border: 1px solid rgba(42, 140, 255, 0.18);
  border-radius: 7px;
  background: #1a1f21;
  box-shadow: var(--tile-halo);
}

.check-list span {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d49a39;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.pricing-card.emphasized,
.tier-card.emphasized {
  border-color: rgba(226, 177, 93, 0.55);
  box-shadow:
    0 0 0 1px rgba(42, 140, 255, 0.12),
    0 0 22px rgba(42, 140, 255, 0.055),
    0 0 18px rgba(182, 122, 34, 0.11),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.plan-label {
  margin: 0 0 12px;
  color: #e2b15d !important;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price {
  margin: 0 0 14px;
  color: #e2b15d !important;
  font-size: 1.65rem;
  font-weight: 840;
}

.tier-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 16px;
}

.pricing-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0 0 34px;
  padding: 18px;
  border: 1px solid rgba(42, 140, 255, 0.2);
  border-radius: 7px;
  background: #1a1f21;
  box-shadow: var(--tile-halo);
}

.pricing-note strong {
  color: var(--white);
}

.pricing-note span {
  color: var(--muted);
}

.product-price-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin: 44px 0 18px;
}

.product-price-heading:first-of-type {
  margin-top: 0;
}

.product-price-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.product-price-heading .eyebrow {
  margin-bottom: 7px;
}

.tier-card,
.security-card {
  min-height: 330px;
  padding: 22px;
}

.tier-card {
  display: flex;
  flex-direction: column;
}

.tier-card p,
.security-card p {
  color: var(--muted);
}

.tier-price {
  margin: 0 0 14px;
  color: #e2b15d !important;
  font-size: clamp(1.35rem, 2.2vw, 1.72rem);
  font-weight: 840;
  line-height: 1.1;
}

.tier-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  color: #d2d8da;
  list-style: none;
}

.tier-list li {
  position: relative;
  padding-left: 18px;
}

.tier-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.tier-card .text-link {
  margin-top: auto;
}

.security-card a,
.page-shell a {
  color: var(--link-accent);
  border-bottom: 1px solid var(--link-accent-soft);
}

.security-card a:hover,
.page-shell a:hover {
  color: var(--white);
  border-color: var(--white);
}

.matrix-stack {
  display: grid;
  gap: 22px;
}

.matrix-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: var(--tile-halo);
}

.matrix-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.matrix-title h3 {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.matrix-title .eyebrow {
  margin-bottom: 6px;
}

.matrix-scroll {
  width: 100%;
  overflow-x: auto;
}

.pricing-matrix {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-matrix th,
.pricing-matrix td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.pricing-matrix th {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-matrix td:first-child {
  color: var(--white);
  font-weight: 800;
}

.pricing-matrix td:nth-child(2) {
  color: #e2b15d;
  font-weight: 820;
  white-space: nowrap;
}

.pricing-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--link-accent);
  font-weight: 790;
  border-bottom: 1px solid var(--link-accent-soft);
}

.product-card .text-link {
  align-self: center;
  justify-content: center;
  min-width: 148px;
  margin-top: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(94, 178, 255, 0.42);
  border-radius: 999px;
  background: rgba(94, 178, 255, 0.07);
  color: var(--link-accent) !important;
  text-align: center;
  box-shadow: 0 0 18px rgba(94, 178, 255, 0.08);
}

.product-card .text-link:hover {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
}

.text-link:hover {
  color: var(--white);
  border-color: var(--white);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(94, 242, 255, 0.18);
  border-radius: 7px;
  background:
    radial-gradient(circle at 80% 0%, rgba(94, 242, 255, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(32, 38, 41, 0.92), rgba(20, 25, 27, 0.96));
  box-shadow:
    0 0 0 1px rgba(94, 242, 255, 0.07),
    0 0 24px rgba(94, 242, 255, 0.055),
    0 16px 30px rgba(0, 0, 0, 0.24);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.category-card::before,
.app-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--category-accent), var(--category-accent-deep), transparent);
  opacity: 0.8;
}

.category-card:hover,
.app-card:hover {
  border-color: rgba(94, 242, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(94, 242, 255, 0.12),
    0 0 30px rgba(94, 242, 255, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.category-card > span,
.app-card-coming-soon > span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 6px 9px;
  border: 1px solid rgba(94, 242, 255, 0.28);
  border-radius: 999px;
  background: rgba(94, 242, 255, 0.055);
  color: var(--category-accent);
  font-size: 0.76rem;
  font-weight: 840;
  text-transform: uppercase;
}

.category-card p {
  color: var(--muted);
}

.category-card .tag-row {
  margin-top: auto;
  padding-top: 16px;
}

.category-card .text-link {
  align-self: flex-start;
  margin-top: 16px;
}

.app-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(94, 242, 255, 0.18);
  border-radius: 7px;
  background:
    radial-gradient(circle at 90% 0%, rgba(94, 242, 255, 0.11), transparent 30%),
    var(--panel);
  box-shadow:
    0 0 0 1px rgba(94, 242, 255, 0.07),
    0 0 22px rgba(94, 242, 255, 0.05),
    0 14px 28px rgba(0, 0, 0, 0.2);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.app-card span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 9px;
  border: 1px solid rgba(94, 242, 255, 0.28);
  border-radius: 999px;
  background: rgba(94, 242, 255, 0.055);
  color: var(--category-accent);
  font-size: 0.76rem;
  font-weight: 840;
  text-transform: uppercase;
}

.app-card p {
  color: var(--muted);
}

.category-hero {
  min-height: auto;
  background:
    radial-gradient(circle at 82% 18%, rgba(94, 242, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0b1114 0%, #0d1d25 48%, #080a0b 100%);
}

.category-hero .product-emblem {
  align-content: center;
}

.category-mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.category-mini-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(94, 242, 255, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(94, 242, 255, 0.1), rgba(42, 140, 255, 0.065)),
    rgba(8, 10, 11, 0.35);
  color: #d6faff;
  font-weight: 780;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.category-mini-nav a:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(94, 242, 255, 0.18), rgba(42, 140, 255, 0.12)),
    rgba(8, 10, 11, 0.55);
  color: var(--white);
}

.category-mini-nav a.nav-current {
  border-color: rgba(116, 255, 154, 0.66);
  background:
    linear-gradient(180deg, rgba(116, 255, 154, 0.18), rgba(34, 199, 106, 0.12)),
    rgba(12, 22, 16, 0.62);
  color: #e7ffed;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 18px rgba(116, 255, 154, 0.18);
}

.marketplace-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(48px, 7vw, 92px) clamp(16px, 4vw, 58px);
  background:
    linear-gradient(135deg, #090b0c 0%, #121618 70%, #16070a 100%),
    #0d1011;
}

.marketplace-section p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: var(--tile-halo);
}

.timeline span {
  color: #e2b15d;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline strong {
  color: var(--white);
}

.timeline p {
  margin: 0;
}

.signal-grid div,
.hero-visual,
.platform-step,
.feature-card,
.pricing-card,
.suite-card,
.detail-card,
.product-emblem,
.capability-stack div,
.workflow-grid div,
.screenshot-card,
.tier-card,
.security-card,
.pricing-note,
.matrix-card,
.timeline div,
.flow-row {
  position: relative;
  overflow: hidden;
  border-color: rgba(94, 178, 255, 0.2);
  background:
    radial-gradient(circle at 86% 0%, rgba(94, 178, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(32, 38, 41, 0.92), rgba(19, 24, 26, 0.98));
  box-shadow:
    0 0 0 1px rgba(94, 178, 255, 0.075),
    0 0 22px rgba(94, 178, 255, 0.055),
    0 14px 28px rgba(0, 0, 0, 0.22);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.signal-grid div::before,
.hero-visual::before,
.platform-step::before,
.feature-card::before,
.pricing-card::before,
.suite-card::before,
.detail-card::before,
.product-emblem::before,
.capability-stack div::before,
.workflow-grid div::before,
.screenshot-card::before,
.tier-card::before,
.security-card::before,
.pricing-note::before,
.matrix-card::before,
.timeline div::before,
.flow-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(94, 178, 255, 0.72), rgba(94, 242, 255, 0.46), transparent);
  opacity: 0.78;
  pointer-events: none;
}

.signal-grid div:hover,
.hero-visual:hover,
.platform-step:hover,
.feature-card:hover,
.pricing-card:hover,
.suite-card:hover,
.detail-card:hover,
.product-emblem:hover,
.capability-stack div:hover,
.workflow-grid div:hover,
.screenshot-card:hover,
.tier-card:hover,
.security-card:hover,
.pricing-note:hover,
.matrix-card:hover,
.timeline div:hover,
.flow-row:hover {
  border-color: rgba(94, 178, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(94, 178, 255, 0.14),
    0 0 30px rgba(94, 178, 255, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.pricing-card.emphasized,
.tier-card.emphasized,
.suite-card.featured,
.platform-step.active {
  border-color: rgba(226, 177, 93, 0.52);
  background:
    radial-gradient(circle at 86% 0%, rgba(226, 177, 93, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(32, 38, 41, 0.94), rgba(19, 24, 26, 0.98));
  box-shadow:
    0 0 0 1px rgba(226, 177, 93, 0.12),
    0 0 24px rgba(226, 177, 93, 0.09),
    0 14px 28px rgba(0, 0, 0, 0.24);
}

.pricing-card.emphasized::before,
.tier-card.emphasized::before,
.suite-card.featured::before,
.platform-step.active::before {
  background: linear-gradient(90deg, rgba(226, 177, 93, 0.82), rgba(94, 178, 255, 0.38), transparent);
}

.trust-panel {
  background: linear-gradient(180deg, #141719 0%, var(--paper) 46%);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(42, 140, 255, 0.16);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: var(--tile-halo);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #0f1315;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(226, 177, 93, 0.44);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(16px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: #080a0b;
}

.site-footer div {
  display: grid;
  gap: 4px;
  max-width: 580px;
}

.site-footer .legal-line {
  color: #8e989a;
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.page-shell {
  max-width: 900px;
  min-height: calc(100vh - 161px);
  padding: clamp(48px, 8vw, 90px) clamp(18px, 4vw, 58px);
}

.page-shell h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.page-shell h2 {
  margin-top: 36px;
  font-size: 1.55rem;
}

.page-shell p,
.page-shell li {
  color: var(--muted);
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero,
  .split-section,
  .marketplace-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 0;
  }

  .feature-grid,
  .pricing-grid,
  .tier-grid,
  .security-grid,
  .app-grid,
  .category-grid,
  .suite-grid,
  .detail-grid,
  .workflow-grid,
  .screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .screenshot-card.screenshot-wide {
    grid-template-columns: 1fr;
  }

  .product-screens .screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 921px) and (max-width: 1760px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding-right: clamp(16px, 2.4vw, 36px);
    padding-left: clamp(16px, 2.4vw, 36px);
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand span {
    max-width: min(26vw, 260px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-nav {
    order: 3;
    flex: 1 0 100%;
    justify-content: flex-start;
    gap: 14px;
    padding: 8px 2px 2px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 1280px) {
  .main-nav {
    display: none;
  }
}

@media (min-width: 921px) and (max-width: 1120px) {
  h1 {
    font-size: clamp(2.9rem, 5.4vw, 4.2rem);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 44px;
    padding-top: 60px;
    padding-bottom: 46px;
  }

  .hero-lockup {
    margin-bottom: 26px;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 1.16rem;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .visual-topline strong,
  .flow-row strong {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .hero {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-hero {
    width: 100%;
    max-width: 100vw;
    padding-right: 20px;
    padding-left: 20px;
    overflow: hidden;
  }

  .product-hero > div,
  .product-emblem,
  .section-heading,
  .split-section > div,
  .marketplace-section > div,
  .contact-section > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-hero h1 {
    width: auto;
    max-width: 100%;
    font-size: clamp(2.18rem, 10.2vw, 2.85rem);
    line-height: 1.04;
    word-break: normal;
  }

  .product-hero p {
    max-width: 100%;
    font-size: 1rem;
  }

  .section-heading h2,
  .section-heading p,
  .split-section h2,
  .split-section p,
  .marketplace-section h2,
  .marketplace-section p,
  .contact-section h2,
  .contact-section p {
    max-width: 100%;
  }

  .hero-copy,
  .hero-visual {
    width: calc(100vw - 52px);
    max-width: calc(100vw - 52px);
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100vw;
    overflow: hidden;
  }

  .brand span {
    max-width: calc(100vw - 110px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: calc(100vw - 40px);
    gap: 8px;
  }

  .header-action,
  .header-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.86rem;
  }

  .header-link {
    align-items: center;
    border: 1px solid rgba(94, 178, 255, 0.22);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
  }

  .signal-grid,
  .feature-grid,
  .pricing-grid,
  .tier-grid,
  .security-grid,
  .app-grid,
  .category-grid,
  .suite-grid,
  .detail-grid,
  .workflow-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    width: calc(100vw - 62px);
    max-width: calc(100vw - 62px);
    font-size: clamp(2.45rem, 11.5vw, 3rem);
    line-height: 1.02;
    word-break: break-word;
  }

  .hero-copy,
  .hero-text,
  .hero-note,
  .hero-actions,
  .hero-lockup,
  .hero-visual {
    max-width: calc(100vw - 40px);
  }

  .hero-text,
  .hero-note {
    width: calc(100vw - 72px);
    max-width: calc(100vw - 72px);
  }

  .hero-lockup {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: calc(100vw - 52px);
    max-width: calc(100vw - 52px);
    gap: 12px;
  }

  .hero-logo-lockup {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .hero-logo-brand {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    width: 100%;
  }

  .hero-logo-lockup .hero-brand-mark {
    width: clamp(72px, 22vw, 96px);
    height: clamp(72px, 22vw, 96px);
    border-radius: 10px;
  }

  .hero-wordmark-main {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-wordmark-sub {
    font-size: clamp(0.8rem, 5vw, 1.12rem);
  }

  .hero-logo-lockup > span {
    margin-top: 4px;
  }

  .hero-lockup img {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  .hero-lockup > div:not(.hero-logo-brand) strong {
    font-size: 1rem;
  }

  .hero-lockup > span,
  .hero-lockup > div:not(.hero-logo-brand) span {
    font-size: 0.72rem;
  }

  .visual-topline,
  .flow-row,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-note,
  .product-price-heading,
  .matrix-title {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    --mobile-measure: 340px;
  }

  .hero-copy,
  .hero-visual,
  .hero-lockup,
  .hero-text,
  .hero-note,
  h1 {
    width: 100%;
    max-width: var(--mobile-measure);
  }

  .hero-text,
  .hero-note {
    max-width: 330px;
  }
}

@media (max-width: 430px) {
  .hero-copy,
  .hero-visual,
  .hero-lockup,
  h1 {
    width: 320px;
    max-width: calc(100vw - 40px);
  }

  .hero-text,
  .hero-note {
    width: 310px;
    max-width: calc(100vw - 52px);
  }
}

@media (max-width: 620px) {
  .product-hero,
  .section-band,
  .split-section,
  .marketplace-section,
  .contact-section {
    --product-mobile-measure: min(330px, calc(100vw - 70px));
  }

  .product-hero h1 {
    width: 100%;
    max-width: var(--product-mobile-measure);
    font-size: clamp(1.95rem, 8.8vw, 2.48rem);
    line-height: 1.05;
  }

  .product-hero p,
  .section-heading p,
  .split-section p,
  .marketplace-section p,
  .contact-section p {
    width: 100%;
    max-width: var(--product-mobile-measure);
  }

  .section-heading h2,
  .split-section h2,
  .marketplace-section h2,
  .contact-section h2 {
    width: 100%;
    max-width: var(--product-mobile-measure);
    font-size: clamp(1.58rem, 7.1vw, 2rem);
    line-height: 1.08;
  }

  .product-emblem,
  .workflow-grid,
  .screenshot-grid,
  .screenshot-card,
  .tier-grid,
  .security-grid,
  .tier-card,
  .security-card,
  .pricing-note,
  .product-price-heading,
  .matrix-stack,
  .matrix-card,
  .capability-stack {
    width: 100%;
    max-width: var(--product-mobile-measure);
  }

  .product-screens .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .product-screens .screenshot-grid,
  .product-screens .screenshot-card {
    max-width: min(430px, calc(100vw - 32px));
  }

  .product-screens .screenshot-card {
    gap: 12px;
    padding: 12px;
  }

  .product-screens .screenshot-card img {
    height: clamp(230px, 76vw, 320px);
  }

  .screenshot-lightbox {
    padding: 8px;
  }

  .screenshot-lightbox__panel {
    height: calc(100vh - 16px);
  }

  .screenshot-lightbox__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .screenshot-lightbox__controls {
    width: 100%;
  }

  .screenshot-lightbox__controls button {
    flex: 1;
  }

  .screenshot-lightbox__stage {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-screens .screenshot-card {
    animation: none;
  }

  .product-screens .screenshot-card:hover,
  .product-screens .screenshot-card:focus {
    transform: none;
  }
}
