:root {
  --bg: #080f19;
  --panel: #101b2b;
  --panel-strong: #142236;
  --line: rgba(154, 179, 214, 0.18);
  --text: #eef5ff;
  --soft: #aab8cc;
  --muted: #72819a;
  --primary: #2f89ff;
  --primary-strong: #1d6ee8;
  --accent: #27d0b4;
  --warning: #f4c95d;
}

html {
  font-size: 16px;
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(47, 137, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(39, 208, 180, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Segoe UI, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

a {
  color: #8ec3ff;
  text-decoration: none;
}

a:hover {
  color: #c6e2ff;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.13;
  font-weight: 780;
  max-width: 820px;
}

h2 {
  font-size: clamp(1.32rem, 2vw, 1.82rem);
  font-weight: 730;
}

h3 {
  font-size: 1.02rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 15, 25, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 76px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  font-weight: 700;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 48px;
  min-width: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.brand-image-fallback {
  display: none;
}

.brand-fallback {
  color: var(--text);
  font-size: 1.32rem;
  font-weight: 850;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.brand-name {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 850;
}

.brand-subtitle {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--soft);
  font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--text);
}

.navbar-dark .navbar-nav .nav-link.active {
  color: var(--text);
}

.navbar-dark .navbar-nav .nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
}

.download-nav-link {
  color: #c9fff5 !important;
}

.nav-cta {
  min-width: 126px;
}

.nav-cta.active {
  box-shadow: 0 0 0 0.15rem rgba(47, 137, 255, 0.24);
}

.portal-nav-btn {
  min-width: 118px;
  padding-inline: 0.7rem;
  white-space: nowrap;
}

.reseller-nav-btn {
  box-shadow: 0 0 0 0.12rem rgba(47, 137, 255, 0.18);
}

.btn {
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  border-color: transparent;
  color: #fff;
}

.btn-primary:hover {
  border-color: transparent;
  filter: brightness(1.08);
}

.btn-outline-light {
  border-color: rgba(238, 245, 255, 0.32);
  color: var(--text);
}

.btn-success {
  background: #19a982;
  border-color: #19a982;
}

.btn.disabled,
.btn:disabled {
  pointer-events: none;
  opacity: 0.48;
}

.hero-section {
  padding: 7rem 0 5rem;
}

.hero-section h1 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1.14;
  font-weight: 780;
}

.hero-lead,
.page-hero p {
  max-width: 720px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.68;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.terminal-panel,
.form-panel,
.claim-panel,
.solution-card,
.product-card,
.feature-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.92), rgba(11, 20, 33, 0.92));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.terminal-panel {
  border-radius: 8px;
  overflow: hidden;
}

.terminal-header {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--line);
}

.terminal-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.terminal-header span:nth-child(2) {
  background: var(--warning);
}

.terminal-header span:nth-child(3) {
  background: var(--primary);
}

.terminal-body {
  padding: 1.4rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.metric-row b {
  color: var(--text);
  text-align: right;
}

.metric-row.price-metric {
  align-items: center;
  margin-top: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(39, 208, 180, 0.35);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(39, 208, 180, 0.14), rgba(47, 137, 255, 0.12));
  color: #c9fff5;
}

.metric-row.price-metric span {
  font-weight: 700;
}

.metric-row.price-metric b {
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.download-panel-link {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(39, 208, 180, 0.36);
  border-radius: 8px;
  background: rgba(39, 208, 180, 0.1);
  color: #d7fff7;
  font-weight: 850;
}

.download-panel-link:hover {
  color: #ffffff;
  background: rgba(39, 208, 180, 0.18);
}

.section-band {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.03);
  border-block: 1px solid var(--line);
}

.section-block {
  padding: 4.25rem 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.6rem;
}

.text-soft {
  color: var(--soft);
  line-height: 1.8;
}

.price-note {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 680px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(39, 208, 180, 0.28);
  border-radius: 8px;
  background: rgba(39, 208, 180, 0.08);
  color: #c9fff5;
  font-weight: 700;
}

