/*
Theme Name: Tradenix
Author: Tradenix
Description: Tema institucional inicial para a página de vendas do Tradenix.
Version: 1.0.0
Text Domain: tradenix
*/

:root {
  --ink: #071b3a;
  --ink-soft: #243246;
  --paper: #f4f7fa;
  --ice: #f3f7ff;
  --surface: #ffffff;
  --teal: #10c7b2;
  --teal-dark: #079b8a;
  --blue: #1769ff;
  --cyan: #00bfd8;
  --amber: #1769ff;
  --line: #e4e9f0;
  --line-dark: rgba(255, 255, 255, 0.12);
  --muted: #667085;
  --shadow: 0 18px 60px rgba(7, 27, 58, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
.section-title {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(7, 27, 58, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1280px, calc(100% - 64px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 40px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(7, 27, 58, 0.72);
  font-size: 0.9rem;
}

.nav ul,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a:hover,
.nav-menu a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.header-login {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(23, 105, 255, 0.22);
}

.wp-block-button.button-primary .wp-block-button__link,
.wp-block-button__link.button-primary {
  color: #fff;
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(23, 105, 255, 0.22);
  font-weight: 700;
}

.button-primary:hover {
  background: #0e5bef;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.wp-block-button.button-secondary .wp-block-button__link,
.wp-block-button__link.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.button-on-light {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(7, 27, 58, 0.96) 0%, rgba(7, 27, 58, 0.88) 40%, rgba(7, 27, 58, 0.46) 72%, rgba(7, 27, 58, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 27, 58, 0.18), rgba(7, 27, 58, 0.86)),
    url("assets/bg-port-terminal.jpg");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0 48px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 18px;
  margin-top: 36px;
}

.metric {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.section {
  padding: 88px 0;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.wp-site-blocks,
.page-content {
  width: 100%;
}

.section-alt {
  background: var(--surface);
}

.audience-section {
  background: #edf2ee;
}

.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.tradenix-section {
  padding: 88px 0;
}

.tradenix-section.is-alt {
  background: var(--surface);
}

.tradenix-section.is-soft {
  background:
    linear-gradient(90deg, rgba(244, 247, 250, 0.97), rgba(244, 247, 250, 0.93)),
    url("assets/bg-container-ship.jpg");
  background-size: cover;
  background-position: center;
}

.tradenix-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.tradenix-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(7, 27, 58, 0.96) 0%, rgba(7, 27, 58, 0.88) 40%, rgba(7, 27, 58, 0.46) 72%, rgba(7, 27, 58, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 27, 58, 0.18), rgba(7, 27, 58, 0.86)),
    url("assets/bg-port-terminal.jpg");
  background-size: cover;
  background-position: center;
}

.tradenix-hero .tradenix-container {
  padding: 108px 0 48px;
}

.tradenix-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.tradenix-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.tradenix-eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tradenix-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tradenix-stat-grid {
  width: 100%;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 18px;
  margin-top: 52px;
}

.tradenix-stat {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.tradenix-stat strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
}

.tradenix-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.tradenix-page-hero {
  padding: 150px 0 76px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.78)),
    url("assets/bg-port-dusk.jpg");
  background-size: cover;
  background-position: center;
}

.tradenix-page-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
}

.tradenix-page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
}

.tradenix-card-grid {
  width: 100%;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.tradenix-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.wp-block-group.tradenix-stat-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 150px));
}

.wp-block-group.tradenix-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wp-block-group.tradenix-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.tradenix-stat-grid > .wp-block-group__inner-container,
.tradenix-card-grid > .wp-block-group__inner-container {
  width: 100%;
  max-width: none !important;
  display: grid !important;
  gap: 18px;
}

.tradenix-stat-grid > .wp-block-group__inner-container {
  grid-template-columns: repeat(3, minmax(0, 150px)) !important;
}

.tradenix-card-grid > .wp-block-group__inner-container {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.tradenix-card-grid.four > .wp-block-group__inner-container {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.tradenix-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(16, 20, 20, 0.06);
}

.tradenix-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.tradenix-card p {
  margin: 0;
  color: var(--muted);
}

.tradenix-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.tradenix-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #071313;
  background: var(--amber);
  font-weight: 900;
}

.tradenix-split {
  width: 100%;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.tradenix-container.tradenix-split,
.tradenix-container.faq-layout {
  width: min(1160px, calc(100% - 32px));
  max-width: 1160px !important;
}

.tradenix-list {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 14px;
}

.tradenix-list-item {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.tradenix-list-item > p {
  display: none;
}

.tradenix-list-item strong {
  display: block;
  margin-bottom: 4px;
}

.tradenix-list-item div {
  min-width: 0;
}

.tradenix-list-item span {
  color: var(--muted);
}

.tradenix-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f7f4;
  color: var(--teal-dark);
  font-weight: 900;
}

.tradenix-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tradenix-cta {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.84)),
    url("assets/bg-cargo-night.jpg");
  background-size: cover;
  background-position: center;
}

.tradenix-cta h2,
.tradenix-cta p {
  color: #fff;
}

.tradenix-cta p {
  color: rgba(255, 255, 255, 0.68);
}

.tradenix-form-wrap .wpcf7-form {
  display: grid;
  gap: 16px;
}

.tradenix-form-wrap label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

.tradenix-form-wrap input,
.tradenix-form-wrap textarea,
.tradenix-form-wrap select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.tradenix-form-wrap textarea {
  min-height: 150px;
  resize: vertical;
}

.tradenix-form-wrap input[type="submit"] {
  width: auto;
  min-width: 190px;
  border-color: var(--teal);
  color: #071313;
  background: var(--teal);
  font-weight: 900;
  cursor: pointer;
}

.tradenix-post-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.tradenix-post-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.tradenix-post-list h2 {
  margin: 0 0 10px;
}

.tradenix-post-list p {
  color: var(--muted);
}

.article-content {
  max-width: 820px;
}

.article-content > * + * {
  margin-top: 18px;
}

.article-content h2,
.article-content h3 {
  margin-top: 42px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.feature-card {
  min-height: 238px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(16, 20, 20, 0.06);
}

.platform-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0, 184, 169, 0.16), transparent 44%),
    #101414;
  box-shadow: var(--shadow);
}

.product-screen {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(23, 105, 255, 0.16), transparent 40%),
    linear-gradient(320deg, rgba(16, 199, 178, 0.16), transparent 46%),
    #071b3a;
  box-shadow: var(--shadow);
}

.product-screen-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.product-screen-bar strong {
  color: #fff;
}

.product-screen-bar span {
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.product-screen-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 16px;
}

