:root {
  --bg: #f4f7ed;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(239, 247, 216, 0.86);
  --text: #15220e;
  --muted: #5c6d4f;
  --line: rgba(24, 40, 16, 0.08);
  --shadow: 0 30px 90px rgba(76, 102, 26, 0.15);
  --shadow-soft: 0 18px 42px rgba(76, 102, 26, 0.1);
  --accent: #b9ef31;
  --accent-strong: #8bc40a;
  --accent-dark: #486a16;
  --accent-soft: #eef8ca;
  --accent-2: #dbff87;
  --ink-deep: #1a2714;
  --ink-soft: #c9d7c1;
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --progress: 0;
  --hero-shift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(185, 239, 49, 0.25), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(219, 255, 135, 0.18), transparent 24%),
    radial-gradient(circle at 24% 68%, rgba(233, 247, 189, 0.44), transparent 28%),
    linear-gradient(180deg, #fcfdfa 0%, var(--bg) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.72;
}

body::before {
  top: 10vh;
  left: -8vw;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(185, 239, 49, 0.18), transparent 70%);
  transform: translate3d(calc(var(--progress) * 4vw), calc(var(--progress) * -3vh), 0);
}

body::after {
  right: -10vw;
  bottom: 10vh;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(205, 243, 96, 0.16), transparent 70%);
  transform: translate3d(calc(var(--progress) * -5vw), calc(var(--progress) * 3vh), 0);
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 50;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.scroll-progress-bar {
  display: block;
  width: calc(var(--progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent), var(--accent-2));
  box-shadow: 0 0 24px rgba(185, 239, 49, 0.45);
  transition: width 120ms linear;
}

.page-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  border-radius: 999px;
  background: rgba(238, 248, 202, 0.92);
  border: 1px solid rgba(72, 106, 22, 0.1);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  padding: 9px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-button:hover,
.lang-button:focus-visible,
.lang-button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #203600;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #203600;
  background: linear-gradient(135deg, #8bc40a 0%, var(--accent) 60%, var(--accent-2) 100%);
  box-shadow: 0 12px 24px rgba(184, 239, 47, 0.34);
}

.brand-text {
  font-size: 1.15rem;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #203600;
  background: linear-gradient(135deg, var(--accent), #cdf45c, var(--accent-2));
  box-shadow: 0 18px 34px rgba(184, 239, 47, 0.34);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  color: var(--text);
}

.button-ghost {
  box-shadow: var(--shadow-soft);
}

.section {
  position: relative;
  padding: 96px 0;
}

.scroll-section {
  opacity: 0.82;
  transform: translateY(28px);
  transition: opacity 500ms ease, transform 500ms ease, filter 500ms ease;
  filter: saturate(0.94);
}

.scroll-section.is-in-view {
  opacity: 1;
  transform: translateY(0);
  filter: saturate(1);
}

.scroll-section::before {
  content: "";
  position: absolute;
  inset: 16px -24px;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 400ms ease, transform 400ms ease;
}

.scroll-section.is-in-view::before {
  opacity: 1;
  transform: scale(1);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 130px);
}

.hero-copy {
  transform: translateY(calc(var(--hero-shift) * -0.32));
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 680px;
  padding: 52px 70px 78px;
  transform: translateY(calc(var(--hero-shift) * 0.18));
}

.phone-stage {
  position: relative;
  width: min(100%, 460px);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.82;
}

.orb-a {
  top: 64px;
  right: 16px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(185, 239, 49, 0.38), transparent 72%);
  animation: drift 9s ease-in-out infinite;
}

.orb-b {
  left: 28px;
  bottom: 42px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(210, 246, 108, 0.28), transparent 72%);
  animation: drift 12s ease-in-out infinite reverse;
}

.orb-c {
  top: 220px;
  left: -18px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 72%);
  animation: pulse 7s ease-in-out infinite;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.02em;
}

.section-label-on-dark {
  color: #d8f793;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #98d20e, var(--accent));
  box-shadow: 0 0 0 6px rgba(184, 239, 47, 0.16);
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.03em;
}

h1 {
  margin: 18px 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 5.9vw, 5.2rem);
  line-height: 0.95;
  max-width: 10ch;
}

h2 {
  margin: 0;
  max-width: 14ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 1;
}