.price-note span {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.price-note strong {
  color: #ffffff;
  font-size: 1.25rem;
}

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

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

.feature-card {
  min-height: 76px;
  padding: 1rem;
  border-radius: 8px;
  color: var(--text);
  font-weight: 680;
}

.product-strip {
  display: grid;
  grid-auto-columns: minmax(280px, 360px);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.product-card {
  min-height: 198px;
  padding: 1.2rem;
  border-radius: 8px;
  scroll-snap-align: start;
}

.product-card h2,
.product-card h3 {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.25;
}

.product-card p,
.solution-card p,
.claim-panel p {
  color: var(--soft);
  line-height: 1.62;
}

.product-card a {
  display: inline-flex;
  margin-top: 0.5rem;
  color: #a8d3ff;
  font-weight: 800;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.product-card-actions a {
  margin-top: 0;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(39, 208, 180, 0.24);
  border-radius: 8px;
  background: rgba(39, 208, 180, 0.08);
  color: #c9fff5;
  font-size: 0.9rem;
}

.status-badge {
  flex: 0 0 auto;
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  background: rgba(244, 201, 93, 0.12);
  border: 1px solid rgba(244, 201, 93, 0.35);
  color: #ffe29a;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-hero {
  padding: 4.8rem 0 3rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(47, 137, 255, 0.12), rgba(39, 208, 180, 0.06));
}

.product-detail-hero {
  padding: 4.3rem 0 3rem;
}

.product-detail-hero h1 {
  max-width: 780px;
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  line-height: 1.14;
  font-weight: 780;
}

.product-detail-hero p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.68;
}

.solution-card,
.claim-panel,
.form-panel {
  border-radius: 8px;
  padding: 1.25rem;
}

.solution-card {
  min-height: 190px;
}

.claim-item {
  min-height: 82px;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(47, 137, 255, 0.08);
  border: 1px solid rgba(47, 137, 255, 0.2);
  color: var(--text);
  font-weight: 700;
}

.form-label {
  color: var(--text);
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: rgba(154, 179, 214, 0.25);
  background-color: rgba(7, 14, 24, 0.88);
  color: var(--text);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  background-color: rgba(7, 14, 24, 0.95);
  color: var(--text);
  box-shadow: 0 0 0 0.2rem rgba(47, 137, 255, 0.2);
}

.form-control::placeholder {
  color: var(--muted);
}

.text-danger {
  color: #ff9a9a !important;
}

.alert-success {
  border-color: rgba(39, 208, 180, 0.35);
  background: rgba(39, 208, 180, 0.12);
  color: #c9fff5;
}

.ecosystem-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

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

.featured-product {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 320px;
  background:
    linear-gradient(145deg, rgba(47, 137, 255, 0.2), rgba(39, 208, 180, 0.09)),
    linear-gradient(180deg, rgba(20, 34, 54, 0.95), rgba(11, 20, 33, 0.95));
}

.featured-list-card {
  border-color: rgba(47, 137, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(47, 137, 255, 0.16), rgba(39, 208, 180, 0.07)),
    linear-gradient(180deg, rgba(20, 34, 54, 0.92), rgba(11, 20, 33, 0.92));
}

.featured-badge {
  background: rgba(47, 137, 255, 0.13);
  border-color: rgba(47, 137, 255, 0.38);
  color: #b9dcff;
}

.cta-section {
  padding: 0 0 5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(39, 208, 180, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(39, 208, 180, 0.1), rgba(47, 137, 255, 0.11)),
    rgba(12, 22, 36, 0.92);
}

.cta-panel h2 {
  margin-bottom: 0;
  max-width: 820px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.stack-list {
  display: grid;
  gap: 1rem;
}

.stack-item,
.workflow-card,
.screenshot-placeholder {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.9), rgba(9, 17, 29, 0.9));
}

