@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..800,50..100,0..1&family=Inter:wght@300;400;500;600;700;800;900&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --green: #008f5a;
  --green-deep: #006840;
  --green-soft: #d7f0e5;
  --berry: #a22b68;
  --berry-soft: #f5d8e7;
  --ink: #18352a;
  --ink-soft: #617066;
  --cream: #fbf8ee;
  --ivory: #fffdf9;
  --white: #ffffff;
  --line: rgba(24, 53, 42, .10);
  --line-soft: rgba(24, 53, 42, .06);
  --shadow-soft: 0 28px 74px -42px rgba(0,0,0,.18), 0 10px 22px -16px rgba(0,104,64,.12);
  --shadow-card: 0 20px 46px -32px rgba(0,0,0,.18), 0 3px 0 rgba(255,255,255,.4) inset;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-ar: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --frame: min(1240px, calc(100% - 48px));
  --narrow: min(1100px, calc(100% - 48px));
  --pointer-x: 50vw;
  --pointer-y: 28vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(0,143,90,.08), transparent 320px),
    radial-gradient(circle at 88% 10%, rgba(162,43,104,.08), transparent 360px),
    linear-gradient(180deg, #fffefb 0%, var(--cream) 58%, #f6efe2 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.rtl-page { font-family: var(--font-ar); }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .16;
  background:
    radial-gradient(18px 12px at 20px 20px, rgba(162,43,104,.18) 0 45%, transparent 49%),
    radial-gradient(22px 14px at 90px 40px, rgba(0,143,90,.14) 0 45%, transparent 49%),
    linear-gradient(130deg, transparent 0 49%, rgba(0,143,90,.04) 50%, transparent 51%);
  background-size: 120px 120px, 160px 160px, 180px 180px;
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

.page { position: relative; z-index: 1; }
.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  z-index: 80;
  background: linear-gradient(90deg, var(--green), var(--berry));
  box-shadow: 0 0 18px rgba(0,143,90,.26);
}
.frame { width: var(--frame); margin: 0 auto; }
.narrow { width: var(--narrow); margin: 0 auto; }
.breakout {
  width: min(1400px, calc(100% - 24px));
  margin: 0 auto;
}

.brand-header {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-header img.logo-full {
  width: min(360px, 54vw);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}
.context-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink-soft);
}
.context-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(0,143,90,.12);
}

section { position: relative; }
.section-space { padding: clamp(84px, 9vw, 146px) 0; }
.section-space-tight { padding: clamp(68px, 8vw, 114px) 0; }
.eyebrow, .section-index, .mini-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--green);
}
.eyebrow::before, .section-index::before, .mini-label::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.display, .title, .closing-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -.06em;
  line-height: .92;
}
.rtl-page .display,
.rtl-page .title,
.rtl-page .closing-title {
  font-family: var(--font-ar);
  letter-spacing: -.03em;
  line-height: 1.04;
  font-weight: 700;
}
.display {
  margin-top: 18px;
  font-size: clamp(56px, 8vw, 118px);
}
.rtl-page .display { font-size: clamp(40px, 6.2vw, 90px); }
.display .accent,
.title em,
.closing-title em {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}
.rtl-page .display .accent,
.rtl-page .title em,
.rtl-page .closing-title em { font-style: normal; }
.title {
  margin-top: 18px;
  font-size: clamp(34px, 4.1vw, 70px);
}
.rtl-page .title { font-size: clamp(30px, 4.6vw, 58px); }
.lead, .section-copy, .story-copy, .roadmap-copy, .micro-copy, .closing-copy {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.85;
}
.rtl-page .lead, .rtl-page .section-copy, .rtl-page .story-copy, .rtl-page .roadmap-copy, .rtl-page .micro-copy, .rtl-page .closing-copy { line-height: 2; }

