:root {
  color-scheme: light;
  --navy-950: #041c36;
  --navy-900: #062a57;
  --navy-800: #0a3b73;
  --blue-700: #0b5db3;
  --blue-600: #1671cc;
  --blue-100: #eaf4ff;
  --blue-50: #f4f9ff;
  --green-600: #4f9f2f;
  --green-100: #ecf8e8;
  --ink: #172033;
  --muted: #5f6b7c;
  --line: #dfe5ec;
  --line-strong: #cbd5df;
  --surface: #ffffff;
  --surface-muted: #f7f9fb;
  --surface-blue: #f3f8fd;
  --focus: #1c79d1;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-overlay: 0 18px 48px rgb(4 28 54 / 16%);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, "Noto Sans Bengali", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue-700);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--navy-900);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgb(28 121 209 / 42%);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.2;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: var(--radius-sm);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 0;
}

.brand-logo-icon,
.brand-logo-text {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-logo-header .brand-logo-icon {
  width: 33px;
  height: 33px;
}

.brand-logo-header .brand-logo-text {
  width: 98px;
  height: 22px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 13px;
  color: #344054;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--blue-700);
  background: var(--blue-50);
}

.status-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 11px;
  color: #285a18;
  background: var(--green-100);
  border: 1px solid #bfdfb2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.desktop-nav .status-badge {
  margin-left: 8px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--navy-900);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mobile-nav-shell[hidden] {
  display: none;
}

.mobile-nav-shell {
  position: fixed;
  z-index: 100;
  inset: 0;
}

.nav-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgb(4 28 54 / 48%);
  border: 0;
}

.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  min-height: 100dvh;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-overlay);
}