.stack-item {
  padding: 1rem 1.1rem;
  color: var(--soft);
  line-height: 1.7;
}

.support-summary-grid {
  display: grid;
  gap: 0.9rem;
}

.support-summary-card {
  position: relative;
  padding: 1rem 1.1rem 1rem 1.25rem;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.92), rgba(8, 17, 30, 0.94));
}

.support-summary-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.support-summary-card h3 {
  margin-bottom: 0.4rem;
  color: var(--text);
  font-size: 1rem;
}

.support-summary-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.65;
}

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

.module-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.module-detail-card {
  min-height: 154px;
  padding: 1.05rem;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14px 14px, rgba(39, 208, 180, 0.18), transparent 30px),
    linear-gradient(180deg, rgba(20, 34, 54, 0.92), rgba(8, 17, 30, 0.94));
}

.module-detail-card h3 {
  margin-bottom: 0.55rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}

.module-detail-card p {
  margin: 0;
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

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

.workflow-card {
  min-height: 170px;
  padding: 1.3rem;
}

.workflow-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(47, 137, 255, 0.16);
  color: #b9dcff;
  font-weight: 900;
}

.workflow-card p {
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 0;
}

.overview-showcase {
  margin-bottom: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(4, 10, 20, 0.72);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.overview-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.feature-detail-card {
  min-height: 174px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 28, 50, 0.88), rgba(7, 15, 28, 0.92));
  padding: 1rem;
}

.feature-detail-card h3 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.feature-detail-card p {
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

.ysk-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  color: var(--soft);
  padding-left: 1.55rem;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 16px rgba(39, 208, 180, 0.35);
}

.usage-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: rgba(8, 18, 33, 0.78);
  padding: 1rem;
}

.usage-strip span {
  color: var(--accent);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-right: 0.25rem;
}

.usage-strip strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  border-left: 1px solid rgba(148, 163, 184, 0.24);
  padding-left: 0.75rem;
}

.download-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(39, 208, 180, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(39, 208, 180, 0.1), rgba(47, 137, 255, 0.09)),
    rgba(12, 22, 36, 0.86);
}

.download-cta-panel h2 {
  margin-bottom: 0.45rem;
}

.download-cta-panel p {
  margin-bottom: 0;
}

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

.download-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.92), rgba(8, 17, 30, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.download-card-media {
  appearance: none;
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(47, 137, 255, 0.16), transparent 55%),
    rgba(5, 12, 22, 0.82);
  overflow: hidden;
  cursor: zoom-in;
}

.download-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050b13;
}

.download-card-media:hover img {
  transform: scale(1.035);
}

.download-card-media img {
  transition: transform 180ms ease, filter 180ms ease;
}

.download-card-media.mobile-media img {
  object-fit: contain;
  background: #061512;
}

.image-zoom-label {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(238, 245, 255, 0.24);
  border-radius: 8px;
  background: rgba(4, 10, 20, 0.78);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.download-card-media:hover .image-zoom-label {
  opacity: 1;
  transform: translateY(0);
}

.download-card-placeholder {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  width: calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
  border: 1px dashed rgba(154, 179, 214, 0.34);
  border-radius: 8px;
  color: var(--text);
  text-align: center;
}

.download-card-placeholder strong {
  font-size: 1rem;
}

.download-card-placeholder span {
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.featured-download-card {
  border-color: rgba(39, 208, 180, 0.3);
  background:
    linear-gradient(145deg, rgba(39, 208, 180, 0.12), rgba(47, 137, 255, 0.11)),
    linear-gradient(180deg, rgba(20, 34, 54, 0.94), rgba(8, 17, 30, 0.96));
}

.download-card h2 {
  margin-top: 1rem;
}

.download-card p {
  flex: 1;
  color: var(--soft);
  line-height: 1.7;
}

.download-price {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.2rem 0 1rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(39, 208, 180, 0.24);
  border-radius: 8px;
  background: rgba(39, 208, 180, 0.08);
  color: #c9fff5;
}

.download-price strong {
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1;
}

.download-price span {
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: right;
}

.preview-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  padding: 1rem;
}

.image-lightbox.is-open {
  display: grid;
  place-items: center;
}

.image-lightbox:target {
  display: grid;
  place-items: center;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 17, 0.82);
  backdrop-filter: blur(12px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  max-height: calc(100vh - 2rem);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: #07101c;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.mobile-lightbox-dialog {
  width: min(560px, 100%);
}

.image-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.image-lightbox-header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.image-lightbox-close {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(238, 245, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  text-decoration: none;
}

.image-lightbox-body {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 1rem;
  background: #030811;
}

.image-lightbox-body img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
}

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

.screenshot-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  border-style: dashed;
  color: var(--text);
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

.screenshot-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(154, 179, 214, 0.16);
  border-radius: 8px;
}