.product-screen-main,
.product-screen-side,
.product-screen-row {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.product-screen-main {
  min-height: 250px;
  padding: 18px;
}

.product-screen-side {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-screen-row {
  min-height: 54px;
  padding: 12px;
}

.product-screen-row small,
.product-screen-main small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
}

.product-screen-row strong,
.product-screen-main strong {
  display: block;
  margin-top: 4px;
  color: #fff;
}

.product-screen-steps {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-screen-steps span {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
}

.connection-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.connection-flow span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  text-align: center;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.panel-topline span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.panel-topline strong {
  color: var(--teal);
}

.panel-chart {
  height: 220px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.panel-chart span {
  min-height: 42px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(0, 184, 169, 0.14));
}

.panel-chart span:nth-child(1) {
  height: 44%;
}

.panel-chart span:nth-child(2) {
  height: 72%;
}

.panel-chart span:nth-child(3) {
  height: 58%;
}

.panel-chart span:nth-child(4) {
  height: 86%;
  background: linear-gradient(180deg, var(--amber), rgba(243, 168, 59, 0.12));
}

.panel-chart span:nth-child(5) {
  height: 64%;
}

.panel-chart span:nth-child(6) {
  height: 78%;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}

.panel-grid div {
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.panel-grid small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
}

.panel-grid strong {
  display: block;
}

.module-grid {
  width: 100%;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.module-item {
  min-height: 230px;
  padding: 30px;
  background: var(--surface);
}

.module-item span {
  color: var(--teal-dark);
  font-weight: 900;
}

.module-item h3 {
  margin: 44px 0 10px;
  font-size: 1.35rem;
}

.module-item p {
  margin: 0;
  color: var(--muted);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #071313;
  background: var(--amber);
  font-weight: 900;
}

.feature-card h3 {
  margin: 22px 0 10px;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

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

.signal-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.audience-item {
  padding: 28px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--surface);
}

.audience-item h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.audience-item p {
  margin: 0;
  color: var(--muted);
}

.faq-layout {
  width: 100%;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.signal-item strong {
  display: block;
  margin-bottom: 4px;
}

.signal-item span {
  color: var(--muted);
}

.signal-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f7f4;
  color: var(--teal-dark);
  font-weight: 900;
}

.cta-band {
  padding: 72px 0;
  color: #fff;
  background: var(--ink);
}

.cta-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.cta-inner p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.cta-kicker {
  color: var(--amber);
}

.legal-note {
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.56);
  background: #080d0d;
  font-size: 0.84rem;
}

.legal-note p {
  max-width: 940px;
  margin: 0;
}

.site-footer {
  padding: 64px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink);
}

.footer-inner {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 72px;
  font-size: 0.92rem;
}

.footer-brand img {
  width: 168px;
  height: auto;
  display: block;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-brand strong {
  display: block;
  margin: 0;
}

.footer-brand strong {
  margin-top: 10px;
  color: #fff;
}

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

.footer-columns h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-columns a,
.footer-menu a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.tx-home {
  background: #f5f8fb;
}

.tx-container,
.tx-hero-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.tx-hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 124px 0 56px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 27, 58, 0.98), rgba(7, 27, 58, 0.88) 54%, rgba(7, 27, 58, 0.72)),
    url("assets/bg-port-terminal.jpg");
  background-position: center;
  background-size: cover;
}

.tx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 105, 255, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  opacity: 0.35;
}

.tx-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.tx-kicker {
  margin: 0 0 18px;
  color: #47dfd1;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tx-hero h1 {
  max-width: 690px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.96;
}

.tx-hero-copy > p:not(.tx-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.18rem;
}

.tx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tx-hero-visual {
  position: relative;
  min-height: 520px;
}

.tx-mark-fragment {
  position: absolute;
  z-index: 0;
  transform: skewX(-34deg);
  opacity: 0.9;
}

.tx-mark-fragment.one {
  width: 86px;
  height: 330px;
  right: 114px;
  top: 8px;
  background: var(--blue);
}

.tx-mark-fragment.two {
  width: 98px;
  height: 240px;
  right: 12px;
  bottom: 16px;
  background: var(--teal);
}

.tx-console {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.tx-console-top,
.tx-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tx-console-top span,
.tx-browser-bar strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.tx-console-top strong {
  color: var(--teal);
  font-size: 0.8rem;
}

.tx-console-body {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  padding: 18px;
}

.tx-console-main,
.tx-console-side div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 27, 58, 0.72);
}

.tx-console-main {
  min-height: 330px;
  padding: 20px;
}

.tx-status-line {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.55fr;
  gap: 8px;
  margin-bottom: 34px;
}

.tx-status-line span {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.tx-status-line span:first-child {
  background: var(--teal);
}

.tx-console-main h3 {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
}

.tx-console-main p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.tx-kanban {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.tx-kanban span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
}

.tx-kanban .is-done {
  color: #b8fff7;
  background: rgba(16, 199, 178, 0.18);
}

.tx-kanban .is-live {
  color: #fff;
  background: rgba(23, 105, 255, 0.28);
}

.tx-console-side {
  display: grid;
  gap: 12px;
}

.tx-console-side div {
  min-height: 94px;
  padding: 16px;
}

.tx-console-side small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
}

.tx-console-side strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.tx-trust {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.tx-trust .tx-container {
  min-height: 86px;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 24px;
  align-items: center;
}

.tx-trust span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.tx-trust div div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.tx-trust strong,
.tx-audience-panels li,
.tx-flow span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tx-trust strong {
  padding: 0 12px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.tx-section {
  padding: 96px 0;
}

.tx-problem {
  background: #f5f8fb;
}

.tx-problem-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: center;
}

.tx-convergence {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.tx-convergence::before {
  content: "";
  position: absolute;
  left: 34%;
  right: 27%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(23, 105, 255, 0), var(--blue), var(--teal));
}

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

.tx-source-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 27, 58, 0.06);
  font-weight: 900;
}

.tx-hub {
  min-height: 170px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.42), rgba(16, 199, 178, 0.22)),
    var(--ink);
  box-shadow: var(--shadow);
  font-size: 1.55rem;
  font-weight: 900;
}

.tx-platform {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 27, 58, 0.94), rgba(7, 27, 58, 0.98)),
    url("assets/bg-port-dusk.jpg");
  background-size: cover;
  background-position: center;
}

.tx-platform .section-title,
.tx-platform .section-copy {
  color: #fff;
}

.tx-platform .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.tx-browser {
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.tx-browser-bar {
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.08);
}

.tx-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.tx-browser-bar strong {
  margin-left: 10px;
  font-weight: 700;
}

.tx-dashboard {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 470px;
}

.tx-dashboard aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
}

.tx-dashboard aside strong {
  margin-bottom: 14px;
  color: #fff;
}

.tx-dashboard aside span {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.64);
}

.tx-dashboard aside .active {
  color: #fff;
  background: rgba(23, 105, 255, 0.32);
}

.tx-dashboard main,
.tx-dashboard .tx-dashboard-main {
  padding: 26px;
}

.tx-dashboard-head {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 16px;
  margin-bottom: 18px;
}

.tx-dashboard-head div,
.tx-table div,
.tx-annotations span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.tx-dashboard-head div {
  padding: 18px;
}

.tx-dashboard small,
.tx-dashboard-head small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
}

.tx-dashboard-head strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.25rem;
}

.tx-table {
  display: grid;
  gap: 12px;
}

.tx-table div {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
}

.tx-table strong,
.tx-table b {
  color: #fff;
}

.tx-table span {
  color: rgba(255, 255, 255, 0.62);
}

.tx-table b {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(16, 199, 178, 0.22);
  font-size: 0.78rem;
}

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

.tx-annotations span {
  min-height: 104px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.tx-annotations strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.tx-audience-section {
  background:
    linear-gradient(90deg, rgba(245, 248, 251, 0.97), rgba(245, 248, 251, 0.92)),
    url("assets/bg-container-ship.jpg");
  background-size: cover;
  background-position: center;
}

.tx-audience-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.tx-audience-panels article {
  min-height: 440px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.tx-audience-panels article > span {
  color: var(--blue);
  font-weight: 900;
}

.tx-audience-panels h3 {
  margin: 30px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.tx-audience-panels p {
  color: var(--muted);
}

.tx-audience-panels ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tx-audience-panels li {
  padding: 0 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.tx-audience-panels a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 900;
}

.tx-bento {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 16px;
  margin-top: 38px;
}

.tx-bento article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 27, 58, 0.07);
}

.tx-bento .large {
  grid-row: span 2;
  min-height: 396px;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(23, 105, 255, 0.2), rgba(16, 199, 178, 0.14)),
    var(--ink);
}