.hero-text,
.story-card p,
.showcase-copy p,
.positioning-card p,
.contrast-copy p,
.contact-copy p,
.metric-card span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.metric-card,
.story-card,
.positioning-card,
.contact-panel,
.phone-card,
.floating-card,
.showcase-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
}

.metric-card strong,
.story-card h3,
.positioning-card h3,
.trust-item strong,
.contact-item strong,
.showcase-node strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.phone-card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 24px 24px;
  border-radius: 42px;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.7), transparent 32%),
    radial-gradient(circle at 18% 0%, rgba(214, 248, 108, 0.42), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 232, 0.98)),
    var(--surface-strong);
  box-shadow:
    0 28px 80px rgba(184, 239, 47, 0.18),
    0 18px 42px rgba(92, 122, 24, 0.14);
  overflow: hidden;
  transform-origin: center;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 180ms ease;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: auto -24% -16% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(184, 239, 47, 0.2), transparent 68%);
}

.phone-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(184, 239, 47, 0.12);
  pointer-events: none;
}

.phone-card-top,
.story-indicator {
  position: relative;
  z-index: 1;
}

.phone-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.status-pill {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.signal {
  color: rgba(23, 50, 12, 0.45);
  letter-spacing: 0.1em;
}

.story-indicator {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.story-step {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 34, 14, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.story-step.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #203600;
}

.listing-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 18px;
  margin-bottom: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 50, 12, 0.06);
  box-shadow: 0 10px 30px rgba(133, 165, 36, 0.08);
}

.listing-highlight {
  transform: translateX(18px);
}

.listing-secondary {
  transform: translateX(-8px);
}

.listing-card p,
.mini-stat span,
.trust-strip {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.listing-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  justify-self: end;
}

.gradient-a {
  background: linear-gradient(135deg, #dfff7b, #b8ef2f);
}

.gradient-b {
  background: linear-gradient(135deg, #8bc40a, #5f960e);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.mini-stat {
  position: relative;
  z-index: 1;
  padding: 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7fbdc, #fbfdf0);
  border: 1px solid rgba(184, 239, 47, 0.12);
}

.mini-stat strong {
  font-size: 1.1rem;
}

.trust-strip {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(72, 106, 22, 0.08);
  line-height: 1.5;
}

.floating-card {
  position: absolute;
  z-index: 1;
  padding: 20px 22px;
  border-radius: 28px;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 16px 40px rgba(179, 223, 61, 0.16),
    0 10px 22px rgba(92, 122, 24, 0.08);
}

.floating-card span,
.contact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.floating-card strong {
  font-size: 1rem;
}

.floating-card-left {
  top: 12px;
  left: -38px;
}

.floating-card-right {
  right: -24px;
  bottom: 18px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.story-grid,
.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card,
.positioning-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.story-card:hover,
.story-card:focus-within,
.positioning-card:hover,
.positioning-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(185, 239, 49, 0.3);
}

.story-card-index {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
}

.showcase-copy {
  padding-right: 12px;
}

.showcase-panel {
  padding: 34px;
  border-radius: 32px;
}

.showcase-track {
  position: relative;
  display: grid;
  gap: 24px;
}

.showcase-line {
  position: absolute;
  inset: 8px auto 8px 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(139, 196, 10, 0.1), rgba(139, 196, 10, 0.7), rgba(219, 255, 135, 0.2));
}

.showcase-node {
  position: relative;
  padding-left: 52px;
}

.showcase-node::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 8px rgba(185, 239, 49, 0.12);
}

.showcase-node span {
  color: var(--muted);
  line-height: 1.65;
}

.contrast-band::before {
  display: none;
}

.contrast-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 255, 135, 0.16), transparent 24%),
    radial-gradient(circle at 82% 76%, rgba(185, 239, 49, 0.12), transparent 26%),
    linear-gradient(180deg, #202f18 0%, #172112 100%);
  color: #f4f8ee;
  box-shadow: 0 30px 80px rgba(20, 31, 15, 0.32);
}

.contrast-copy p {
  color: rgba(244, 248, 238, 0.76);
}

.trust-points {
  display: grid;
  gap: 14px;
}

.trust-item {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 255, 135, 0.12);
  backdrop-filter: blur(14px);
}