.hero-wrap {
  padding: 34px 0 90px;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
}
.hero-grid {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  gap: clamp(26px, 5vw, 84px);
  align-items: center;
}
.hero-copy { padding-inline: clamp(8px, 2vw, 28px); }
.hero-copy .lead { max-width: 640px; margin-top: 24px; }
.trust-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 700px;
}
.trust-pill {
  min-height: 78px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}
.trust-pill span {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  flex: 0 0 auto; font-size: 11px; font-weight: 700; color: var(--green-deep);
  background: linear-gradient(145deg, var(--green-soft), var(--berry-soft));
}
.trust-pill strong { font-size: 14px; line-height: 1.35; }

.hero-visual {
  position: relative;
  padding: 24px;
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-visual::before,
.story-stage::before,
.roadmap-stage::before,
.values-band::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-visual::before {
  width: 280px; height: 280px; inset: -12% auto auto -8%;
  background: radial-gradient(circle, rgba(162,43,104,.22), transparent 65%);
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px; inset: auto -10% -20% auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,143,90,.18), transparent 68%);
  pointer-events: none;
}
.hero-stack {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
}
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.photo-card:hover img { transform: scale(1.05); }
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.52) 100%);
}
.photo-main { min-height: 560px; }
.photo-column { display: grid; gap: 16px; }
.photo-small { min-height: 272px; }
.card-caption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  color: #fff;
}
.card-caption span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .88;
  margin-bottom: 6px;
}
.card-caption b { display: block; font-size: 22px; line-height: 1.05; }
.float-badge {
  position: absolute;
  z-index: 4;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 30px -24px rgba(0,0,0,.26);
}
.badge-top { top: 20px; right: 20px; }
.badge-bottom { bottom: 20px; left: 20px; }

.connector-stream {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
  pointer-events: none;
  opacity: .94;
}
.connector-stream::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24,53,42,.14) 18%, rgba(24,53,42,.14) 82%, transparent);
}
.stream-item {
  position: absolute;
  border-radius: 999px;
  display: grid;
  place-items: center;
  animation: drift 12s linear infinite;
  opacity: .82;
}
.stream-bean {
  width: 24px; height: 16px; background: linear-gradient(145deg, var(--berry), #b7497f);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.stream-bean::after {
  content: "";
  width: 2px; height: 12px; border-radius: 999px; background: rgba(255,255,255,.5);
}
.stream-drop {
  width: 18px; height: 24px; background: linear-gradient(180deg, #f0b23c, #d58d18);
  clip-path: path('M9 0 C14 7 18 12 18 16 C18 21 13.97 24 9 24 C4.03 24 0 21 0 16 C0 12 4 7 9 0 Z');
}
.stream-leaf {
  width: 34px; height: 18px; background: linear-gradient(145deg, var(--green), #35aa78);
  border-radius: 100% 0 100% 0 / 100% 0 100% 0;
  transform: rotate(-18deg);
}
.stream-leaf::after {
  content: "";
  width: 18px; height: 1px; background: rgba(255,255,255,.55); position: absolute; transform: rotate(25deg);
}
.stream-1 { left: 8%; top: 26px; animation-duration: 11s; }
.stream-2 { left: 18%; top: 72px; animation-duration: 13s; animation-delay: -3s; }
.stream-3 { left: 34%; top: 20px; animation-duration: 12s; animation-delay: -4s; }
.stream-4 { left: 48%; top: 76px; animation-duration: 14s; animation-delay: -1s; }
.stream-5 { left: 62%; top: 26px; animation-duration: 10s; animation-delay: -5s; }
.stream-6 { left: 78%; top: 68px; animation-duration: 15s; animation-delay: -2s; }
.stream-7 { left: 90%; top: 18px; animation-duration: 12s; animation-delay: -7s; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}
.story-stage {
  position: relative;
  width: min(1400px, calc(100% - 24px));
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.68));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}
.story-stage::before {
  width: 320px; height: 320px; inset: auto auto -24% -10%;
  background: radial-gradient(circle, rgba(0,143,90,.16), transparent 70%);
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}
.story-image {
  min-height: 560px;
  position: relative;
}
.story-image .photo-card, .trust-photo .photo-card { height: 100%; }
.story-panels {
  display: grid;
  gap: 18px;
}
.story-box,
.roadmap-panel,
.buy-panel,
.trust-panel,
.values-panel,
.closing-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}
.story-box h3, .roadmap-panel h3, .buy-panel h3, .trust-panel h3, .values-panel h3 {
  margin: 16px 0 10px;
  font-size: clamp(24px, 2.1vw, 40px);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.story-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(0,143,90,.08), rgba(162,43,104,.06));
}
.mini-icon,
.feature-icon,
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--green-soft), var(--berry-soft));
  color: var(--green-deep);
  margin-bottom: 14px;
}
.mini-card b, .feature-card b, .trust-micro b { display: block; margin-bottom: 8px; font-size: 16px; }
.mini-card span, .feature-card span, .trust-micro span { color: var(--ink-soft); font-size: 14px; line-height: 1.65; }