.tx-bento strong {
  color: var(--teal-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.tx-bento .large strong,
.tx-bento .large h3 {
  color: #fff;
}

.tx-bento h3 {
  max-width: 420px;
  margin: 110px 0 12px;
  font-size: 2rem;
  line-height: 1.04;
}

.tx-bento p {
  margin: 10px 0 0;
  color: var(--muted);
}

.tx-bento .large p {
  color: rgba(255, 255, 255, 0.68);
}

.tx-connection {
  color: #fff;
  background: var(--ink);
}

.tx-connection .section-title {
  color: #fff;
}

.tx-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
  position: relative;
}

.tx-flow::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.tx-flow span {
  position: relative;
  z-index: 1;
  justify-content: center;
  min-height: 78px;
  color: #fff;
  background: #0d274f;
  border-color: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  text-align: center;
}

.tx-numbers {
  background: #fff;
}

.tx-numbers .tx-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.tx-numbers div div {
  min-height: 190px;
  padding: 28px;
  background: #fff;
}

.tx-numbers strong {
  display: block;
  color: var(--blue);
  font-size: 3.2rem;
  line-height: 1;
}

.tx-numbers span {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-weight: 800;
}

.tx-enterprise-home {
  color: var(--ink);
  background: var(--surface);
}

.tx-enterprise-home .tx-container,
.tx-enterprise-home .tx-hero-grid {
  width: min(1280px, calc(100% - 64px));
}

.tx-enterprise-home .tx-hero {
  min-height: 760px;
  padding: 128px 0 80px;
  background:
    linear-gradient(120deg, rgba(7, 27, 58, 0.99), rgba(7, 27, 58, 0.96) 58%, rgba(7, 27, 58, 0.92)),
    var(--ink);
}

.tx-enterprise-home .tx-hero::before {
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(23, 105, 255, 0.18) 48.1% 48.7%, transparent 48.8%),
    linear-gradient(60deg, transparent 0 58%, rgba(0, 191, 216, 0.12) 58.1% 58.45%, transparent 58.55%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 96px 96px, 96px 96px;
  mask-image: none;
  opacity: 1;
}

.tx-enterprise-home .tx-hero-grid {
  grid-template-columns: minmax(0, 0.52fr) minmax(520px, 0.48fr);
  gap: 72px;
}

.tx-enterprise-home .tx-kicker,
.tx-enterprise-home .section-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tx-enterprise-home .tx-hero .tx-kicker {
  color: #73dcff;
}

.tx-enterprise-home .tx-hero h1 {
  max-width: 680px;
  font-size: clamp(3.5rem, 5.1vw, 4rem);
  line-height: 1.09;
}

.tx-enterprise-home .tx-hero-copy > p:not(.tx-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.6;
}

.tx-enterprise-home .button {
  min-height: 50px;
  padding: 0 20px;
}

.tx-enterprise-home .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}

.tx-product-stage {
  position: relative;
  min-height: 540px;
}

.tx-diagonal-grid {
  position: absolute;
  inset: 24px -18px -18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(130deg, transparent 0 42%, rgba(23, 105, 255, 0.18) 42.2% 43%, transparent 43.2%),
    linear-gradient(52deg, transparent 0 62%, rgba(16, 199, 178, 0.14) 62.1% 62.8%, transparent 63%),
    rgba(255, 255, 255, 0.025);
  transform: skewX(-6deg);
}

.tx-app-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #f4f7fa;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
}

.tx-app-window-main {
  margin-top: 24px;
}

.tx-app-bar {
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.tx-app-bar span,
.tx-app-bar strong,
.tx-app-bar small {
  color: var(--ink);
}

.tx-app-bar span {
  color: var(--blue);
  font-weight: 800;
}

.tx-app-bar small {
  color: var(--muted);
  font-size: 12px;
}

.tx-app-layout {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 460px;
}

.tx-app-layout aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.tx-app-layout aside strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
}

.tx-app-layout aside span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13px;
}

.tx-app-layout aside .active {
  color: #fff;
  background: rgba(23, 105, 255, 0.45);
}

.tx-app-layout .tx-app-main {
  padding: 22px;
}

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

.tx-ui-head div,
.tx-ui-metrics span,
.tx-ui-row {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.tx-ui-head div,
.tx-ui-metrics span {
  padding: 16px;
}

.tx-ui-head small,
.tx-ui-metrics small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.tx-ui-head strong,
.tx-ui-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

.tx-ui-board {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.tx-ui-row {
  min-height: 66px;
  display: grid;
  grid-template-columns: 0.8fr 0.75fr 1.2fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.tx-ui-row b {
  color: var(--ink);
}

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

.tx-ui-row em {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #07594f;
  background: rgba(16, 199, 178, 0.13);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

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

.tx-enterprise-home .tx-trust {
  border-bottom: 1px solid var(--line);
}

.tx-enterprise-home .tx-trust .tx-container {
  min-height: 96px;
  grid-template-columns: 0.48fr 1.52fr;
}

.tx-enterprise-home .tx-trust strong {
  border-radius: 8px;
  color: var(--ink-soft);
  background: var(--surface);
}

.tx-enterprise-home .tx-section {
  padding: 112px 0;
}

.tx-enterprise-home .section-title {
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1.12;
}

.tx-enterprise-home .section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.tx-enterprise-home .tx-problem {
  background: #fff;
}

.tx-enterprise-home .tx-source-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tx-enterprise-home .tx-source-list span {
  min-height: 58px;
  border-color: var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(7, 27, 58, 0.05);
}

.tx-enterprise-home .tx-hub {
  min-height: 220px;
  display: grid;
  gap: 8px;
  align-content: center;
  border-radius: 20px;
  background:
    linear-gradient(130deg, rgba(23, 105, 255, 0.32), transparent 48%),
    linear-gradient(48deg, transparent 0 56%, rgba(0, 191, 216, 0.22) 56.2% 57%, transparent 57.2%),
    var(--ink);
}

.tx-enterprise-home .tx-hub strong {
  color: #fff;
  font-size: 1.5rem;
}

.tx-enterprise-home .tx-hub small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.tx-enterprise-home .tx-platform {
  color: var(--ink);
  background: var(--paper);
}

.tx-enterprise-home .tx-platform .section-title {
  color: var(--ink);
}

.tx-enterprise-home .tx-platform .section-copy {
  color: var(--muted);
}

.tx-section-head {
  max-width: 760px;
}

.tx-section-head.narrow {
  max-width: 680px;
}

.tx-product-large {
  width: min(1120px, 100%);
  margin: 48px auto 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 27, 58, 0.12);
}

.tx-enterprise-home .tx-browser-bar {
  border-bottom-color: var(--line);
  background: #fff;
}

.tx-enterprise-home .tx-browser-bar span {
  background: #ccd6e3;
}

.tx-enterprise-home .tx-browser-bar strong {
  color: var(--muted);
}

.tx-enterprise-home .tx-dashboard {
  color: var(--ink);
  background: var(--paper);
}

.tx-enterprise-home .tx-dashboard aside {
  background: var(--ink);
}

.tx-enterprise-home .tx-dashboard aside strong {
  color: #fff;
}

.tx-enterprise-home .tx-dashboard-head div,
.tx-enterprise-home .tx-table div {
  border-color: var(--line);
  background: #fff;
}

.tx-enterprise-home .tx-dashboard-head strong,
.tx-enterprise-home .tx-table strong {
  color: var(--ink);
}

.tx-enterprise-home .tx-table b {
  color: #07594f;
  background: rgba(16, 199, 178, 0.14);
}

.tx-enterprise-home .tx-table span,
.tx-enterprise-home .tx-dashboard small {
  color: var(--muted);
}

.tx-enterprise-home .tx-annotations span {
  border-color: var(--line);
  color: var(--muted);
  background: #fff;
}

.tx-enterprise-home .tx-annotations strong {
  color: var(--ink);
}

.tx-solution-panel {
  background: #fff;
}

.tx-customs {
  background: var(--ice);
}

.tx-solution-grid {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 72px;
  align-items: center;
}

.tx-solution-grid.reverse {
  grid-template-columns: 0.52fr 0.48fr;
}

.tx-solution-panel a,
.tx-content-callout a {
  display: inline-flex;
  margin-top: 32px;
  color: var(--blue);
  font-weight: 800;
}

.tx-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.tx-inline-list li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.tx-mini-product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 27, 58, 0.1);
}

.tx-mini-product-head {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.tx-mini-product-head strong {
  color: var(--blue);
}

.tx-mini-product-head span {
  color: var(--muted);
  font-size: 14px;
}

.tx-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 20px;
  background: var(--paper);
}

.tx-lane span {
  min-height: 96px;
  display: flex;
  align-items: end;
  padding: 14px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.tx-lane span:nth-child(2) {
  border-top: 4px solid var(--blue);
}

.tx-lane span:nth-child(3) {
  border-top: 4px solid var(--cyan);
}

.tx-lane span:nth-child(4) {
  border-top: 4px solid var(--teal);
}

.tx-mini-table {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  padding: 0 20px 20px;
}

.tx-mini-table span,
.tx-mini-table strong {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.tx-mini-table span {
  color: var(--muted);
  font-size: 14px;
}

.tx-mini-table strong {
  color: var(--ink);
}

.tx-bento-section {
  background: linear-gradient(180deg, var(--ice), #fff);
}

.tx-enterprise-home .tx-bento {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.tx-enterprise-home .tx-bento article {
  border-color: var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(7, 27, 58, 0.06);
}

.tx-enterprise-home .tx-bento .large {
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.22), transparent 44%),
    var(--ink);
}

.tx-enterprise-home .tx-bento .wide {
  grid-column: span 2;
}

.tx-bento-screen {
  display: grid;
  gap: 10px;
  margin-top: 44px;
}

.tx-bento-screen span {
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.tx-bento-screen span:first-child {
  background: rgba(23, 105, 255, 0.42);
}

.tx-enterprise-home .tx-connection {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7, 27, 58, 1), rgba(7, 27, 58, 0.96)),
    var(--ink);
}

.tx-enterprise-home .tx-connection::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 34%, rgba(23, 105, 255, 0.22) 34.1% 34.6%, transparent 34.8%),
    linear-gradient(52deg, transparent 0 70%, rgba(0, 191, 216, 0.16) 70.1% 70.55%, transparent 70.7%);
  opacity: 0.9;
}