.trust-item span {
  color: rgba(244, 248, 238, 0.7);
  line-height: 1.62;
}

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

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(184, 239, 47, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(237, 249, 189, 0.45), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 232, 0.96));
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(72, 106, 22, 0.08);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 22px 24px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 42px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-tagline {
  margin: 6px 0 0;
}

.footer-links {
  display: inline-flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal[data-reveal="up"] {
  transform: translateY(42px);
}

.reveal[data-reveal="left"] {
  transform: translateX(-38px);
}

.reveal[data-reveal="right"] {
  transform: translateX(38px);
}

.reveal[data-reveal="zoom"] {
  transform: translateY(26px) scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-group .reveal:nth-child(2),
.hero-metrics .reveal:nth-child(2),
.story-grid .reveal:nth-child(2),
.positioning-grid .reveal:nth-child(2),
.contact-details .reveal:nth-child(2),
.trust-points .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.hero-metrics .reveal:nth-child(3),
.story-grid .reveal:nth-child(3),
.positioning-grid .reveal:nth-child(3),
.contact-details .reveal:nth-child(3),
.trust-points .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.positioning-grid .reveal:nth-child(4) {
  transition-delay: 260ms;
}

html[dir="rtl"] body {
  font-family: "Cairo", "Manrope", sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2 {
  line-height: 1.16;
}

html[dir="rtl"] .topbar,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .footer {
  flex-direction: row-reverse;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .nav,
html[dir="rtl"] .topbar-actions,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .phone-card-top,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .story-indicator {
  direction: rtl;
}

html[dir="rtl"] .hero,
html[dir="rtl"] .story-grid,
html[dir="rtl"] .positioning-grid,
html[dir="rtl"] .contact-panel,
html[dir="rtl"] .hero-metrics,
html[dir="rtl"] .mini-grid,
html[dir="rtl"] .showcase,
html[dir="rtl"] .contrast-panel {
  direction: rtl;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .story-card,
html[dir="rtl"] .showcase-copy,
html[dir="rtl"] .showcase-node,
html[dir="rtl"] .positioning-card,
html[dir="rtl"] .contrast-copy,
html[dir="rtl"] .trust-item,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .contact-item,
html[dir="rtl"] .metric-card,
html[dir="rtl"] .listing-card,
html[dir="rtl"] .mini-stat,
html[dir="rtl"] .floating-card,
html[dir="rtl"] .footer {
  text-align: right;
}

html[dir="rtl"] .showcase-copy {
  padding-left: 12px;
  padding-right: 0;
}

html[dir="rtl"] .showcase-line {
  inset: 8px 18px 8px auto;
}

html[dir="rtl"] .showcase-node {
  padding-right: 52px;
  padding-left: 0;
}

html[dir="rtl"] .showcase-node::before {
  right: 8px;
  left: auto;
}

html[dir="rtl"] .floating-card-left {
  right: -38px;
  left: auto;
}

html[dir="rtl"] .floating-card-right {
  left: -24px;
  right: auto;
}

html[dir="rtl"] .listing-highlight {
  transform: translateX(-18px);
}

html[dir="rtl"] .listing-secondary {
  transform: translateX(8px);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -18px, 0) scale(1.06);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.94;
  }
}

@media (max-width: 1120px) {
  .hero,
  .showcase,
  .contrast-panel,
  .contact-panel,
  .story-grid,
  .positioning-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .hero {
    min-height: auto;
    padding-top: 36px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 22px), var(--container));
  }

  .topbar {
    top: 10px;
    padding: 14px;
    border-radius: 28px;
  }

  .nav,
  .desktop-cta,
  .floating-card {
    display: none;
  }

  .hero,
  .showcase,
  .story-grid,
  .positioning-grid,
  .contrast-panel,
  .contact-panel,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .scroll-section::before {
    inset: 10px -8px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 16vw, 4.8rem);
  }

  h2 {
    max-width: 100%;
  }

  .hero-copy,
  .hero-visual {
    transform: none;
  }

  .hero-visual {
    min-height: auto;
    padding: 8px 0 0;
  }

  .phone-card {
    transform: none;
  }

  .showcase-copy {
    padding-right: 0;
  }

  .listing-highlight,
  .listing-secondary,
  html[dir="rtl"] .listing-highlight,
  html[dir="rtl"] .listing-secondary {
    transform: none;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  html[dir="rtl"] .footer {
    align-items: flex-end;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .scroll-section,
  .phone-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
