:root {
  --black: #030303;
  --white: #ffffff;
  --ink: #111827;
  --muted: #d9e3ea;
  --blue: #6aa8c6;
  --blue-deep: rgba(28, 55, 69, 0.84);
  --panel: rgba(28, 55, 69, 0.9);
  --red: #d51d32;
  --trial: #2f6f8f;
  --trial-hover: #3c83a6;
  --download: #2c323b;
  --download-hover: #39424d;
  --soft-button: #f5f1ea;
  --soft-button-hover: #ffffff;
  --line: rgba(255, 255, 255, 0.28);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.home-page {
  color: var(--white);
  background: #050608;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-brand img {
  width: 132px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.home-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.78) 48%, rgba(5, 6, 8, 0.5) 100%),
    url("modern-architecture.jpg") center / cover;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, #050608, rgba(5, 6, 8, 0));
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  padding: 82px 0;
}

.home-hero-copy {
  max-width: 660px;
}

.section-kicker {
  margin: 0 0 12px;
  color: #94c4dd;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  line-height: 1.03;
}

.home-hero-copy p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.hero-actions,
.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.product-signal {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 28px;
  background: rgba(16, 22, 30, 0.82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.signal-icon {
  width: 92px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.32));
}

.signal-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-signal h2 {
  margin-bottom: 8px;
  font-size: 2.6rem;
  line-height: 1;
}

.product-signal p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.signal-metrics {
  display: grid;
  gap: 8px;
}

.signal-metrics span {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 9px;
  color: #f5f1ea;
  font-weight: 800;
}

.company-hero .home-hero-copy {
  max-width: 880px;
}

.company-hero h1 {
  max-width: none;
  font-size: 5rem;
  line-height: 0.98;
  white-space: nowrap;
}

.company-signal {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 28px;
  background: rgba(16, 22, 30, 0.82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.company-signal h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.company-signal-list {
  display: grid;
  gap: 8px;
}

.company-signal-list span {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 9px;
  color: #f5f1ea;
  font-weight: 800;
}

.software-catalog {
  padding: 88px 0;
  color: var(--ink);
  background: #eef2f5;
}

.software-catalog .section-kicker {
  color: #2f6f8f;
}

.software-catalog-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.software-catalog-header h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.05;
}

.software-catalog-header p {
  color: rgba(17, 24, 39, 0.72);
  font-size: 1.08rem;
}

.software-list {
  display: grid;
  gap: 56px;
}

.software-item {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.software-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.software-copy > p {
  max-width: 560px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 1.06rem;
}

.software-product-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.software-product-heading .signal-label {
  color: var(--ink);
}

.software-product-heading img {
  width: 76px;
  filter: drop-shadow(0 14px 18px rgba(17, 24, 39, 0.18));
}

.software-product-heading h3 {
  margin: 4px 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.software-points {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.software-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(17, 24, 39, 0.78);
  font-weight: 700;
}

.software-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2f6f8f;
}

.software-catalog .button-light {
  color: var(--white);
  background: var(--download);
}

.software-catalog .button-light:hover {
  background: var(--download-hover);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
}

.software-preview-card {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 29, 39, 0.84), rgba(18, 29, 39, 0.9)),
    url("modern-architecture.jpg") center / cover;
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.18);
}

.company-principles {
  padding: 40px 0;
  background: #101720;
}

.product-showcase {
  padding: 88px 0;
  color: var(--ink);
  background: #eef2f5;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.showcase-copy h2 {
  max-width: 16ch;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  line-height: 1.08;
}

.showcase-copy p {
  max-width: 540px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 1.06rem;
}

.product-showcase .section-kicker {
  color: #2f6f8f;
}

.product-showcase .button-light {
  color: var(--white);
  background: var(--download);
}

.product-showcase .button-light:hover {
  background: var(--download-hover);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
}

.workflow-preview {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 29, 39, 0.84), rgba(18, 29, 39, 0.9)),
    url("modern-architecture.jpg") center / cover;
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.18);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.preview-header img {
  width: 42px;
}