.tx-enterprise-home .tx-connection .tx-container {
  position: relative;
  z-index: 1;
}

.tx-connection-head {
  max-width: 700px;
}

.tx-connection-head p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
}

.tx-flow-map {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  margin-top: 48px;
}

.tx-flow-map::before,
.tx-flow-map::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--teal));
}

.tx-flow-map::before {
  top: 42%;
  transform: skewY(-9deg);
}

.tx-flow-map::after {
  top: 58%;
  transform: skewY(9deg);
  opacity: 0.55;
}

.tx-flow-map span {
  position: relative;
  z-index: 1;
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  background: #0c264f;
  font-weight: 800;
  text-align: center;
}

.tx-integrations {
  background: #fff;
}

.tx-integration-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 80px;
  align-items: center;
}

.tx-hub-map {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.tx-hub-map::before,
.tx-hub-map::after {
  content: "";
  position: absolute;
  inset: 70px;
  border: 1px solid var(--line);
  border-radius: 20px;
  transform: rotate(-6deg);
}

.tx-hub-map::after {
  inset: 112px;
  border-color: rgba(23, 105, 255, 0.3);
  transform: rotate(8deg);
}

.tx-hub-map strong {
  position: relative;
  z-index: 2;
  width: 170px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.tx-hub-map span {
  position: absolute;
  z-index: 3;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: #fff;
  font-weight: 700;
}

.tx-hub-map span:nth-of-type(1) { left: 4%; top: 14%; }
.tx-hub-map span:nth-of-type(2) { right: 10%; top: 12%; }
.tx-hub-map span:nth-of-type(3) { left: 0; top: 48%; }
.tx-hub-map span:nth-of-type(4) { right: 0; top: 44%; }
.tx-hub-map span:nth-of-type(5) { left: 12%; bottom: 12%; }
.tx-hub-map span:nth-of-type(6) { right: 18%; bottom: 13%; }
  .tx-hub-map span:nth-of-type(7) { right: 42%; bottom: 4%; }

.tx-proof {
  background: var(--paper);
}

.tx-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.tx-proof-grid div {
  min-height: 184px;
  padding: 28px;
  background: #fff;
}

.tx-proof-grid strong {
  display: block;
  color: var(--ink);
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
}

.tx-proof-grid span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

.tx-content-callout {
  background: #fff;
}

.tx-content-grid {
  display: grid;
  grid-template-columns: 0.5fr 0.35fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.tx-content-grid p {
  color: var(--muted);
}

.tx-final-cta {
  background:
    linear-gradient(130deg, rgba(23, 105, 255, 0.16), transparent 44%),
    var(--ink);
}

@media (max-width: 820px) {
  .header-inner {
    height: 64px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
    background-image:
      linear-gradient(180deg, rgba(7, 27, 58, 0.96) 0%, rgba(7, 27, 58, 0.82) 58%, rgba(7, 27, 58, 0.68) 100%),
      url("assets/bg-port-terminal.jpg");
    background-position: 63% center;
  }

  .hero-inner {
    padding-top: 104px;
  }

  .hero-metrics,
  .tx-hero-grid,
  .tx-console-body,
  .tx-trust .tx-container,
  .tx-problem-grid,
  .tx-convergence,
  .tx-dashboard,
  .tx-dashboard-head,
  .tx-annotations,
  .tx-app-layout,
  .tx-ui-head,
  .tx-ui-metrics,
  .tx-solution-grid,
  .tx-solution-grid.reverse,
  .tx-lane,
  .tx-proof-grid,
  .tx-content-grid,
  .tx-integration-grid,
  .tx-audience-panels,
  .tx-bento,
  .tx-flow,
  .tx-numbers .tx-container,
  .footer-inner,
  .footer-columns,
  .tradenix-stat-grid,
  .tradenix-stat-grid > .wp-block-group__inner-container,
  .tradenix-card-grid,
  .tradenix-card-grid.four,
  .wp-block-group.tradenix-card-grid,
  .wp-block-group.tradenix-card-grid.four,
  .wp-block-group.tradenix-stat-grid,
  .tradenix-card-grid > .wp-block-group__inner-container,
  .tradenix-card-grid.four > .wp-block-group__inner-container,
  .tradenix-split,
  .feature-grid,
  .split,
  .module-grid,
  .audience-grid,
  .faq-layout,
  .cta-inner,
  .product-screen-grid,
  .connection-flow {
    grid-template-columns: 1fr;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.94);
  }

  .brand {
    width: 132px;
  }

  .header-inner {
    width: min(100% - 32px, 1280px);
  }

  .header-login {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .tx-enterprise-home .tx-container,
  .tx-enterprise-home .tx-hero-grid {
    width: min(100% - 32px, 1280px);
  }

  .tx-enterprise-home .tx-hero-grid,
  .tx-enterprise-home .tx-dashboard,
  .tx-enterprise-home .tx-dashboard-head,
  .tx-enterprise-home .tx-annotations,
  .tx-enterprise-home .tx-bento,
  .tx-enterprise-home .tx-trust .tx-container,
  .tx-enterprise-home .tx-app-layout,
  .tx-enterprise-home .tx-ui-head,
  .tx-enterprise-home .tx-ui-metrics,
  .tx-enterprise-home .tx-solution-grid,
  .tx-enterprise-home .tx-solution-grid.reverse,
  .tx-enterprise-home .tx-proof-grid,
  .tx-enterprise-home .tx-content-grid,
  .tx-enterprise-home .tx-integration-grid {
    grid-template-columns: 1fr;
  }

  .tx-enterprise-home .tx-hero {
    min-height: auto;
    padding: 92px 0 40px;
  }

  .tx-enterprise-home .tx-hero h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .tx-enterprise-home .tx-hero-copy > p:not(.tx-kicker) {
    font-size: 16px;
  }

  .tx-product-stage {
    min-height: auto;
    margin-top: 32px;
    overflow: hidden;
    max-height: 360px;
  }

  .tx-diagonal-grid {
    inset: 10px;
  }

  .tx-app-window {
    border-radius: 16px;
    max-height: 340px;
  }

  .tx-app-window-main {
    margin-top: 0;
  }

  .tx-product-stage .tx-app-layout {
    min-height: auto;
  }

  .tx-product-stage .tx-app-layout aside {
    display: none;
  }

  .tx-product-stage .tx-app-main {
    padding: 14px;
  }

  .tx-product-stage .tx-ui-row {
    min-height: 58px;
  }

  .tx-product-stage .tx-ui-row:nth-child(n+3),
  .tx-product-stage .tx-ui-metrics {
    display: none;
  }

  .tx-app-layout aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-ui-row {
    grid-template-columns: 1fr;
  }

  .tx-enterprise-home .tx-trust .tx-container {
    grid-template-columns: 1fr;
  }

  .tx-enterprise-home .tx-section {
    padding: 72px 0;
  }

  .tx-enterprise-home .section-title {
    font-size: 30px;
  }

  .tx-enterprise-home .tx-source-list {
    grid-template-columns: 1fr;
  }

  .tx-product-large {
    border-radius: 16px;
  }

  .tx-lane {
    grid-template-columns: 1fr;
  }

  .tx-enterprise-home .tx-bento .wide {
    grid-column: auto;
  }

  .tx-flow-map {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .tx-flow-map::before,
  .tx-flow-map::after,
  .tx-hub-map::before,
  .tx-hub-map::after {
    display: none;
  }

  .tx-hub-map {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .tx-hub-map strong,
  .tx-hub-map span {
    position: static;
    width: auto;
  }

  .tx-hub-map strong {
    grid-column: 1 / -1;
    height: 96px;
  }

/* Clean production home */
.tx-clean-home {
  --clean-max: 1240px;
  color: var(--ink);
  background: #fff;
  overflow: hidden;
}

.tx-clean-container {
  width: min(var(--clean-max), calc(100% - 64px));
  margin: 0 auto;
}

.tx-clean-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tx-clean-hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.9) 46%, rgba(7, 27, 58, 0.58)),
    linear-gradient(180deg, rgba(7, 27, 58, 0.15), rgba(7, 27, 58, 0.82)),
    url("assets/bg-port-terminal.jpg");
  background-size: cover;
  background-position: center;
  animation: txHeroDrift 18s ease-in-out infinite alternate;
}

.tx-clean-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(23, 105, 255, 0.16) 42.1% 42.4%, transparent 42.5%),
    linear-gradient(58deg, transparent 0 68%, rgba(0, 191, 216, 0.14) 68.1% 68.35%, transparent 68.45%);
  opacity: 0.8;
}

.tx-motion-line {
  position: absolute;
  height: 1px;
  width: 42vw;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 216, 0.8), transparent);
  transform: rotate(-34deg);
  opacity: 0.45;
  animation: txLineMove 7s ease-in-out infinite alternate;
}