.mobile-nav-heading {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  color: var(--navy-950);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav-heading button {
  width: 44px;
  height: 44px;
  color: var(--navy-900);
  background: var(--surface-muted);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav > a {
  display: flex;
  min-height: 52px;
  align-items: center;
  margin-top: 4px;
  padding: 0 12px;
  color: #344054;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav > a:hover,
.mobile-nav > a[aria-current="page"] {
  color: var(--blue-700);
  background: var(--blue-50);
}

.mobile-nav > .status-badge {
  margin: 18px 12px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: var(--blue-700);
}

.button-primary:hover {
  color: white;
  background: var(--navy-800);
}

.button-secondary {
  color: var(--navy-900);
  background: white;
  border-color: var(--line-strong);
}

.button-secondary:hover {
  color: var(--blue-700);
  border-color: #9ebedb;
}

.button-light {
  color: var(--navy-900);
  background: white;
}

.button-light:hover {
  color: var(--blue-700);
  background: var(--blue-50);
}

.hero {
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 0 clamp(68px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgb(234 244 255 / 72%) 1px, transparent 1px),
    linear-gradient(rgb(234 244 255 / 72%) 1px, transparent 1px),
    var(--surface);
  background-size: 48px 48px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-status {
  margin-bottom: 22px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero-copy > p:not(.hero-note) {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 20px 0 0;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #f7fbff;
  border: 1px solid #cdddeb;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgb(6 42 87 / 10%);
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    linear-gradient(90deg, #dfebf5 1px, transparent 1px),
    linear-gradient(#dfebf5 1px, transparent 1px);
  background-size: 34px 34px;
}

.market-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--navy-950);
  background: white;
  border: 1px solid #cad9e6;
  border-radius: 15px;
}

.market-node strong {
  font-size: 14px;
}

.market-node span:not(.node-icon) {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.market-node-main {
  top: 50%;
  left: 50%;
  width: 206px;
  min-height: 138px;
  align-items: center;
  padding: 20px;
  text-align: center;
  transform: translate(-50%, -55%);
  border-color: #99bddc;
  box-shadow: 0 16px 32px rgb(6 42 87 / 12%);
}

.market-node-main .brand-logo {
  margin-bottom: 12px;
}

.brand-logo-hero .brand-logo-icon {
  width: 42px;
  height: 42px;
}

.brand-logo-hero .brand-logo-text {
  width: 124px;
  height: 28px;
}

.market-node-customer,
.market-node-seller {
  width: 164px;
  min-height: 100px;
  padding: 16px;
}

.market-node-customer {
  top: 46px;
  left: 28px;
}

.market-node-seller {
  right: 28px;
  bottom: 74px;
}

.node-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 9px;
}

.node-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.market-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: #8fb7d8;
  transform-origin: left center;
}

.line-left {
  top: 143px;
  left: 170px;
  width: 100px;
  transform: rotate(30deg);
}

.line-right {
  right: 135px;
  bottom: 151px;
  width: 102px;
  transform: rotate(28deg);
}

.visual-status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  z-index: 3;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 15px;
  padding: 11px;
  color: #42526a;
  background: rgb(255 255 255 / 92%);
  border: 1px solid #d6e2ed;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
}

.visual-status span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.visual-status i {
  width: 7px;
  height: 7px;
  background: var(--green-600);
  border-radius: 50%;
}

.section {
  padding: clamp(72px, 8vw, 108px) 0;
}

.split-layout {
  display: grid;
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.split-layout-reverse {
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.section-heading {
  max-width: 560px;
}

.section-index {
  display: block;
  margin-bottom: 17px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(29px, 3.5vw, 44px);
  letter-spacing: -0.035em;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-list,
.compact-list,
.policy-content ul {
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  min-height: 76px;
  align-items: center;
  gap: 16px;
  padding: 15px 5px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
  grid-template-columns: 42px 1fr;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid #d7e8f7;
  border-radius: 10px;
}

.feature-icon svg,
.console-row svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.seller-section {
  background: var(--surface-muted);
  border-block: 1px solid var(--line);
}

.seller-console {
  overflow: hidden;
  padding: 0 22px 24px;
  background: white;
  border: 1px solid #d8e0e8;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgb(4 28 54 / 8%);
}

.console-top {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 6px;
  margin: 0 -22px 18px;
  padding: 0 18px;
  background: #f4f6f8;
  border-bottom: 1px solid var(--line);
}

.console-top span {
  width: 8px;
  height: 8px;
  background: #b9c5d0;
  border-radius: 50%;
}

.console-brand {
  margin-bottom: 14px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.console-row {
  display: grid;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 36px 1fr auto;
}

.console-row i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 9px;
}

.console-row span {
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
}

.console-row b {
  padding: 3px 7px;
  color: #4d5d70;
  background: #eef2f5;
  border-radius: 5px;
  font-size: 10px;
}

.compact-list {
  display: grid;
  gap: 8px;
  margin: 26px 0 0;
}

.compact-list li {
  position: relative;
  padding-left: 22px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.compact-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green-600);
  border-radius: 2px;
}

.trust-section {
  background: white;
}

.section-heading-wide {
  max-width: 770px;
  margin-bottom: 42px;
}

.principle-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.principle-grid article {
  min-height: 174px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid span {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.principle-grid h3 {
  max-width: 250px;
  margin: 32px 0 0;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.4;
}

.status-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.status-panel {
  display: grid;
  align-items: center;
  gap: 28px;
  padding: 38px 42px;
  background: var(--surface-blue);
  border: 1px solid #cddfec;
  border-radius: 18px;
  grid-template-columns: 145px 1fr auto;
}

.status-panel > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-panel > div:first-child p {
  margin: 0;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--green-600);
  border: 3px solid #d7eccf;
  border-radius: 50%;
  box-sizing: content-box;
}

.status-panel h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.status-panel > div:nth-child(2) p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.contact-section {
  padding-bottom: clamp(76px, 8vw, 110px);
}

.contact-banner {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(34px, 5vw, 58px);
  color: white;
  background: var(--navy-900);
  border-radius: 20px;
}

.contact-banner .section-index {
  color: #a9cef1;
}

.contact-banner h2 {
  margin-bottom: 13px;
  color: white;
  font-size: clamp(28px, 3.5vw, 42px);
}

.contact-banner p {
  max-width: 690px;
  margin: 0;
  color: rgb(255 255 255 / 76%);
}

.contact-banner p a {
  color: white;
  font-weight: 700;
}

.page-hero {
  padding: clamp(52px, 7vw, 86px) 0;
  background: var(--surface-blue);
  border-bottom: 1px solid #d8e4ee;
}

.page-hero-inner {
  max-width: 900px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 650;
  text-decoration: none;
}

.page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5.5vw, 62px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.updated {
  color: #576579;
  font-size: 12px;
  font-weight: 700;
}

.content-layout {
  display: grid;
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(74px, 8vw, 110px);
  grid-template-columns: 240px minmax(0, 760px);
}

.content-aside {
  position: sticky;
  top: 112px;
  padding: 22px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.content-aside > span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-aside strong {
  display: block;
  color: var(--navy-950);
  font-size: 16px;
  line-height: 1.35;
}

.content-aside p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.content-aside a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 13px;
  font-weight: 750;
}

.policy-content {
  min-width: 0;
}

.policy-content > section {
  position: relative;
  padding: 0 0 42px 52px;
}

.policy-content > section + section {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.section-number {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.policy-content h2 {
  margin-bottom: 17px;
  font-size: clamp(23px, 3vw, 30px);
  letter-spacing: -0.025em;
}

.policy-content p {
  margin-bottom: 16px;
  color: #465266;
  font-size: 16px;
  line-height: 1.75;
}

.policy-content ul {
  display: grid;
  gap: 11px;
  margin: 20px 0;
}

.policy-content li {
  position: relative;
  padding-left: 25px;
  color: #465266;
}

.policy-content li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green-600);
  border-radius: 2px;
}

.policy-callout {
  margin: 23px 0 5px;
  padding: 23px 24px;
  background: var(--blue-50);
  border: 1px solid #cfe0ef;
  border-left: 4px solid var(--blue-700);
  border-radius: 11px;
}

.policy-callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 15px;
}

.policy-callout p {
  margin: 0;
}

.site-footer {
  color: rgb(255 255 255 / 75%);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 42px;
  padding-top: 62px;
  padding-bottom: 48px;
  grid-template-columns: 1.6fr repeat(3, 1fr);
}

.brand-footer {
  background: white;
  padding: 6px 11px;
}

.brand-logo-footer {
  gap: 10px;
}

.brand-logo-footer .brand-logo-icon {
  width: 44px;
  height: 44px;
}

.brand-logo-footer .brand-logo-text {
  width: 129px;
  height: 29px;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0;
  font-size: 14px;
}

.footer-badge {
  color: #d8f3ce;
  background: rgb(79 159 47 / 18%);
  border-color: rgb(143 198 122 / 36%);
}

.footer-grid h2 {
  margin-bottom: 17px;
  color: white;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: rgb(255 255 255 / 68%);
  font-size: 13px;
  text-decoration: none;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

.not-found {
  padding: 100px 0;
  text-align: center;
}

.not-found .container {
  max-width: 680px;
}

.not-found span {
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
}

.not-found h1 {
  margin: 16px 0;
  font-size: clamp(38px, 6vw, 58px);
}

.not-found p {
  color: var(--muted);
  font-size: 17px;
}

.not-found .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 420px;
    margin-inline: auto;
  }

  .split-layout,
  .split-layout-reverse {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .split-layout-reverse .section-heading {
    grid-row: 1;
  }

  .section-heading {
    max-width: 720px;
  }

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

  .status-panel {
    grid-template-columns: 130px 1fr;
  }

  .status-panel .text-link {
    grid-column: 2;
  }

  .content-layout {
    gap: 38px;
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .hero {
    padding: 50px 0 62px;
    background-size: 40px 40px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.5vw, 48px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 354px;
    border-radius: 18px;
  }

  .market-node-main {
    width: 176px;
    min-height: 122px;
    padding: 16px;
  }

  .brand-logo-hero .brand-logo-icon {
    width: 36px;
    height: 36px;
  }

  .brand-logo-hero .brand-logo-text {
    width: 106px;
    height: 24px;
  }

  .market-node-customer,
  .market-node-seller {
    width: 142px;
    min-height: 91px;
    padding: 12px;
  }

  .market-node-customer {
    top: 24px;
    left: 14px;
  }

  .market-node-seller {
    right: 14px;
    bottom: 67px;
  }

  .line-left {
    top: 110px;
    left: 126px;
    width: 86px;
  }

  .line-right {
    right: 108px;
    bottom: 130px;
    width: 80px;
  }

  .visual-status {
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 4px 10px;
    font-size: 9px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .section-heading p,
  .page-hero p {
    font-size: 16px;
  }

  .seller-console {
    padding-inline: 16px;
  }

  .console-top {
    margin-inline: -16px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    min-height: 130px;
    padding: 22px;
  }

  .principle-grid h3 {
    margin-top: 20px;
  }

  .status-panel {
    gap: 18px;
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  .status-panel .text-link {
    grid-column: auto;
  }

  .contact-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 25px;
  }

  .contact-banner .button {
    width: 100%;
  }

  .page-hero {
    padding: 40px 0 48px;
  }

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

  .content-layout {
    display: block;
    padding-top: 40px;
  }

  .content-aside {
    position: static;
    margin-bottom: 44px;
  }

  .policy-content > section,
  .policy-content > section + section {
    padding-left: 0;
  }

  .section-number {
    position: static;
    display: block;
    margin-bottom: 9px;
  }

  .policy-content h2 {
    font-size: 24px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-copy > p:not(.hero-note) {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 335px;
  }

  .market-node-customer,
  .market-node-seller {
    width: 132px;
  }

  .market-node strong {
    font-size: 12px;
  }

  .market-node span:not(.node-icon) {
    font-size: 9px;
  }

  .market-node-main {
    width: 160px;
  }

  .brand-logo-hero .brand-logo-icon {
    width: 32px;
    height: 32px;
  }

  .brand-logo-hero .brand-logo-text {
    width: 94px;
    height: 21px;
  }

  .visual-status {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .status-dot,
  .visual-status i,
  .compact-list li::before,
  .policy-content li::before {
    forced-color-adjust: none;
  }
}