.roadmap-stage {
  position: relative;
  width: min(1450px, calc(100% - 20px));
  margin: 0 auto;
  padding: clamp(20px, 2.8vw, 34px);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,255,255,.66));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}
.roadmap-stage::before {
  width: 320px; height: 320px; inset: -16% -10% auto auto;
  background: radial-gradient(circle, rgba(162,43,104,.16), transparent 70%);
}
.roadmap-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, .94fr);
  gap: 18px;
}
.roadmap-panel { background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(248,255,251,.76)); }
.roadmap-track {
  position: relative;
  margin-top: 24px;
  padding-left: 28px;
}
[dir="rtl"] .roadmap-track { padding-left: 0; padding-right: 28px; }
.roadmap-track::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--berry));
  opacity: .32;
}
[dir="rtl"] .roadmap-track::before { left: auto; right: 18px; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line-soft);
  transition: transform .45s ease, box-shadow .45s ease, background .45s ease;
}
[dir="rtl"] .step { grid-template-columns: 1fr 80px; }
.step:last-child { margin-bottom: 0; }
.step-dot {
  position: absolute;
  left: -18px;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0,143,90,.14), 0 0 0 14px rgba(0,143,90,.05);
  animation: pulse 2.8s ease-in-out infinite;
}
[dir="rtl"] .step-dot { left: auto; right: -18px; }
.step-number {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--green-soft), var(--berry-soft));
  color: var(--green-deep); font-size: 12px; font-weight: 700; letter-spacing: .1em;
}
.step-content b { display: block; margin-bottom: 8px; font-size: 17px; }
.step-content span { color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.step.active {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(247,255,251,.94));
  box-shadow: 0 24px 36px -28px rgba(0,0,0,.24);
}
.buy-panel {
  background: linear-gradient(160deg, var(--green-deep), var(--green));
  color: #fff;
}
.buy-panel .mini-label, .buy-panel h3, .buy-panel .roadmap-copy { color: #fff; }
.buy-panel .mini-label::before { background: rgba(255,255,255,.6); }
.buy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.buy-card {
  min-height: 152px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  transition: transform .35s ease, background .35s ease;
}
.buy-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.14); }
.buy-card b { display: block; margin: 10px 0 8px; font-size: 18px; }
.buy-card p { color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.65; }
.icon-badge {
  width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,255,255,.14);
}
.icon-badge svg { width: 20px; height: 20px; }