.preview-columns {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.preview-columns div {
  display: grid;
  gap: 6px;
  padding: 28px;
  background: rgba(8, 11, 16, 0.54);
}

.preview-columns strong {
  font-size: 1.18rem;
}

.preview-columns span {
  color: rgba(255, 255, 255, 0.68);
}

.benefit-band {
  padding: 36px 0;
  background: #101720;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.benefit-grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 22px;
}

.benefit-grid span {
  color: #94c4dd;
  font-size: 0.78rem;
  font-weight: 900;
}

.benefit-grid h3 {
  margin: 8px 0 6px;
  font-size: 1.15rem;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.hero {
  min-height: 285px;
  background: var(--black);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(48px, 12vw, 230px);
  align-items: center;
}

.brand {
  display: block;
  width: 194px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 -2px;
  font-size: 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 4px;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.software-band {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--blue);
}

.software-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 41, 54, 0.7), rgba(17, 41, 54, 0.35)),
    url("modern-architecture.jpg") center / cover;
  opacity: 0.92;
}

.software-content {
  position: relative;
  padding: 28px 0 64px;
}

.software-content h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
}

.software-grid {
  display: grid;
  grid-template-columns: 280px 280px;
  gap: 22px;
  align-items: start;
}

.product-card,
.coming-soon {
  min-height: 125px;
  border: 4px solid rgba(36, 40, 48, 0.75);
  background: linear-gradient(180deg, rgba(21, 17, 20, 0.92), rgba(102, 25, 33, 0.86));
}

.product-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: rgba(106, 168, 198, 0.58);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.product-title {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 18px;
  padding: 8px 12px 4px;
}

.product-title img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transform-origin: center;
  transition: filter 180ms ease;
}

.product-card:hover .product-title img,
.product-title img:hover {
  animation: diamond-spin 850ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 10px rgba(106, 168, 198, 0.5));
}

.product-title h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
}

.product-title span {
  color: var(--red);
  font-size: 24px;
}

.product-actions {
  display: grid;
  gap: 6px;
  padding: 0 8px 8px;
}

.button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 24px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background-color 160ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.45) 50%, transparent 75%);
  pointer-events: none;
  transform: translateX(-140%) skewX(-18deg);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(140%) skewX(-18deg);
}

.button:active {
  filter: brightness(0.94);
  transform: translateY(1px) scale(0.98);
}

.button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.button-light {
  color: var(--black);
  background: var(--soft-button);
  letter-spacing: 0;
}

.button-light:hover {
  background: var(--soft-button-hover);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.button-trial {
  color: var(--white);
  background: var(--trial);
}

.button-trial:hover {
  background: var(--trial-hover);
  box-shadow: 0 12px 24px rgba(106, 168, 198, 0.25);
}

.button-trial:active {
  background: #255f7b;
}

.button-green {
  color: var(--white);
  background: var(--download);
}

.button-green:hover {
  background: var(--download-hover);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.button-green:active {
  background: #242a32;
}

@keyframes diamond-spin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  55% {
    transform: rotate(330deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.coming-soon {
  display: grid;
  align-items: center;
  padding: 20px;
}

.coming-soon h3 {
  margin: 0;
  font-size: 28px;
}

.contact-section {
  padding: 72px 0 96px;
  background: #050608;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.contact-section h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.contact-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.35;
}

.contact-name {
  margin-top: 20px;
}

.contact-section a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-page {
  min-height: 100vh;
  color: var(--white);
  background: #050608;
}

.detail-hero {
  position: relative;
  overflow: hidden;
}

.detail-hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.78) 52%, rgba(5, 6, 8, 0.5) 100%),
    url("modern-architecture.jpg") center / cover;
}

.detail-hero-background::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, #050608, rgba(5, 6, 8, 0));
}

.detail-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  padding: 88px 0 96px;
}

.detail-hero-copy {
  max-width: 660px;
}