.tx-motion-line.one {
  right: 8%;
  top: 22%;
}

.tx-motion-line.two {
  right: 22%;
  bottom: 18%;
  animation-delay: 1.4s;
}

.tx-clean-hero .tx-clean-container {
  position: relative;
  z-index: 1;
}

.tx-clean-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.tx-clean-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.62;
}

.tx-clean-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tx-specialty-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.tx-specialty-track {
  width: max-content;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  animation: txTicker 34s linear infinite;
}

.tx-specialty-track span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.tx-clean-section {
  padding: 96px 0;
}

.tx-editorial-grid,
.tx-integration-clean-grid,
.tx-content-clean-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 72px;
  align-items: center;
}

.tx-clean-home h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.12;
}

.tx-clean-home p {
  color: var(--muted);
}

.tx-editorial-copy > p,
.tx-clean-head > p,
.tx-integrations-clean p {
  max-width: 620px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.tx-disconnect-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.tx-disconnect-list span,
.tx-disconnect-list strong,
.tx-integration-list span,
.tx-integration-list strong {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 800;
}

.tx-disconnect-list strong,
.tx-integration-list strong {
  color: #fff;
  background: var(--ink);
}

.tx-platform-clean {
  background:
    linear-gradient(90deg, rgba(244, 247, 250, 0.97), rgba(244, 247, 250, 0.92)),
    url("assets/bg-container-ship.jpg");
  background-size: cover;
  background-position: center;
}

.tx-clean-head {
  max-width: 760px;
}

.tx-clean-head p {
  margin-top: 18px;
}

.tx-process-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.tx-process-band div {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 220ms ease, background 220ms ease;
}

.tx-process-band div:hover {
  transform: translateY(-6px);
  background: #fff;
}

.tx-process-band span {
  color: var(--blue);
  font-weight: 900;
}

.tx-process-band strong {
  display: block;
  margin-top: 56px;
  color: var(--ink);
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
}

.tx-process-band p {
  margin: 12px 0 0;
}

.tx-audience-clean {
  background: #fff;
}

.tx-audience-row {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.tx-audience-row:last-child {
  border-bottom: 1px solid var(--line);
}

.tx-audience-row p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
}

.tx-audience-row a,
.tx-content-clean a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 800;
}

.tx-audience-row ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tx-audience-row li {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ice);
  color: var(--ink-soft);
  font-weight: 800;
}

.tx-connection-clean {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.tx-connection-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 32%, rgba(23, 105, 255, 0.22) 32.1% 32.45%, transparent 32.6%),
    linear-gradient(58deg, transparent 0 72%, rgba(0, 191, 216, 0.17) 72.1% 72.4%, transparent 72.55%);
  animation: txLineMove 8s ease-in-out infinite alternate;
}

.tx-connection-clean .tx-clean-container {
  position: relative;
  z-index: 1;
}

.tx-connection-clean h2 {
  color: #fff;
}

.tx-connection-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 48px;
}

.tx-connection-path::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--teal));
  animation: txPathPulse 2.8s ease-in-out infinite;
}

.tx-connection-path span {
  position: relative;
  z-index: 1;
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #fff;
  background: #0c264f;
  font-weight: 800;
}

.tx-connection-clean p:last-child {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 20px;
}

.tx-integrations-clean {
  background: #fff;
}

.tx-integration-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tx-integration-list strong {
  min-height: 120px;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.tx-content-clean {
  background: var(--paper);
}

.tx-content-clean-grid {
  grid-template-columns: 0.44fr 0.4fr auto;
  align-items: center;
}

.tx-final-clean {
  padding: 88px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.95), rgba(7, 27, 58, 0.82)),
    url("assets/bg-cargo-night.jpg");
  background-size: cover;
  background-position: center;
}

.tx-final-clean h2 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}

@keyframes txHeroDrift {
  from { background-position: center center; }
  to { background-position: 54% 48%; }
}

@keyframes txLineMove {
  from { transform: translateX(-18px) rotate(-34deg); opacity: 0.28; }
  to { transform: translateX(18px) rotate(-34deg); opacity: 0.62; }
}

@keyframes txTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-38%); }
}

@keyframes txPathPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (max-width: 820px) {
  .tx-clean-container {
    width: min(100% - 32px, var(--clean-max));
  }

  .tx-clean-hero {
    min-height: 560px;
    padding: 96px 0 48px;
    background-image:
      linear-gradient(180deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.78)),
      url("assets/bg-port-terminal.jpg");
  }

  .tx-clean-hero h1 {
    font-size: 38px;
  }

  .tx-clean-lead {
    font-size: 16px;
  }

  .tx-clean-section {
    padding: 68px 0;
  }

  .tx-editorial-grid,
  .tx-integration-clean-grid,
  .tx-content-clean-grid,
  .tx-process-band,
  .tx-audience-row,
  .tx-audience-row.is-reverse,
  .tx-connection-path {
    grid-template-columns: 1fr;
  }

  .tx-clean-home h2 {
    font-size: 30px;
  }

  .tx-disconnect-list,
  .tx-audience-row ul,
  .tx-integration-list {
    grid-template-columns: 1fr;
  }

  .tx-process-band strong {
    margin-top: 32px;
  }

  .tx-audience-row {
    gap: 28px;
    padding: 44px 0;
  }

  .tx-connection-path::before {
    display: none;
  }

  .tx-integration-list strong {
    grid-column: auto;
    grid-row: auto;
  }
}

.tx-market-strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(10, 33, 70, 0.12);
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.98), rgba(10, 43, 84, 0.96) 54%, rgba(5, 29, 58, 0.98));
  overflow: hidden;
}

.tx-market-strip::before,
.tx-market-strip::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 96px;
  height: 100%;
  pointer-events: none;
}

