/* ===== Tokens ===== */
:root {
  --ink: #0A0A0C;
  --blue: #0050E7;
  --blue-deep: #001B57;
  --paper: #F4F5F7;
  --white: #FFFFFF;
  --mist: #E4E7ED;
  --steel: #6B7280;
  --signal: #7FB2FF;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle film-grain texture over the whole page — reinforces the
   "capture" theme without being a gimmick */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

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

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ===== Scroll reveals =====
   .reveal / .reveal-item start hidden+offset, JS adds .is-visible via
   IntersectionObserver. .reveal-stagger children get incremental delay
   through the --stagger custom property set by JS on each .reveal-item. */
.reveal, .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-delay: var(--stagger, 0s);
}
.reveal.is-visible, .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-item { opacity: 1; transform: none; transition: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 rgba(0, 80, 231, 0);
}
.btn-primary:hover {
  background: #0043C4;
  box-shadow: 0 8px 22px -6px rgba(0, 80, 231, 0.6);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 8px 20px -8px rgba(0, 80, 231, 0.35);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 245, 247, 0.78);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(10, 10, 12, 0.06);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue) 20%, var(--signal) 50%, var(--blue) 80%, transparent);
  opacity: 0.5;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-logo { height: 26px; width: auto; }

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--steel);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  background: none;
  border: 1.5px solid var(--mist);
  border-radius: 4px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  color: var(--steel);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lang-toggle:hover { border-color: var(--blue); color: var(--blue); }

/* ===== Scan sweep (page-load signature moment) ===== */
.scan-sweep {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: var(--ink);
}
.scan-sweep::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--signal), var(--blue), var(--signal), transparent);
  box-shadow: 0 0 24px 4px rgba(0, 80, 231, 0.8);
  top: 0;
}
.scan-sweep.run {
  animation: sweepDown 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.scan-sweep.run::after {
  animation: sweepLine 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes sweepDown {
  0% { clip-path: inset(0 0 0 0); opacity: 1; }
  85% { clip-path: inset(100% 0 0 0); opacity: 1; }
  100% { clip-path: inset(100% 0 0 0); opacity: 0; }
}
@keyframes sweepLine {
  0% { top: 0; }
  100% { top: 100%; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: var(--paper);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--mist) 1px, transparent 1px),
    linear-gradient(90deg, var(--mist) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, black, transparent);
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.eyebrow.light { color: var(--signal); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  overflow: hidden;
}
.hero-title .reveal-line { display: block; }
.hero-title .accent { color: var(--blue); }

.hero-sub {
  font-size: 17px;
  color: var(--steel);
  max-width: 46ch;
  margin: 0 0 32px;
}

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

.hero-panel {
  position: relative;
  background: var(--ink);
  border-radius: 4px;
  padding: 32px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 30px 70px -24px rgba(0, 27, 87, 0.5);
  will-change: transform;
}
/* Viewfinder corner brackets — reinforces the "capture" motif */
.hero-panel::before,
.hero-panel::after,
.hero-panel .corner-tr,
.hero-panel .corner-bl {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--signal);
  opacity: 0.8;
}
.hero-panel::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.hero-panel::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.hero-panel .corner-tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.hero-panel .corner-bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }

.telemetry {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--signal);
}
.telemetry-row { display: flex; justify-content: space-between; gap: 12px; opacity: 0.85; }
.status-live { color: #4ADE80; }
.status-live::before {
  content: "● ";
}

.scan-visual {
  position: relative;
  flex: 1;
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,80,231,0.35), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(127,178,255,0.25), transparent 55%),
    #050510;
  min-height: 220px;
}
.scan-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(127,178,255,0.5) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.5;
}
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  top: 0;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  box-shadow: 0 0 16px 2px rgba(127,178,255,0.7);
  animation: loopScan 3.2s ease-in-out infinite;
}
@keyframes loopScan {
  0% { top: 4%; }
  50% { top: 92%; }
  100% { top: 4%; }
}