.detail-hero h1 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 1.04;
}

.detail-hero-copy p:not(.section-kicker) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.detail-product-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 28px;
  background: rgba(16, 22, 30, 0.82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.detail-product-card img {
  width: 92px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.32));
}

.detail-product-card h2 {
  margin: -10px 0 0;
  font-size: 2.6rem;
  line-height: 1;
}

.detail-product-card p:not(.signal-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.detail-product-list {
  display: grid;
  gap: 8px;
}

.detail-product-list span {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 9px;
  color: #f5f1ea;
  font-weight: 800;
}

.detail-workflow {
  padding: 88px 0;
  color: var(--ink);
  background: #eef2f5;
}

.detail-workflow-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.detail-section-copy {
  max-width: 560px;
}

.detail-section-copy-wide {
  max-width: 700px;
  margin-bottom: 34px;
}

.detail-section-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1.08;
}

.detail-section-copy p:not(.section-kicker) {
  color: rgba(17, 24, 39, 0.72);
  font-size: 1.05rem;
}

.detail-workflow .section-kicker {
  color: #2f6f8f;
}

.detail-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-steps article {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.detail-steps span,
.capability-grid h3::before {
  color: #2f6f8f;
  font-size: 0.78rem;
  font-weight: 900;
}

.detail-steps h3,
.capability-grid h3 {
  margin: 8px 0 8px;
  font-size: 1.16rem;
}

.detail-steps p,
.capability-grid p {
  margin: 0;
  color: rgba(17, 24, 39, 0.68);
}

.detail-capabilities {
  padding: 88px 0;
  background: #050608;
}

.detail-capabilities .detail-section-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-grid article {
  min-height: 230px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
}

.capability-grid h3 {
  color: var(--white);
}

.capability-grid h3::before {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #94c4dd;
}

.capability-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.detail-cta {
  padding: 58px 0 72px;
  color: var(--ink);
  background: #eef2f5;
}

.detail-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.detail-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.detail-cta p:not(.section-kicker) {
  max-width: 660px;
  color: rgba(17, 24, 39, 0.72);
}

.detail-cta .section-kicker {
  color: #2f6f8f;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.changelog-hero {
  position: relative;
  overflow: hidden;
}

.changelog-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  padding: 86px 0 92px;
}

.changelog-hero-copy {
  max-width: 680px;
}

.changelog-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 1;
}

.changelog-hero-copy p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.changelog-current {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 28px;
  background: rgba(16, 22, 30, 0.82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.changelog-current img {
  width: 86px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.32));
}

.changelog-current h2 {
  margin: -8px 0 0;
  font-size: 2.55rem;
  line-height: 1;
}

.changelog-current p:not(.signal-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.changelog-content {
  padding: 76px 0 92px;
  color: var(--ink);
  background: #eef2f5;
}

.changelog-layout {
  display: grid;
  gap: 28px;
}

.changelog-latest,
.changelog-entry {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(24, 34, 48, 0.08);
}

.changelog-latest {
  padding: 30px;
}

.changelog-latest-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
  margin-bottom: 24px;
  padding-bottom: 22px;
}

.changelog-latest-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.changelog-latest-heading p:not(.section-kicker) {
  margin: 0;
  color: rgba(17, 24, 39, 0.64);
}

.version-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #ffffff;
  background: var(--trial);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.changelog-section + .changelog-section {
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  margin-top: 24px;
  padding-top: 24px;
}

.changelog-section h4 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.changelog-section ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(17, 24, 39, 0.72);
}

.changelog-section li + li {
  margin-top: 8px;
}

.changelog-history-heading {
  margin: 18px 0 0;
}

.changelog-history-heading .section-kicker,
.changelog-latest .section-kicker {
  color: #2f6f8f;
}

.changelog-history-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.changelog-history-heading p:not(.section-kicker) {
  margin: 0;
  color: rgba(17, 24, 39, 0.64);
}

.changelog-history {
  display: grid;
  gap: 12px;
}

