:root {
  color-scheme: light;
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-2: #ece8df;
  --ink: #18201d;
  --muted: #5d665f;
  --line: #d8d3c8;
  --green: #284f45;
  --green-2: #416b5d;
  --blue: #536d7a;
  --amber: #b9893f;
  --soft: rgba(24, 32, 29, 0.08);
  --shadow: 0 24px 70px rgba(30, 36, 33, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
a.button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(247, 245, 240, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 720;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--green);
  color: white;
  font-size: 12px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  padding: 8px 0;
}

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

.lang-switcher {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--surface);
}

.lang-button {
  min-width: 42px;
  min-height: 36px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.lang-button:last-child {
  border-right: 0;
}

.lang-button.is-active {
  background: var(--ink);
  color: white;
}

.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 245, 240, 0.98) 0%, rgba(247, 245, 240, 0.86) 38%, rgba(247, 245, 240, 0.25) 100%),
    linear-gradient(180deg, rgba(247, 245, 240, 0) 75%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 80px 0 110px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
}

.hero-lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: #33403a;
  font-size: clamp(18px, 2.1vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  font-weight: 700;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 40px 0 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.proof-strip dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 5px 0 0;
  font-weight: 760;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-tight {
  padding-top: 72px;
}

.section.muted {
  width: 100%;
  max-width: none;
  padding: 92px max(18px, calc((100vw - var(--max)) / 2));
  background: var(--surface-2);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.method-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  overflow-x: auto;
}

.method-step {
  min-height: 190px;
  padding: 18px;
  background: var(--surface);
}

.method-index {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.method-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-item span {
  color: var(--green);
  font-weight: 760;
}

.timeline-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.domain-grid,
.offer-grid,
.library-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

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

.card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 8px;
  background: #e7eee9;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
}

.map-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.zone-orbit {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 34% 30%, rgba(40, 79, 69, 0.16) 0 13%, transparent 14%),
    radial-gradient(ellipse at 57% 34%, rgba(40, 79, 69, 0.13) 0 15%, transparent 16%),
    radial-gradient(ellipse at 72% 58%, rgba(40, 79, 69, 0.14) 0 12%, transparent 13%),
    radial-gradient(ellipse at 36% 67%, rgba(40, 79, 69, 0.12) 0 10%, transparent 11%),
    radial-gradient(circle at 50% 50%, rgba(40, 79, 69, 0.18) 0 2px, transparent 3px),
    linear-gradient(135deg, #ffffff, #ece8df);
  box-shadow: var(--shadow);
}

.zone-dot {
  position: absolute;
  width: clamp(58px, 8vw, 88px);
  height: clamp(58px, 8vw, 88px);
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(24, 32, 29, 0.2);
  background: var(--surface);
  color: var(--ink);
  text-align: center;
  font-size: 12px;
  font-weight: 760;
  box-shadow: 0 10px 24px rgba(24, 32, 29, 0.1);
}

.zone-dot[data-maturity="2"] {
  background: var(--green);
  color: white;
}

.zone-dot[data-maturity="1"] {
  background: #e7eee9;
  color: var(--green);
}

.zone-list {
  display: grid;
  gap: 10px;
}

.zone-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.zone-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.status {
  white-space: nowrap;
  color: var(--green);
  font-size: 13px;
  font-weight: 780;
}

.guardrail {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
}

.closing {
  text-align: center;
}

.closing p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: 780px;
  margin: 34px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: left;
}

.contact-panel p {
  margin: 6px 0 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

[dir="rtl"] .topbar,
[dir="rtl"] .split,
[dir="rtl"] .map-board,
[dir="rtl"] .timeline-item,
[dir="rtl"] .zone-row,
[dir="rtl"] .contact-panel {
  direction: rtl;
}

[dir="rtl"] .section-heading.left,
[dir="rtl"] .contact-panel {
  text-align: right;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .split,
  .map-board {
    grid-template-columns: 1fr;
  }

  .section-heading.left {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .topbar {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 245, 240, 0.96) 0%, rgba(247, 245, 240, 0.9) 55%, var(--bg) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding: 78px 0 86px;
  }

  .proof-strip,
  .domain-grid,
  .offer-grid,
  .library-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section,
  .section.muted {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