.gallery-stage {
  width: min(1440px, calc(100% - 20px));
  margin: 0 auto;
}
.category-grid {
  display: grid;
  grid-template-columns: 1.06fr 1.06fr .88fr;
  gap: 18px;
}
.category-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 38px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
}
.category-card img { width: 100%; height: 100%; object-fit: cover; }
.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(0,0,0,.56) 100%);
}
.category-copy {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 2;
  color: #fff;
}
.category-copy small {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
}
.category-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.03;
}
.category-copy p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.88); }
.category-card.onion {
  display: grid;
  place-items: end start;
  background: linear-gradient(145deg, #fff, #f8f3ea);
}
.category-card.onion .overlay { background: linear-gradient(180deg, transparent 45%, rgba(255,255,255,.78) 100%); }
.category-card.onion .category-copy { color: var(--ink); }
.category-card.onion .category-copy p { color: var(--ink-soft); }
.category-card.onion .onion-photo { position: absolute; inset: 0; }
.category-card.onion .onion-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(255,255,255,.82) 100%);
}
.story-ribbon {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line-soft);
  font-size: 12px;
  font-weight: 700;
  color: var(--green-deep);
}
[dir="rtl"] .story-ribbon { left: auto; right: 22px; }

.trust-stage {
  width: min(1400px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(330px, .96fr);
  gap: 18px;
}
.trust-photo { min-height: 520px; }
.trust-stack { display: grid; gap: 18px; }
.trust-panel { background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.72)); }
.trust-list, .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.trust-list div, .values-list div {
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(0,143,90,.10), rgba(162,43,104,.08));
  font-size: 13px;
  font-weight: 700;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.feature-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line-soft);
}

.values-band {
  position: relative;
  width: min(1420px, calc(100% - 20px));
  margin: 0 auto;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 40px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 45%, var(--berry) 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.values-band::before {
  width: 360px; height: 360px; inset: auto -10% -28% auto;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 68%);
}
.values-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}
.values-icon-wrap img { width: min(230px, 100%); filter: drop-shadow(0 24px 32px rgba(0,0,0,.18)); }
.values-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: #fff;
}
.values-panel .section-index,
.values-panel .title,
.values-panel .mini-label,
.values-panel .micro-copy,
.values-panel .title em { color: #fff; }
.values-panel .section-index::before,
.values-panel .mini-label::before { background: rgba(255,255,255,.6); }
.values-list div {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
}

.closing-stage {
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
}
.closing-panel {
  padding: clamp(32px, 5vw, 56px);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.68));
}
.closing-title {
  margin-top: 16px;
  font-size: clamp(40px, 5vw, 82px);
}
.rtl-page .closing-title { font-size: clamp(32px, 5vw, 68px); }
.closing-copy { margin-top: 18px; max-width: 760px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.tilt {
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.parallax { will-change: transform; transition: transform .25s linear; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(0,143,90,.14), 0 0 0 14px rgba(0,143,90,.05); }
  50% { box-shadow: 0 0 0 10px rgba(0,143,90,.12), 0 0 0 20px rgba(0,143,90,.04); }
}
@keyframes drift {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-12px) translateX(8px) rotate(12deg); }
  100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

@media (max-width: 1180px) {
  .hero-grid, .story-grid, .roadmap-grid, .trust-stage, .values-grid, .section-head { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .brand-header { flex-direction: column; align-items: flex-start; }
  .trust-strip, .story-mini-grid, .feature-grid, .buy-grid { grid-template-columns: 1fr; }
  .hero-stack { grid-template-columns: 1fr; }
  .photo-main, .photo-small, .story-image, .trust-photo { min-height: 260px; }
  .step { grid-template-columns: 72px 1fr; }
  [dir="rtl"] .step { grid-template-columns: 1fr 72px; }
}
@media (max-width: 560px) {
  :root { --frame: min(1240px, calc(100% - 28px)); --narrow: min(1100px, calc(100% - 28px)); }
  .brand-header img.logo-full { width: 280px; }
  .display { font-size: clamp(44px, 12vw, 76px); }
  .title, .closing-title { font-size: clamp(28px, 10vw, 48px); }
  .hero-copy { padding-inline: 0; }
  .hero-visual, .story-stage, .roadmap-stage, .values-band, .closing-panel { padding: 18px; }
  .story-box, .roadmap-panel, .buy-panel, .trust-panel, .values-panel { padding: 22px; }
}
