:root {
  --ground: #000000;
  --accent: #7c3aed;
  --accent-mid: #9061f9;
  --accent-light: #a78bfa;
  --ink: #ffffff;
  --copy: #c9c9d4;
  --muted: #adadb9;
  --quiet: #8e8e9a;
  --panel: #0a0a0e;
  --highlight: #100a1c;
  --hairline: #1d1d24;
  --border: #22222a;
  --heading-font: "Archivo", system-ui, -apple-system, sans-serif;
  --mono-font: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --arabic-font: "IBM Plex Sans Arabic", var(--heading-font);
}

html {
  scroll-behavior: smooth;
  background: var(--ground);
}

body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ground);
  font-family: var(--heading-font);
  font-size: 16px;
  line-height: 1.6;
}

body[dir="rtl"],
[dir="rtl"] body {
  font-family: var(--arabic-font);
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 4px;
}

.container-xl {
  max-width: 1180px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid var(--hairline);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 76px;
  padding: 17px 0;
}

.brand-lockup {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 30px;
  height: 27px;
}

.brand-mark path {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.brand-mark text {
  fill: var(--ink);
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 700;
}

.wordmark {
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.navbar-nav {
  font-size: 14px;
}

.nav-link {
  position: relative;
  padding: 7px 0 !important;
  color: var(--muted) !important;
  transition: color 200ms ease;
}

.nav-link::after {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.language-switch,
.footer-language {
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.language-switch {
  padding: 8px 13px;
  border-radius: 4px;
}

.language-switch:hover,
.footer-language:hover {
  border-color: var(--accent);
  color: var(--ink);
  background: rgba(124, 58, 237, 0.12);
}

.navbar-toggler {
  border-color: var(--border);
  padding: 9px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.45);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  border-color: var(--accent);
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 0 0 rgba(124, 58, 237, 0);
}

.button-primary:hover {
  color: var(--ink);
  background: #8b4df6;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.42);
}

.button-outline {
  border-color: var(--accent);
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  color: var(--ink);
  background: rgba(124, 58, 237, 0.15);
}

.button-large {
  padding: 15px 32px;
  font-size: 16px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent-light);
  font-family: var(--mono-font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

[dir="rtl"] .eyebrow {
  font-family: var(--arabic-font);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow-caret,
.typing-caret {
  display: inline-block;
  width: 8px;
  height: 13px;
  margin-inline-start: 8px;
  background: var(--accent-light);
  vertical-align: -1px;
  animation: blink-square 1.15s steps(1, end) infinite;
}

.typing-caret {
  width: 9px;
  height: 0.82em;
  margin-inline-start: 9px;
  background: var(--accent-mid);
  vertical-align: -0.08em;
}

.section-grid {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  background-image:
    linear-gradient(rgba(29, 29, 36, 0.52) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 36, 0.52) 1px, transparent 1px);
  background-size: 120px 120px;
}

.section-grid::before,
.glow-section::before,
.delivery-section::before {
  position: absolute;
  width: min(42vw, 620px);
  height: min(30vw, 390px);
  content: "";
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.19);
  filter: blur(120px);
  pointer-events: none;
}

.section-grid::before {
  top: -10%;
  inset-inline-start: -9%;
}

.hero {
  min-height: 650px;
}

.hero > .container-xl {
  padding-top: clamp(82px, 9vw, 126px);
  padding-bottom: clamp(82px, 9vw, 126px);
}

.display-heading,
.section-heading,
.content-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

[dir="rtl"] .display-heading,
[dir="rtl"] .section-heading,
[dir="rtl"] .content-section h2 {
  font-family: var(--arabic-font);
  letter-spacing: 0;
  line-height: 1.45;
}

.display-heading {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.2rem);
  line-height: 1.06;
}

.display-heading > span {
  display: block;
}

.accent-text {
  color: var(--accent-mid);
}

.display-heading .accent-text {
  position: relative;
  display: block;
}

.typing-sizer {
  visibility: hidden;
  display: block;
  pointer-events: none;
}

.typing-live {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
}

.lead-copy {
  max-width: 560px;
  margin-bottom: 31px;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.68;
  text-wrap: pretty;
}

.micro-copy {
  color: var(--quiet);
  font-family: var(--mono-font);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}

[dir="rtl"] .micro-copy {
  font-family: var(--arabic-font);
  font-size: 13px;
  letter-spacing: 0;
}

.corner {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
}

.corner-top-start {
  top: 26px;
  inset-inline-start: 26px;
  border-top-width: 2px;
  border-inline-start-width: 2px;
}

.corner-top-end {
  top: 26px;
  inset-inline-end: 26px;
  border-top-width: 2px;
  border-inline-end-width: 2px;
}

.corner-bottom-start {
  bottom: 26px;
  inset-inline-start: 26px;
  border-bottom-width: 2px;
  border-inline-start-width: 2px;
}

.corner-bottom-end {
  bottom: 26px;
  inset-inline-end: 26px;
  border-bottom-width: 2px;
  border-inline-end-width: 2px;
}

.mismatch-figure {
  max-width: 450px;
  margin: 0 auto;
}

.figure-label,
.capacity-labels,
.size-card-header > span,
.card-eyebrow {
  color: var(--muted);
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

[dir="rtl"] .figure-label,
[dir="rtl"] .capacity-labels,
[dir="rtl"] .size-card-header > span,
[dir="rtl"] .card-eyebrow {
  font-family: var(--arabic-font);
  font-size: 14px;
  letter-spacing: 0;
}

.system-fit-graphic {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(10, 10, 14, 0.65);
}

.system-fit-graphic rect,
.system-fit-graphic path,
.system-fit-graphic circle,
.system-fit-graphic text {
  vector-effect: non-scaling-stroke;
}

.system-fit-graphic text {
  font-family: var(--mono-font);
}

.system-fit-graphic .graphic-title {
  fill: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.system-fit-graphic .graphic-subtitle {
  fill: var(--muted);
  font-size: 10px;
}

.system-fit-graphic .module-label,
.system-fit-graphic .workflow-label {
  fill: var(--accent-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.system-fit-graphic .module-text {
  fill: var(--copy);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.system-fit-graphic .graphic-action {
  fill: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.system-fit-graphic .graphic-action-small {
  fill: var(--muted);
  font-size: 9px;
}

[dir="rtl"] .system-fit-graphic text {
  font-family: var(--arabic-font);
  letter-spacing: 0;
}

[dir="rtl"] .system-fit-graphic .module-label,
[dir="rtl"] .system-fit-graphic .workflow-label,
[dir="rtl"] .system-fit-graphic .module-text {
  font-size: 11px;
}

.graphic-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.graphic-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.graphic-legend i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 2px;
}

.legend-scope {
  border: 1px dashed #686875;
}

.legend-fit {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.55);
}

.figure-caption {
  margin: 13px 0 0;
  color: var(--quiet);
  font-family: var(--mono-font);
  font-size: 11.5px;
}

[dir="rtl"] .figure-caption {
  font-family: var(--arabic-font);
  font-size: 14px;
}

[dir="rtl"] .graphic-legend {
  font-family: var(--arabic-font);
  font-size: 14px;
  letter-spacing: 0;
}

.content-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  padding: clamp(74px, 8vw, 120px) 0;
}

.glow-section::before {
  top: -8%;
  inset-inline-end: -7%;
  width: min(35vw, 520px);
  height: min(28vw, 340px);
}

.glow-section::after,
.delivery-section::after {
  position: absolute;
  width: min(28vw, 360px);
  height: min(20vw, 240px);
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  filter: blur(110px);
  pointer-events: none;
}

.glow-section::after {
  bottom: -13%;
  inset-inline-start: 8%;
}

.divider-column {
  border-inline-end: 1px solid var(--hairline);
  padding-inline-end: clamp(28px, 5vw, 62px);
}

.divider-column h2 {
  max-width: 500px;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.1vw, 2.55rem);
  line-height: 1.2;
}

.body-copy,
.side-note {
  color: var(--copy);
  font-size: 15.5px;
  line-height: 1.72;
  text-wrap: pretty;
}

.body-copy {
  max-width: 490px;
  margin-bottom: 0;
}

.side-note {
  max-width: 330px;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.claims-list {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.claim {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  padding: 4px 0;
  transition: transform 220ms ease;
}

.claim:hover {
  transform: translateX(5px);
}

[dir="rtl"] .claim:hover {
  transform: translateX(-5px);
}

.claim-number {
  flex: 0 0 32px;
  color: var(--accent);
  font-family: var(--mono-font);
  font-size: 11px;
}

.claim h3 {
  margin: -2px 0 3px;
  color: var(--ink);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.35;
}

.claim p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.logic-section {
  background:
    radial-gradient(760px 420px at 24% 30%, rgba(124, 58, 237, 0.1), transparent 70%),
    radial-gradient(620px 380px at 88% 78%, rgba(255, 255, 255, 0.03), transparent 72%);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 25px;
  font-size: clamp(2rem, 3.9vw, 3.3rem);
  line-height: 1.14;
}

.logic-copy {
  max-width: 900px;
  margin: 0 0 15px;
  color: #e2e2e9;
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.logic-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.logic-copy .accent-text {
  color: var(--accent-light);
}

.muted-strike {
  color: var(--muted) !important;
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

.logic-kicker,
.delivery-tag {
  color: var(--accent-light);
  font-size: 18px;
  font-weight: 600;
}

.capacity-figure {
  max-width: 1000px;
  margin: 54px 0 50px;
}

.capacity-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
}

.capacity-labels span:last-child {
  color: var(--accent-light);
}

.capacity-track {
  display: flex;
  height: 88px;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-inline: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px 7px;
}

.capacity-used {
  flex: 0 0 10%;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.5);
}

.capacity-rest {
  flex: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.capacity-bracket {
  width: 10%;
  height: 11px;
  border-inline: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.stat-row {
  max-width: 1080px;
}

.logic-stat {
  min-height: 152px;
  border-top: 2px solid #3a3a44;
  padding-top: 18px;
}

.logic-stat.stat-accent {
  border-color: var(--accent);
}

.logic-stat.stat-muted {
  border-color: rgba(255, 255, 255, 0.15);
}

.logic-stat strong {
  display: block;
  margin-bottom: 11px;
  color: var(--ink);
  font-size: clamp(2.6rem, 4.6vw, 3.7rem);
  line-height: 1;
}

.stat-accent strong {
  color: var(--accent-light);
}

.stat-muted strong {
  color: var(--muted);
}

.logic-stat > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.logic-stat p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-intro {
  margin-bottom: 46px;
}

.size-card,
.portfolio-card {
  position: relative;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 27px 26px 22px;
  background: var(--panel);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.size-card:hover,
.portfolio-card:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 44px rgba(124, 58, 237, 0.17);
  transform: translateY(-6px);
}

.size-card-featured,
.portfolio-card-featured {
  border-color: #3d2a66;
  background:
    radial-gradient(circle at 50% 18%, rgba(124, 58, 237, 0.12), transparent 58%),
    var(--highlight);
}

.common-badge {
  position: absolute;
  top: -12px;
  inset-inline-end: 18px;
  border-radius: 3px;
  padding: 4px 10px;
  color: var(--ink);
  background: var(--accent);
  font-family: var(--mono-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

[dir="rtl"] .common-badge {
  font-family: var(--arabic-font);
  font-size: 13px;
  letter-spacing: 0;
}

.size-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.size-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.segment-bar {
  display: flex;
  gap: 5px;
  margin: 14px 0 19px;
}

.segment-bar i {
  display: block;
  width: 26px;
  height: 4px;
  background: #2a2a33;
}

.segment-bar i.filled {
  background: var(--accent);
  box-shadow: 0 0 11px rgba(124, 58, 237, 0.4);
}

.card-pain {
  min-height: 72px;
  margin: 0;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 16px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.5;
}

.card-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  border-bottom: 1px solid var(--hairline);
  padding: 12px 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.55;
}

.card-list li:last-child {
  border-bottom: 0;
}

.card-list li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-inline-end: 10px;
  border: 1px solid var(--accent);
  content: "";
  vertical-align: 1px;
}

.card-footer {
  margin: 13px 0 0;
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
  color: var(--accent-light);
  font-family: var(--mono-font);
  font-size: 11.5px;
  letter-spacing: 0.05em;
}

[dir="rtl"] .card-footer {
  font-family: var(--arabic-font);
  font-size: 14px;
  letter-spacing: 0;
}

.delivery-section {
  background: radial-gradient(640px 340px at 72% 40%, rgba(124, 58, 237, 0.08), transparent 70%);
}

.struck-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 39px !important;
  color: var(--ink) !important;
  font-size: clamp(2.25rem, 4.5vw, 3.8rem) !important;
}

.struck-heading i {
  position: absolute;
  top: 52%;
  inset-inline: 0;
  height: 3px;
  background: var(--accent);
}

.delivery-list {
  display: flex;
  flex-direction: column;
  gap: clamp(76px, 10vw, 140px);
  margin-bottom: 35px;
}

.delivery-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
}

.delivery-row:nth-child(even) .delivery-image {
  order: 2;
}

.delivery-row:nth-child(even) .delivery-copy {
  order: 1;
}

.delivery-image {
  position: relative;
  overflow: hidden;
  border: 1px solid #302640;
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(124, 58, 237, 0.12);
}

.delivery-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), transparent 60%, rgba(124, 58, 237, 0.1));
  pointer-events: none;
}

.delivery-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.88) contrast(1.08);
  transition: transform 500ms ease, filter 500ms ease;
}

.delivery-row:hover .delivery-image img {
  filter: brightness(0.88) saturate(0.96) contrast(1.08);
  transform: scale(1.025);
}

.delivery-copy {
  max-width: 390px;
}

.delivery-index {
  display: block;
  margin-bottom: 22px;
  color: var(--accent-light);
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.delivery-copy h3 {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.25;
}

.arrow {
  flex: none;
  color: var(--accent);
  font-family: var(--mono-font);
  transition: transform 200ms ease;
}

.delivery-row:hover .arrow {
  transform: translateX(5px);
}

.delivery-copy p {
  margin: 0;
  padding-inline-start: 31px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.delivery-tag {
  margin: 0;
  color: var(--copy);
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 0.2em;
}

[dir="rtl"] .delivery-tag {
  font-family: var(--arabic-font);
  font-size: 17px;
  letter-spacing: 0;
}

.card-eyebrow {
  margin-bottom: 17px;
  color: var(--accent-light);
  font-weight: 700;
}

.portfolio-visual-frame {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 180px;
  margin: -27px -26px 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.09), transparent 55%),
    #08080c;
}

.portfolio-visual-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.portfolio-visual {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.portfolio-card h3 {
  min-height: 82px;
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.card-stance {
  margin: 0;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 16px;
  color: var(--accent-light);
  font-size: 15px;
}

.portfolio-figure {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 20px;
}

.portfolio-figure strong {
  flex: none;
  color: var(--accent-mid);
  font-size: 30px;
  line-height: 1;
}

.portfolio-figure span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.stat-highlight {
  margin-top: clamp(70px, 9vw, 120px);
}

.stat-number {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
}

.stat-number strong {
  color: var(--accent-mid);
}

.dot-stat {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dot-grid {
  display: grid;
  flex: none;
  grid-template-columns: repeat(5, 15px);
  gap: 8px;
}

.dot-grid span {
  width: 15px;
  height: 15px;
  border: 1px solid #3a3a44;
}

.dot-grid span.active {
  border-color: var(--accent);
  background: var(--accent);
}

.number-list {
  border-top: 1px solid var(--hairline);
}

.number-list p {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 11px 0;
}

.number-list strong {
  flex: 0 0 57px;
  color: var(--accent-light);
  font-family: var(--mono-font);
  font-size: 14px;
}

.number-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.closing {
  background: radial-gradient(700px 380px at 50% 13%, rgba(124, 58, 237, 0.18), transparent 70%);
}

.closing .container-xl {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}

.closing h2 {
  max-width: 800px;
  margin: 0 auto 22px;
  font-size: clamp(2.55rem, 5vw, 4rem);
  line-height: 1.08;
}

.closing-copy {
  max-width: 650px;
  margin: 0 auto 33px;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  padding: 27px 0;
}

.footer-mark-text,
.footer-links {
  color: var(--quiet);
  font-family: var(--mono-font);
  font-size: 10.5px;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-language {
  border-width: 0 0 1px;
  border-radius: 0;
  border-color: var(--accent-light);
  padding: 0 0 1px;
  color: var(--accent-light);
  font-family: inherit;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  inset-block-end: max(20px, env(safe-area-inset-bottom, 0px));
  inset-inline-end: max(20px, env(safe-area-inset-right, 0px));
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #ffffff;
  filter: brightness(1.06);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float svg {
  display: block;
  width: 28px;
  height: 28px;
}

.form-message {
  min-height: 24px;
  margin: 15px 0 0;
  color: var(--accent-light);
  font-size: 14px;
}

.fade-up {
  animation: fade-up 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.delay-1 { animation-delay: 80ms; }
.delay-2 { animation-delay: 160ms; }
.delay-3 { animation-delay: 240ms; }
.delay-4 { animation-delay: 340ms; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink-square {
  0%,
  42% {
    opacity: 1;
  }
  52%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid var(--hairline);
    margin-top: 16px;
    padding-top: 12px;
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 5px !important;
    padding-bottom: 3px;
  }

  .nav-link {
    padding: 8px 0 !important;
  }

  .divider-column {
    border-inline-end: 0;
    border-bottom: 1px solid var(--hairline);
    padding-inline-end: 12px;
    padding-bottom: 42px;
  }

  .side-note {
    margin-inline-start: 0;
  }

  .portfolio-card h3 {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .delivery-row,
  .delivery-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .delivery-row:nth-child(even) .delivery-image,
  .delivery-row:nth-child(even) .delivery-copy {
    order: initial;
  }

  .delivery-copy {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    min-height: 68px;
  }

  .hero {
    min-height: 0;
  }

  .hero > .container-xl {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .corner {
    display: none;
  }

  .display-heading {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
  }

  .lead-copy {
    font-size: 16px;
  }

  .graphic-legend {
    gap: 12px;
    font-size: 9px;
  }

  .capacity-track {
    height: 58px;
  }

  .logic-copy {
    font-size: 16px;
  }

  .capacity-labels {
    font-size: 10px;
  }

  .stat-highlight {
    margin-top: 65px;
  }

  .dot-stat {
    margin-bottom: 15px;
  }

  .footer-mark-text {
    font-size: 9px;
  }

  .footer-links {
    gap: 13px;
    font-size: 9px;
  }
}

[dir="rtl"] .navbar-nav,
[dir="rtl"] .footer-links,
[dir="rtl"] .size-card-header,
[dir="rtl"] .capacity-labels {
  direction: rtl;
}

[dir="rtl"] .delivery-copy h3,
[dir="rtl"] .number-list p {
  text-align: right;
}

[dir="rtl"] .delivery-row:hover .arrow {
  transform: translateX(-5px);
}

[dir="rtl"] .nav-link::after {
  transform-origin: right center;
}

[dir="rtl"] .portfolio-figure,
[dir="rtl"] .dot-stat {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

[dir="rtl"] .number-list strong {
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