.tx-market-strip::before {
  left: 0;
  background: linear-gradient(90deg, #071b3a, rgba(7, 27, 58, 0));
}

.tx-market-strip::after {
  right: 0;
  background: linear-gradient(270deg, #071b3a, rgba(7, 27, 58, 0));
}

.tx-market-track {
  min-height: 64px;
  gap: 10px;
  padding: 10px 32px;
  animation: txTicker 48s linear infinite;
}

.tx-market-strip:hover .tx-market-track {
  animation-play-state: paused;
}

.tx-market-track .tx-market-pill {
  min-width: 250px;
  min-height: 42px;
  display: inline-grid;
  align-content: center;
  gap: 2px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tx-market-track .tx-market-pill:hover {
  color: #fff;
  border-color: rgba(25, 194, 178, 0.55);
  background: rgba(25, 194, 178, 0.16);
  transform: translateY(-1px);
}

.tx-market-track .tx-market-pill small {
  overflow: hidden;
  color: rgba(176, 209, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.tx-market-track .tx-market-pill strong {
  overflow: hidden;
  color: inherit;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tx-market-track .tx-market-pill b {
  color: var(--cyan);
  font-weight: 900;
}

.tx-market-track .tx-market-label {
  min-width: 180px;
  border-color: rgba(25, 112, 255, 0.48);
  background: linear-gradient(135deg, var(--blue), rgba(25, 194, 178, 0.82));
}

.tx-market-track .tx-market-label small,
.tx-market-track .tx-market-label strong {
  color: #fff;
}

.tx-market-track .tx-market-quote {
  min-width: 190px;
  border-color: rgba(25, 112, 255, 0.32);
  background: rgba(25, 112, 255, 0.12);
}

@media (max-width: 820px) {
  .tx-market-track {
    min-height: 58px;
    padding: 8px 18px;
    animation-duration: 42s;
  }

  .tx-market-strip::before,
  .tx-market-strip::after {
    width: 44px;
  }

  .tx-market-track .tx-market-pill {
    min-width: 220px;
    min-height: 38px;
    padding: 7px 12px;
  }

  .tx-market-track .tx-market-label,
  .tx-market-track .tx-market-quote {
    min-width: 160px;
  }
}
/* Radar Comex EOF layer */
.tradenix-news-hero,
.tradenix-news-single-hero {
  padding: 142px 0 72px !important;
  color: #fff !important;
  background:
    linear-gradient(110deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.78)),
    url("assets/bg-port-dusk.jpg") center / cover no-repeat !important;
}

.tradenix-news-hero h1,
.tradenix-news-single-hero h1 {
  max-width: 860px !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(2.6rem, 5vw, 4.4rem) !important;
  line-height: 1.02 !important;
}

.tradenix-news-hero p,
.tradenix-news-single-hero p {
  max-width: 680px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 1.08rem !important;
}

.tradenix-news-hero-grid,
.tradenix-news-single-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 48px !important;
  align-items: end !important;
}

.tradenix-news-search {
  padding: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
}

.tradenix-news-search label {
  display: grid !important;
  gap: 8px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
}

.tradenix-news-search input {
  width: 100% !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 8px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  font: inherit !important;
}

.tradenix-news-search button {
  width: 100% !important;
  min-height: 46px !important;
  margin-top: 12px !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #fff !important;
  background: var(--blue) !important;
  font-weight: 800 !important;
  cursor: pointer;
}

.tradenix-news-section {
  padding: 72px 0 96px !important;
  background: var(--paper) !important;
}

.tradenix-news-layout {
  display: grid !important;
  grid-template-columns: 280px minmax(0, 1fr) !important;
  gap: 32px !important;
  align-items: start !important;
}

.tradenix-news-sidebar {
  position: sticky !important;
  top: 96px !important;
  display: grid !important;
  gap: 18px !important;
}

.tradenix-news-sidebar > div {
  padding: 22px !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  background: #fff !important;
}

.tradenix-news-sidebar h2 {
  margin: 0 0 16px !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.tradenix-news-sidebar ul {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.tradenix-news-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.tradenix-news-card {
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 16px 44px rgba(7, 27, 58, 0.07) !important;
}

.tradenix-news-media {
  min-height: 236px !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.18), rgba(0, 191, 216, 0.12)), var(--ink) !important;
}

.tradenix-news-media img,
.tradenix-news-media iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 236px !important;
  display: block !important;
  border: 0 !important;
  object-fit: cover !important;
}

.tradenix-news-media.is-video,
.tradenix-news-media.is-video iframe {
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
}

.tradenix-news-media.is-fallback {
  min-height: 236px !important;
  display: grid !important;
  align-content: end !important;
  gap: 12px !important;
  padding: 24px !important;
  background:
    linear-gradient(120deg, rgba(7, 27, 58, 0.9), rgba(7, 27, 58, 0.62)),
    url("assets/bg-container-ship.jpg") center / cover no-repeat !important;
}

.tradenix-news-media.is-fallback span {
  color: var(--cyan) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.tradenix-news-media.is-fallback strong {
  color: #fff !important;
  font-size: 1.25rem !important;
  line-height: 1.15 !important;
}

.tradenix-news-card-body {
  padding: 24px !important;
}

.tradenix-news-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-bottom: 14px !important;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
}

.tradenix-news-card h2 {
  margin: 0 !important;
  font-size: 1.42rem !important;
  line-height: 1.15 !important;
}

.tradenix-news-card p {
  margin: 12px 0 0 !important;
  color: var(--muted) !important;
}

.tradenix-news-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 18px !important;
}

.tradenix-news-actions a,
.tradenix-news-meta a,
.tradenix-news-toolbar a,
.tradenix-source-link {
  color: var(--blue) !important;
  font-weight: 800 !important;
}

.tradenix-news-single-hero .tradenix-news-media {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 14px !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28) !important;
}

@media (max-width: 820px) {
  .tradenix-news-hero,
  .tradenix-news-single-hero {
    padding: 108px 0 56px !important;
  }

  .tradenix-news-hero-grid,
  .tradenix-news-single-grid,
  .tradenix-news-layout,
  .tradenix-news-grid {
    grid-template-columns: 1fr !important;
  }

  .tradenix-news-sidebar {
    position: static !important;
    order: 2 !important;
  }
}

/* Radar Comex enforced layer */
.tradenix-news-hero,
.tradenix-news-single-hero {
  padding: 142px 0 72px !important;
  color: #fff !important;
  background:
    linear-gradient(110deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.78)),
    url("assets/bg-port-dusk.jpg") center / cover no-repeat !important;
}

.tradenix-news-hero h1,
.tradenix-news-single-hero h1 {
  max-width: 860px !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(2.6rem, 5vw, 4.4rem) !important;
  line-height: 1.02 !important;
}

.tradenix-news-hero p,
.tradenix-news-single-hero p {
  max-width: 680px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 1.08rem !important;
}

.tradenix-news-hero-grid,
.tradenix-news-single-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 48px !important;
  align-items: end !important;
}

.tradenix-news-search {
  padding: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
}

.tradenix-news-search label {
  display: grid !important;
  gap: 8px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
}

.tradenix-news-search input {
  width: 100% !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 8px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  font: inherit !important;
}

.tradenix-news-search button {
  width: 100% !important;
  min-height: 46px !important;
  margin-top: 12px !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #fff !important;
  background: var(--blue) !important;
  font-weight: 800 !important;
  cursor: pointer;
}

.tradenix-news-section {
  padding: 72px 0 96px !important;
  background: var(--paper) !important;
}

.tradenix-news-layout {
  display: grid !important;
  grid-template-columns: 280px minmax(0, 1fr) !important;
  gap: 32px !important;
  align-items: start !important;
}

.tradenix-news-sidebar {
  position: sticky !important;
  top: 96px !important;
  display: grid !important;
  gap: 18px !important;
}

.tradenix-news-sidebar > div {
  padding: 22px !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  background: #fff !important;
}

.tradenix-news-sidebar h2 {
  margin: 0 0 16px !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.tradenix-news-sidebar ul {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.tradenix-news-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.tradenix-news-card {
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 16px 44px rgba(7, 27, 58, 0.07) !important;
}

.tradenix-news-media {
  min-height: 236px !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.18), rgba(0, 191, 216, 0.12)), var(--ink) !important;
}

.tradenix-news-media img,
.tradenix-news-media iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 236px !important;
  display: block !important;
  border: 0 !important;
  object-fit: cover !important;
}

.tradenix-news-media.is-video,
.tradenix-news-media.is-video iframe {
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
}

.tradenix-news-media.is-fallback {
  min-height: 236px !important;
  display: grid !important;
  align-content: end !important;
  gap: 12px !important;
  padding: 24px !important;
  background:
    linear-gradient(120deg, rgba(7, 27, 58, 0.9), rgba(7, 27, 58, 0.62)),
    url("assets/bg-container-ship.jpg") center / cover no-repeat !important;
}