.changelog-entry {
  overflow: hidden;
}

.changelog-entry summary {
  display: grid;
  grid-template-columns: 178px 118px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.changelog-entry summary::-webkit-details-marker {
  display: none;
}

.changelog-entry summary::after {
  content: "+";
  color: var(--trial);
  font-size: 1.4rem;
  font-weight: 900;
}

.changelog-entry details[open] summary::after {
  content: "-";
}

.changelog-version {
  color: var(--ink);
  font-weight: 900;
}

.changelog-date {
  color: #2f6f8f;
  font-weight: 900;
}

.changelog-entry-summary {
  overflow: hidden;
  color: rgba(17, 24, 39, 0.64);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.changelog-entry-body {
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  padding: 22px;
}

@media (max-width: 1050px) {
  .company-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .company-hero h1 {
    font-size: 4.2rem;
  }

  .changelog-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 620px);
  }

  .nav-shell {
    min-height: auto;
    padding: 14px 0;
    align-items: center;
    gap: 14px;
  }

  .nav-brand img {
    width: 88px;
  }

  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding: 6px 8px;
    font-size: 0.78rem;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-grid,
  .showcase-grid,
  .benefit-grid,
  .software-item,
  .detail-hero-grid,
  .changelog-hero-grid,
  .detail-workflow-grid,
  .detail-cta-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid,
  .detail-hero-grid,
  .changelog-hero-grid {
    padding: 44px 0 40px;
  }

  .home-hero h1,
  .detail-hero h1,
  .changelog-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.8rem);
    line-height: 1;
  }

  .company-hero h1 {
    font-size: 3.2rem;
  }

  .home-hero-copy p:not(.section-kicker),
  .detail-hero-copy p:not(.section-kicker),
  .changelog-hero-copy p:not(.section-kicker) {
    font-size: 1.02rem;
  }

  .product-signal,
  .company-signal,
  .detail-product-card,
  .changelog-current {
    gap: 16px;
    padding: 20px;
  }

  .product-signal h2,
  .company-signal h2,
  .detail-product-card h2,
  .changelog-current h2 {
    font-size: 2.15rem;
  }

  .product-showcase,
  .software-catalog,
  .detail-workflow,
  .detail-capabilities,
  .changelog-content {
    padding: 62px 0;
  }

  .software-catalog-header {
    margin-bottom: 34px;
  }

  .software-product-heading {
    align-items: flex-start;
  }

  .software-product-heading img {
    width: 62px;
  }

  .software-item {
    gap: 34px;
  }

  .showcase-copy h2,
  .detail-section-copy h2 {
    max-width: none;
  }

  .hero-actions,
  .showcase-actions {
    display: grid;
  }

  .changelog-latest {
    padding: 20px;
  }

  .changelog-latest-heading {
    display: grid;
  }

  .changelog-entry summary {
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
  }

  .changelog-entry-summary {
    grid-column: 1 / -1;
    white-space: normal;
  }

  .benefit-grid {
    gap: 20px;
  }

  .detail-steps,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid article,
  .capability-grid article:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .detail-cta {
    padding: 48px 0 62px;
  }

  .hero {
    min-height: auto;
    padding: 36px 0;
  }

  .hero-grid,
  .software-grid,
  .contact-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .contact-grid {
    gap: 28px;
  }

  .brand {
    width: 150px;
  }

  .software-content {
    padding: 28px 0 44px;
  }

  .product-card,
  .coming-soon {
    width: 100%;
  }

  .contact-section {
    padding-bottom: 64px;
  }

  .contact-section p {
    font-size: 19px;
  }

  .detail-actions {
    display: grid;
    justify-content: stretch;
  }
}

@media (max-width: 480px) {
  .company-hero h1 {
    font-size: 2.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .button::after,
  .product-card,
  .product-title img {
    animation: none;
    transition: none;
  }

  .button:hover,
  .button:active,
  .product-card:hover {
    transform: none;
  }
}