/* ===== Partner strip ===== */
.partner-strip {
  background: var(--ink);
  padding: 40px 0;
}
.partner-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.partner-label {
  font-size: 11px;
  color: var(--signal);
  letter-spacing: 0.08em;
}
.partner-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.partner-mark-divider { color: var(--blue); font-weight: 400; }
.partner-sub {
  font-size: 13px;
  color: #9AA5C0;
  margin: 0;
}
@media (min-width: 640px) {
  .partner-strip-inner { justify-content: space-between; text-align: left; }
}

/* ===== Hero (cinematic full-bleed) ===== */
.hero-cinematic {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: -4% -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  animation: heroDolly 30s ease-in-out infinite alternate;
  filter: saturate(0.9) brightness(0.85);
}
@keyframes heroDolly {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -1%); }
}
.hero-pointcloud {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(127,178,255,0.55) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.1;
  mix-blend-mode: screen;
  animation: pointPulse 5s ease-in-out infinite;
}
@keyframes pointPulse {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.14; }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3,7,20,0.95) 0%, rgba(3,7,20,0.45) 40%, rgba(3,7,20,0.35) 65%, rgba(3,7,20,0.6) 100%),
    linear-gradient(180deg, rgba(0,27,87,0.55) 0%, transparent 30%),
    radial-gradient(ellipse 90% 70% at 50% 40%, transparent 30%, rgba(3,7,20,0.5) 100%);
}
.hero-scanbeam {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  box-shadow: 0 0 30px 4px rgba(127,178,255,0.6);
  animation: beamSweep 7s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes beamSweep {
  0% { top: 8%; }
  50% { top: 88%; }
  100% { top: 8%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video, .hero-pointcloud, .hero-scanbeam { animation: none; }
}

.hero-cinematic-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-cinematic .eyebrow.light { color: var(--signal); margin-bottom: 22px; }
.hero-tease {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 20px;
}
.hero-signature {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--signal);
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}
.hero-sub.light {
  font-size: 17px;
  color: #B9C6E8;
  max-width: 50ch;
  margin: 0 0 34px;
}
.btn-ghost-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost-light:hover {
  border-color: var(--signal);
  color: var(--signal);
  box-shadow: 0 8px 20px -8px rgba(127,178,255,0.4);
}
@media (max-width: 700px) {
  .hero-cinematic { min-height: 80vh; padding-bottom: 64px; }
}

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 18ch;
}
.section-title.light { color: var(--white); }
.section-lead {
  font-size: 16px;
  color: var(--steel);
  max-width: 60ch;
  margin: 0 0 48px;
}
.section-lead.light { color: #B9C6E8; }

/* ===== Capabilities ===== */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
  border-radius: 10px;
  overflow: hidden;
}
.spec-card {
  background: var(--white);
  padding: 32px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -18px rgba(0, 80, 231, 0.35);
  z-index: 1;
}
.spec-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid transparent;
  transition: border-color 0.2s ease;
  pointer-events: none;
}
.spec-card:hover::after { border-color: rgba(0, 80, 231, 0.4); }
.spec-icon {
  width: 26px;
  height: 26px;
  color: var(--blue);
  margin-bottom: 18px;
}
.spec-label {
  font-size: 12px;
  color: var(--blue);
  margin: 0 0 16px;
}
.spec-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}
.spec-desc {
  font-size: 14px;
  color: var(--steel);
  margin: 0;
  line-height: 1.55;
}