.tradenix-news-media.is-fallback span {
  color: var(--cyan) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.tradenix-news-media.is-fallback strong {
  color: #fff !important;
  font-size: 1.25rem !important;
  line-height: 1.15 !important;
}

.tradenix-news-card-body {
  padding: 24px !important;
}

.tradenix-news-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-bottom: 14px !important;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
}

.tradenix-news-card h2 {
  margin: 0 !important;
  font-size: 1.42rem !important;
  line-height: 1.15 !important;
}

.tradenix-news-card p {
  margin: 12px 0 0 !important;
  color: var(--muted) !important;
}

.tradenix-news-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 18px !important;
}

.tradenix-news-actions a,
.tradenix-news-meta a,
.tradenix-news-toolbar a,
.tradenix-source-link {
  color: var(--blue) !important;
  font-weight: 800 !important;
}

.tradenix-news-single-hero .tradenix-news-media {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 14px !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28) !important;
}

@media (max-width: 820px) {
  .tradenix-news-hero,
  .tradenix-news-single-hero {
    padding: 108px 0 56px !important;
  }

  .tradenix-news-hero-grid,
  .tradenix-news-single-grid,
  .tradenix-news-layout,
  .tradenix-news-grid {
    grid-template-columns: 1fr !important;
  }

  .tradenix-news-sidebar {
    position: static !important;
    order: 2 !important;
  }
}

/* Radar Comex final layer. Kept at EOF to stay outside older responsive blocks. */
.tradenix-news-hero,
.tradenix-news-single-hero {
  padding: 142px 0 72px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.78)),
    url("assets/bg-port-dusk.jpg");
  background-size: cover;
  background-position: center;
}

.tradenix-news-hero h1,
.tradenix-news-single-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.tradenix-news-hero p,
.tradenix-news-single-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.tradenix-news-hero-grid,
.tradenix-news-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: end;
}

.tradenix-news-search {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.tradenix-news-search label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.tradenix-news-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.tradenix-news-search input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.tradenix-news-search button {
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.tradenix-news-section {
  padding: 72px 0 96px;
  background: var(--paper);
}

.tradenix-news-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.tradenix-news-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.tradenix-news-sidebar > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.tradenix-news-sidebar h2 {
  margin: 0 0 16px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tradenix-news-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tradenix-news-sidebar a {
  color: var(--ink-soft);
  font-weight: 700;
}

.tradenix-news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
}

.tradenix-news-toolbar a,
.tradenix-pagination a,
.tradenix-source-link {
  color: var(--blue);
  font-weight: 800;
}

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

.tradenix-news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 27, 58, 0.07);
}

.tradenix-news-media {
  min-height: 236px;
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.18), rgba(0, 191, 216, 0.12)),
    var(--ink);
}

.tradenix-news-media img,
.tradenix-news-media iframe {
  width: 100%;
  height: 100%;
  min-height: 236px;
  display: block;
  border: 0;
  object-fit: cover;
}

.tradenix-news-media.is-video {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.tradenix-news-media.is-video iframe {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.tradenix-news-media.is-fallback {
  min-height: 236px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(7, 27, 58, 0.9), rgba(7, 27, 58, 0.62)),
    url("assets/bg-container-ship.jpg");
  background-size: cover;
  background-position: center;
}

.tradenix-news-media.is-fallback span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tradenix-news-media.is-fallback strong {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.15;
}

.tradenix-news-card-body {
  padding: 24px;
}

.tradenix-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.tradenix-news-meta a {
  color: var(--blue);
}

.tradenix-news-card h2 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.15;
}

.tradenix-news-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.tradenix-news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.tradenix-news-actions a {
  color: var(--blue);
  font-weight: 800;
}

.tradenix-pagination {
  margin-top: 34px;
}

.tradenix-news-single-grid {
  align-items: center;
}

.tradenix-news-single-hero .tradenix-news-media {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.tradenix-source-note {
  padding: 12px 14px;
  border-left: 3px solid var(--blue);
  background: var(--ice);
}

.article-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

@media (max-width: 820px) {
  .tradenix-news-hero,
  .tradenix-news-single-hero {
    padding: 108px 0 56px;
  }

  .tradenix-news-hero-grid,
  .tradenix-news-single-grid,
  .tradenix-news-layout,
  .tradenix-news-grid {
    grid-template-columns: 1fr;
  }

  .tradenix-news-sidebar {
    position: static;
    order: 2;
  }
}

/* Radar Comex / News */
.tradenix-news-hero,
.tradenix-news-single-hero {
  padding: 142px 0 72px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.78)),
    url("assets/bg-port-dusk.jpg");
  background-size: cover;
  background-position: center;
}

.tradenix-news-hero h1,
.tradenix-news-single-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.tradenix-news-hero p,
.tradenix-news-single-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.tradenix-news-hero-grid,
.tradenix-news-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: end;
}

.tradenix-news-search {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.tradenix-news-search label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.tradenix-news-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.tradenix-news-search input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.tradenix-news-search button {
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.tradenix-news-section {
  padding: 72px 0 96px;
  background: var(--paper);
}

.tradenix-news-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.tradenix-news-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.tradenix-news-sidebar > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.tradenix-news-sidebar h2 {
  margin: 0 0 16px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tradenix-news-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tradenix-news-sidebar a {
  color: var(--ink-soft);
  font-weight: 700;
}

.tradenix-news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
}

.tradenix-news-toolbar a,
.tradenix-pagination a,
.tradenix-source-link {
  color: var(--blue);
  font-weight: 800;
}

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

.tradenix-news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 27, 58, 0.07);
}

.tradenix-news-media {
  min-height: 236px;
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.18), rgba(0, 191, 216, 0.12)),
    var(--ink);
}

.tradenix-news-media img,
.tradenix-news-media iframe {
  width: 100%;
  height: 100%;
  min-height: 236px;
  display: block;
  border: 0;
  object-fit: cover;
}

.tradenix-news-media.is-video {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.tradenix-news-media.is-video iframe {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.tradenix-news-media.is-fallback {
  min-height: 236px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(7, 27, 58, 0.9), rgba(7, 27, 58, 0.62)),
    url("assets/bg-container-ship.jpg");
  background-size: cover;
  background-position: center;
}

.tradenix-news-media.is-fallback span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tradenix-news-media.is-fallback strong {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.15;
}

.tradenix-news-card-body {
  padding: 24px;
}

.tradenix-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.tradenix-news-meta a {
  color: var(--blue);
}

.tradenix-news-card h2 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.15;
}

.tradenix-news-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.tradenix-news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.tradenix-news-actions a {
  color: var(--blue);
  font-weight: 800;
}

.tradenix-pagination {
  margin-top: 34px;
}

.tradenix-news-single-grid {
  align-items: center;
}