.success-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
}

.success-card strong {
  color: var(--text);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 137, 255, 0.11), rgba(39, 208, 180, 0.07)),
    rgba(12, 22, 36, 0.86);
}

.showcase-screen,
.screenshot-frame {
  border: 1px solid rgba(154, 179, 214, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.92), rgba(7, 14, 24, 0.95));
  overflow: hidden;
}

.showcase-screen {
  min-height: 320px;
  display: grid;
  place-items: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.showcase-screen img,
.screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-placeholder {
  display: grid;
  place-items: center;
  gap: 0.4rem;
  width: calc(100% - 3rem);
  min-height: 260px;
  border: 1px dashed rgba(154, 179, 214, 0.28);
  border-radius: 8px;
  color: var(--text);
  font-weight: 850;
}

.showcase-placeholder small,
.screenshot-frame small {
  color: var(--soft);
  font-weight: 700;
}

.screenshot-card {
  display: grid;
  gap: 0.85rem;
}

.screenshot-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  border-style: dashed;
  color: var(--text);
  font-weight: 850;
}

.screenshot-frame.has-image {
  border-style: solid;
  background: #050b13;
}

.screenshot-card h3 {
  margin-bottom: 0;
}

.safe-language-note {
  padding: 1.4rem;
  border: 1px solid rgba(39, 208, 180, 0.28);
  border-radius: 8px;
  background: rgba(39, 208, 180, 0.08);
}

.safe-language-note p {
  margin-bottom: 0;
  color: #c9fff5;
  line-height: 1.75;
  font-weight: 650;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 22, 36, 0.86);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  vertical-align: top;
}

.comparison-table th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 850;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  color: var(--text);
  font-weight: 800;
}

.sales-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.sales-intent-card {
  min-height: 180px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.9), rgba(9, 17, 29, 0.9));
}

.sales-intent-card h2 {
  font-size: 1.1rem;
}

.sales-intent-card p {
  color: var(--soft);
  line-height: 1.7;
}

.service-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem;
  border: 1px solid rgba(39, 208, 180, 0.28);
  border-radius: 8px;
  background: rgba(39, 208, 180, 0.08);
}

.service-strip p {
  margin: 0;
  color: #c9fff5;
  font-size: 0.98rem;
  line-height: 1.62;
  font-weight: 700;
}

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

.service-card {
  min-height: 250px;
  padding: 1.18rem;
  border: 1px solid rgba(39, 208, 180, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.92), rgba(11, 20, 33, 0.92));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.service-card h2 {
  margin-top: 1rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p {
  color: var(--soft);
  line-height: 1.7;
}

.service-card a {
  color: #a8d3ff;
  font-weight: 800;
}

.service-ecosystem-card {
  border-color: rgba(39, 208, 180, 0.24);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  padding: 0 0.75rem;
  border-radius: 8px;
  background: rgba(47, 137, 255, 0.12);
  color: #b9dcff;
  font-size: 0.82rem;
  font-weight: 850;
}

.service-badge {
  background: rgba(39, 208, 180, 0.12);
  border-color: rgba(39, 208, 180, 0.35);
  color: #c9fff5;
}

.workflow-mini-list {
  display: grid;
  gap: 0.85rem;
}

.workflow-mini-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(47, 137, 255, 0.07);
}