/* ===== Technology / Showcase ===== */
/* ===== Technology / Showcase ===== */
.technology {
  position: relative;
  padding-top: 140px;
  padding-bottom: 140px;
  color: var(--white);
  z-index: 1;
}
.technology::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--blue-deep);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0,80,231,0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(127,178,255,0.15), transparent 45%);
  clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%);
}
.splat-featured {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: #050B1E;
  margin-bottom: 12px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6);
  position: relative;
}
.splat-featured::before,
.splat-featured::after,
.splat-featured .corner-tr,
.splat-featured .corner-bl {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--signal);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}
.splat-featured::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.splat-featured::after { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.splat-featured .corner-tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.splat-featured .corner-bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.splat-launch {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10,10,12,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.splat-launch:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.splat-launch-icon { font-size: 15px; }
[dir="rtl"] .splat-launch { right: auto; left: 16px; }
.splat-featured iframe {
  width: 100%;
  height: 640px;
  border: none;
  display: block;
}
@media (max-width: 700px) {
  .splat-featured iframe { height: 400px; }
}
.splat-credit {
  font-size: 12px;
  color: #7C8BB5;
  margin: 0 0 48px;
}
.splat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.splat-grid:empty { display: none; }

/* ===== Gallery CTA (featured link to the full collection) ===== */
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(0,80,231,0.18), rgba(127,178,255,0.08));
  border: 1.5px solid rgba(127,178,255,0.35);
  border-radius: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.gallery-cta:hover {
  border-color: var(--signal);
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(0,80,231,0.28), rgba(127,178,255,0.14));
}
.gallery-cta-eyebrow {
  font-size: 11px;
  color: var(--signal);
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}
.gallery-cta-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.gallery-cta-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.25s ease, transform 0.25s ease;
}
.gallery-cta:hover .gallery-cta-arrow {
  background: var(--blue);
  transform: translate(3px, -3px);
}
[dir="rtl"] .gallery-cta:hover .gallery-cta-arrow { transform: translate(-3px, -3px); }
@media (max-width: 640px) {
  .gallery-cta { flex-direction: column; align-items: flex-start; text-align: start; }
}

/* ===== Stats band ===== */
.stats-band {
  background: var(--ink);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--signal);
  margin: 0 0 8px;
}
.stat-label {
  font-size: 13px;
  color: #9AA5C0;
  margin: 0;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}

/* ===== PortalCam hardware spec chips ===== */
.hw-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 40px 0 8px;
}
.hw-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.hw-spec:hover {
  border-color: var(--signal);
  background: rgba(127,178,255,0.08);
  transform: translateY(-2px);
}
.hw-spec-icon {
  width: 18px;
  height: 18px;
  color: var(--signal);
  flex-shrink: 0;
}
.hw-spec-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  white-space: nowrap;
}
.splat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
}
.splat-frame {
  aspect-ratio: 16 / 10;
  width: 100%;
  border: none;
  display: block;
  background: #050B1E;
}
.splat-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7C8BB5;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px);
}
.splat-placeholder .mono { font-size: 12px; color: var(--signal); }
.splat-meta { padding: 16px 18px; }
.splat-meta-title { color: var(--white); font-weight: 600; font-size: 15px; margin: 0 0 4px; }
.splat-meta-credit { color: #8CA0D6; font-size: 13px; margin: 0; }

/* ===== Offers ===== */
.offers { background: var(--white); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  border: 1.5px solid var(--mist);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.2,0.7,0.3,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.offer-card::before {
  content: attr(data-index);
  position: absolute;
  top: -6px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.045;
  line-height: 1;
  pointer-events: none;
}
[dir="rtl"] .offer-card::before { right: auto; left: 12px; }
.offer-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 22px 44px -20px rgba(0, 80, 231, 0.4);
  background: var(--white);
}
.offer-tag {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.offer-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}
.offer-desc {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.offer-fit {
  font-size: 11px;
  color: var(--ink);
  opacity: 0.55;
  margin: 0 0 20px;
}
.offer-cta {
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 14px;
}

/* ===== About ===== */
.about-inner-single {
  max-width: 720px;
}

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-direct { margin-top: 8px; }
.contact-direct a { color: var(--blue); font-size: 15px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 10px;
  padding: 28px;
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; color: var(--steel); }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 12px;
  border: 1.5px solid var(--mist);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-note { font-size: 12px; color: var(--steel); margin: 0; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--mist); padding: 32px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 18px; opacity: 0.6; }
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 13px;
  color: var(--steel);
  transition: color 0.15s ease;
}
.footer-nav a:hover { color: var(--blue); }
.footer-note { font-size: 12px; color: var(--steel); }
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ===== RTL ===== */
[dir="rtl"] .main-nav { direction: rtl; }
[dir="rtl"] .eyebrow, [dir="rtl"] .section-title, [dir="rtl"] .section-lead { text-align: right; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 560px) {
  .spec-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
  .header-actions .btn { display: none; }
}