.tradenix-news-single-hero .tradenix-news-media {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.tradenix-source-note {
  padding: 12px 14px;
  border-left: 3px solid var(--blue);
  background: var(--ice);
}

.article-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

@media (max-width: 820px) {
  .tradenix-news-hero,
  .tradenix-news-single-hero {
    padding: 108px 0 56px;
  }

  .tradenix-news-hero-grid,
  .tradenix-news-single-grid,
  .tradenix-news-layout,
  .tradenix-news-grid {
    grid-template-columns: 1fr;
  }

  .tradenix-news-sidebar {
    position: static;
    order: 2;
  }
}

  .tx-hero {
    min-height: auto;
    padding: 104px 0 46px;
  }

  .tx-hero-visual {
    min-height: auto;
  }

  .tx-console {
    margin-top: 10px;
  }

  .tx-mark-fragment.one {
    width: 54px;
    height: 200px;
    right: 80px;
    top: -6px;
  }

  .tx-mark-fragment.two {
    width: 62px;
    height: 150px;
    right: 18px;
    bottom: -14px;
  }

  .tx-trust .tx-container {
    padding: 22px 0;
  }

  .tx-trust div div {
    justify-content: flex-start;
  }

  .tx-section {
    padding: 66px 0;
  }

  .tx-convergence {
    min-height: auto;
  }

  .tx-convergence::before,
  .tx-flow::before {
    display: none;
  }

  .tx-dashboard {
    min-height: auto;
  }

  .tx-dashboard aside {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .tx-table div {
    grid-template-columns: 1fr;
  }

  .tx-bento .large {
    min-height: 280px;
  }

  .tx-bento h3 {
    margin-top: 70px;
  }

  .tradenix-hero {
    min-height: 86svh;
    background-image:
      linear-gradient(180deg, rgba(7, 27, 58, 0.96) 0%, rgba(7, 27, 58, 0.82) 58%, rgba(7, 27, 58, 0.68) 100%),
      url("assets/bg-port-terminal.jpg");
    background-position: 63% center;
  }

  .tradenix-hero .tradenix-container {
    padding-top: 104px;
  }

  .tradenix-section {
    padding: 64px 0;
  }

  .tradenix-card {
    min-height: auto;
  }

  .tradenix-stat-grid > .wp-block-group__inner-container,
  .tradenix-card-grid > .wp-block-group__inner-container,
  .tradenix-card-grid.four > .wp-block-group__inner-container {
    grid-template-columns: 1fr !important;
  }

  .wp-block-group.tradenix-stat-grid,
  .wp-block-group.tradenix-card-grid,
  .wp-block-group.tradenix-card-grid.four {
    grid-template-columns: 1fr !important;
  }

  .feature-card {
    min-height: auto;
  }

  .module-item {
    min-height: auto;
  }

  .module-item h3 {
    margin-top: 28px;
  }

  .panel-chart {
    height: 160px;
  }

  .section {
    padding: 64px 0;
  }

  .cta-inner {
    align-items: start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-menu {
    flex-wrap: wrap;
  }
}

/* Clean home final layer. Kept at EOF to stay outside older media blocks. */
.tx-clean-home {
  --clean-max: 1240px;
  color: var(--ink);
  background: #fff;
  overflow: hidden;
}

.tx-clean-container {
  width: min(var(--clean-max), calc(100% - 64px));
  margin: 0 auto;
}

.tx-clean-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tx-clean-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.9) 46%, rgba(7, 27, 58, 0.58)),
    linear-gradient(180deg, rgba(7, 27, 58, 0.15), rgba(7, 27, 58, 0.82)),
    url("assets/bg-port-terminal.jpg");
  background-size: cover;
  background-position: center;
  animation: txHeroDrift 18s ease-in-out infinite alternate;
}

.tx-clean-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(23, 105, 255, 0.16) 42.1% 42.4%, transparent 42.5%),
    linear-gradient(58deg, transparent 0 68%, rgba(0, 191, 216, 0.14) 68.1% 68.35%, transparent 68.45%);
}

.tx-motion-line {
  position: absolute;
  height: 1px;
  width: 42vw;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 216, 0.8), transparent);
  transform: rotate(-34deg);
  opacity: 0.45;
  animation: txLineMove 7s ease-in-out infinite alternate;
}

.tx-motion-line.one {
  right: 8%;
  top: 22%;
}

.tx-motion-line.two {
  right: 22%;
  bottom: 18%;
  animation-delay: 1.4s;
}

.tx-clean-hero .tx-clean-container {
  position: relative;
  z-index: 1;
}

.tx-clean-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.tx-clean-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.62;
}

.tx-clean-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tx-specialty-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.tx-specialty-track {
  width: max-content;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  animation: txTicker 34s linear infinite;
}

.tx-specialty-track span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.tx-clean-section {
  padding: 96px 0;
}

.tx-editorial-grid,
.tx-integration-clean-grid,
.tx-content-clean-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 72px;
  align-items: center;
}

.tx-clean-home h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.12;
}

.tx-clean-home p {
  color: var(--muted);
}

.tx-editorial-copy > p,
.tx-clean-head > p,
.tx-integrations-clean p {
  max-width: 620px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.tx-disconnect-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.tx-disconnect-list span,
.tx-disconnect-list strong,
.tx-integration-list span,
.tx-integration-list strong {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 800;
}

.tx-disconnect-list strong,
.tx-integration-list strong {
  color: #fff;
  background: var(--ink);
}

.tx-platform-clean {
  background:
    linear-gradient(90deg, rgba(244, 247, 250, 0.97), rgba(244, 247, 250, 0.92)),
    url("assets/bg-container-ship.jpg");
  background-size: cover;
  background-position: center;
}

.tx-clean-head {
  max-width: 760px;
}

.tx-clean-head p {
  margin-top: 18px;
}

.tx-process-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.tx-process-band div {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 220ms ease, background 220ms ease;
}

.tx-process-band div:hover {
  transform: translateY(-6px);
  background: #fff;
}

.tx-process-band span {
  color: var(--blue);
  font-weight: 900;
}

.tx-process-band strong {
  display: block;
  margin-top: 56px;
  color: var(--ink);
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
}

.tx-process-band p {
  margin: 12px 0 0;
}

.tx-audience-clean {
  background: #fff;
}

.tx-audience-row {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.tx-audience-row:last-child {
  border-bottom: 1px solid var(--line);
}

.tx-audience-row p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
}

.tx-audience-row a,
.tx-content-clean a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 800;
}

.tx-audience-row ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tx-audience-row li {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ice);
  color: var(--ink-soft);
  font-weight: 800;
}

.tx-connection-clean {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.tx-connection-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 32%, rgba(23, 105, 255, 0.22) 32.1% 32.45%, transparent 32.6%),
    linear-gradient(58deg, transparent 0 72%, rgba(0, 191, 216, 0.17) 72.1% 72.4%, transparent 72.55%);
  animation: txLineMove 8s ease-in-out infinite alternate;
}

.tx-connection-clean .tx-clean-container {
  position: relative;
  z-index: 1;
}

.tx-connection-clean h2 {
  color: #fff;
}

.tx-connection-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 48px;
}

.tx-connection-path::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--teal));
  animation: txPathPulse 2.8s ease-in-out infinite;
}

.tx-connection-path span {
  position: relative;
  z-index: 1;
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #fff;
  background: #0c264f;
  font-weight: 800;
}

.tx-connection-clean p:last-child {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 20px;
}

.tx-integrations-clean,
.tx-audience-clean {
  background: #fff;
}

.tx-integration-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tx-integration-list strong {
  min-height: 120px;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.tx-content-clean {
  background: var(--paper);
}

.tx-content-clean-grid {
  grid-template-columns: 0.44fr 0.4fr auto;
  align-items: center;
}

.tx-final-clean {
  padding: 88px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 27, 58, 0.95), rgba(7, 27, 58, 0.82)),
    url("assets/bg-cargo-night.jpg");
  background-size: cover;
  background-position: center;
}

.tx-final-clean h2 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}

@keyframes txHeroDrift {
  from { background-position: center center; }
  to { background-position: 54% 48%; }
}

@keyframes txLineMove {
  from { transform: translateX(-18px) rotate(-34deg); opacity: 0.28; }
  to { transform: translateX(18px) rotate(-34deg); opacity: 0.62; }
}

@keyframes txTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-38%); }
}

@keyframes txPathPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (max-width: 820px) {
  .tx-clean-container {
    width: min(100% - 32px, var(--clean-max));
  }

  .tx-clean-hero {
    min-height: 560px;
    padding: 96px 0 48px;
    background-image:
      linear-gradient(180deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.78)),
      url("assets/bg-port-terminal.jpg");
  }

  .tx-clean-hero h1 {
    font-size: 38px;
  }

  .tx-clean-lead {
    font-size: 16px;
  }

  .tx-clean-section {
    padding: 68px 0;
  }

  .tx-editorial-grid,
  .tx-integration-clean-grid,
  .tx-content-clean-grid,
  .tx-process-band,
  .tx-audience-row,
  .tx-audience-row.is-reverse,
  .tx-connection-path {
    grid-template-columns: 1fr;
  }

  .tx-clean-home h2 {
    font-size: 30px;
  }

  .tx-disconnect-list,
  .tx-audience-row ul,
  .tx-integration-list {
    grid-template-columns: 1fr;
  }

  .tx-process-band strong {
    margin-top: 32px;
  }

  .tx-audience-row {
    gap: 28px;
    padding: 44px 0;
  }

  .tx-connection-path::before {
    display: none;
  }

  .tx-integration-list strong {
    grid-column: auto;
    grid-row: auto;
  }
}