.workflow-mini-item span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(39, 208, 180, 0.14);
  color: #c9fff5;
  font-weight: 900;
}

.workflow-mini-item p {
  margin: 0;
  color: var(--soft);
  line-height: 1.6;
}

.portal-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.portal-preview-card {
  min-height: 190px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 34, 54, 0.9), rgba(9, 17, 29, 0.9));
}

.portal-preview-card h2 {
  font-size: 1.12rem;
}

.portal-preview-card p {
  color: var(--soft);
  line-height: 1.7;
}

.portal-license-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.portal-license-card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.66);
  border-radius: 8px;
  padding: 1rem;
}

.portal-license-card h3 {
  font-size: 1rem;
  margin: 0;
}

.portal-license-card dl {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
}

.portal-license-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding-top: 0.75rem;
}

.portal-license-card dt {
  color: var(--soft);
  font-weight: 600;
}

.portal-license-card dd {
  margin: 0;
  color: var(--text);
  text-align: right;
  font-weight: 700;
}

.site-footer {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  background: #060b13;
  color: var(--soft);
}

.site-footer strong,
.site-footer h2 {
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-grid-wide {
  grid-template-columns: 2fr repeat(4, 1fr);
}

.site-footer h2 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--soft);
}

.site-footer a:hover {
  color: var(--text);
}

.footer-brand p {
  max-width: 480px;
  margin: 0.65rem 0;
  line-height: 1.7;
}

.kvkk-note {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-disabled-link {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 5rem;
  }

  .brand-logo {
    height: 42px;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  .portal-nav-btn {
    width: 100%;
    margin-top: 0.35rem;
  }

  .navbar-dark .navbar-nav .nav-link.active::after {
    width: 42px;
  }

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

  .featured-product {
    grid-column: span 2;
    min-height: 260px;
  }

  .cta-panel,
  .download-cta-panel,
  .footer-grid,
  .footer-grid-wide {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .modules-grid,
  .module-detail-grid,
  .workflow-grid,
  .screenshot-grid,
  .feature-detail-grid,
  .ysk-info-grid,
  .product-showcase,
  .sales-intent-grid,
  .services-grid,
  .service-strip,
  .portal-preview-grid,
  .portal-license-grid,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-showcase {
    align-items: stretch;
  }
}

@media (max-width: 767.98px) {
  .hero-section,
  .section-block,
  .section-band {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: clamp(1.62rem, 7vw, 2.12rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .page-hero {
    padding: 3.25rem 0 2.15rem;
  }

  .product-detail-hero {
    padding: 3rem 0 2.1rem;
  }

  .product-detail-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .product-detail-hero p {
    font-size: 0.98rem;
  }

  .navbar {
    min-height: 68px;
  }

  .navbar-brand {
    gap: 0.65rem;
  }

  .brand-logo {
    height: 36px;
    max-width: 170px;
  }

  .brand-fallback {
    font-size: 1.12rem;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
    white-space: normal;
  }

  .feature-grid,
  .feature-grid.compact {
    grid-template-columns: 1fr;
  }

  .metric-row {
    flex-direction: column;
  }

  .metric-row b {
    text-align: left;
  }

  .ecosystem-grid,
  .modules-grid,
  .module-detail-grid,
  .workflow-grid,
  .screenshot-grid,
  .feature-detail-grid,
  .ysk-info-grid,
  .product-showcase,
  .sales-intent-grid,
  .services-grid,
  .service-strip,
  .portal-preview-grid,
  .portal-license-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    padding: 1.2rem;
  }

  .showcase-screen {
    min-height: 230px;
  }

  .featured-product {
    grid-column: span 1;
    min-height: 240px;
  }

  .cta-panel {
    padding: 1.3rem;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
