:root {
  color-scheme: dark;
  --bg: #03070b;
  --bg-2: #071119;
  --panel: rgba(8, 16, 20, 0.86);
  --panel-strong: #0a1218;
  --line: rgba(238, 201, 127, 0.22);
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #fff7e8;
  --muted: #c6bdad;
  --soft: #918879;
  --green: #0b5f43;
  --green-bright: #17bd79;
  --gold: #f2c66d;
  --gold-2: #d19a39;
  --pink: #d923a9;
  --violet: #7738ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --radius: 8px;
  --urdu-font: "Noto Nastaliq Urdu", "Noto Nastaliq", "Jameel Noori Nastaleeq", "Geeza Pro",
    "Arial Unicode MS", Tahoma, Arial, sans-serif;
  --latin-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(5, 16, 17, 0.96), rgba(3, 7, 11, 0.98) 520px),
    linear-gradient(135deg, #020405, #06130e 42%, #06080d);
  font-family: var(--urdu-font);
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body[data-lang="en"] {
  font-family: var(--latin-font);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 98, 68, 0.28), transparent 28%, rgba(178, 128, 43, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 76px);
  mask-image: linear-gradient(180deg, #000 0 74%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: url("assets/pakistan-host-close.jpeg") left 14% top 88px / auto 620px
    no-repeat;
  opacity: 0.13;
  filter: saturate(0.7) contrast(0.9);
}

body[data-lang="en"]::after {
  background-position: right 12% top 88px;
}

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

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

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  inset-inline-start: 18px;
  top: 12px;
  z-index: 1000;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  color: #06120d;
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(3, 5, 8, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "actions nav brand";
  gap: 22px;
  align-items: center;
  direction: ltr;
}

body[data-lang="en"] .nav-shell {
  grid-template-areas: "brand nav actions";
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
  min-width: max-content;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(217, 35, 169, 0.34);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand strong {
  color: #ffffff;
  font-family: var(--latin-font);
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
}

.brand span span {
  color: var(--gold);
  font-family: var(--latin-font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-lang="ur"] .brand span span {
  font-family: var(--urdu-font);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.nav-links {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #ddd4c6;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  direction: rtl;
}

body[data-lang="en"] .nav-links {
  direction: ltr;
}

.nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
  border-color: var(--gold-2);
}

.nav-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
}

.lang-switch,
.menu-toggle {
  min-height: 44px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.lang-switch {
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  padding: 0;
  place-items: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    filter 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #11120c;
  background: linear-gradient(135deg, #ffe08a, #f0b85a 52%, #d58d32);
  border-color: rgba(255, 226, 148, 0.45);
}

.btn-secondary {
  color: #ffffff;
  background: linear-gradient(135deg, #d723a8, #8238ff 58%, #16a66c);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-quiet {
  min-height: 44px;
  padding: 10px 15px;
  color: #ffffff;
  background: rgba(217, 154, 57, 0.1);
  border-color: rgba(242, 198, 109, 0.42);
  box-shadow: none;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  position: relative;
  display: inline-block;
}

.btn-icon::before,
.btn-icon::after,
.text-link span[aria-hidden="true"]::before,
.text-link span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.btn-icon::before,
.text-link span[aria-hidden="true"]::before {
  width: 15px;
  height: 2px;
  top: 8px;
  left: 1px;
  border-radius: 999px;
}

.btn-icon::after,
.text-link span[aria-hidden="true"]::after {
  width: 8px;
  height: 8px;
  top: 5px;
  left: 1px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  background: transparent;
  transform: rotate(-45deg);
}

body[data-lang="en"] .btn-icon::after,
body[data-lang="en"] .text-link span[aria-hidden="true"]::after {
  left: auto;
  right: 1px;
  border-top: 2px solid currentColor;
  border-left: 0;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 58px 0 70px;
  border-bottom: 1px solid var(--line-soft);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(2, 7, 8, 0.58) 56%, rgba(3, 7, 11, 0.96)),
    linear-gradient(180deg, rgba(3, 7, 11, 0.18), rgba(3, 7, 11, 0.96));
}

body[data-lang="en"] .hero-backdrop {
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.06), rgba(2, 7, 8, 0.58) 56%, rgba(3, 7, 11, 0.96)),
    linear-gradient(180deg, rgba(3, 7, 11, 0.18), rgba(3, 7, 11, 0.96));
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  grid-template-areas: "media copy";
  gap: 46px;
  align-items: center;
  direction: ltr;
}

body[data-lang="en"] .hero-shell {
  grid-template-areas: "copy media";
}

.hero-copy {
  grid-area: copy;
  max-width: 640px;
  justify-self: end;
  text-align: right;
  direction: rtl;
}

body[data-lang="en"] .hero-copy {
  justify-self: start;
  text-align: left;
  direction: ltr;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 14px;
  color: #e9ddc6;
  background: rgba(7, 23, 19, 0.78);
  border: 1px solid rgba(242, 198, 109, 0.32);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.eyebrow span:first-child {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-bright);
  box-shadow: 0 0 18px rgba(23, 189, 121, 0.8);
}

.hero h1 {
  max-width: 640px;
  margin: 0 0 14px;
  color: #fffdf6;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.22;
  font-weight: 950;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.58);
}

body[data-lang="en"] .hero h1 {
  line-height: 1.02;
}

.hero h1 span:first-child {
  display: block;
  color: var(--gold);
  font-family: var(--latin-font);
  text-shadow: 0 0 30px rgba(242, 198, 109, 0.22);
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 19px;
  color: #e0d6c5;
  font-size: 19px;
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin: 0 0 24px;
}

html[dir="rtl"] .proof-chips {
  justify-content: flex-end;
}

.proof-chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  color: #f3ead9;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.hero-actions,
.final-actions,
.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .final-actions {
  justify-content: flex-start;
  flex-direction: row;
}

html[dir="rtl"] .hero-copy .hero-actions,
html[dir="rtl"] .final-actions {
  justify-content: flex-end;
}

body[data-lang="en"] .hero-actions,
body[data-lang="en"] .final-actions {
  justify-content: flex-start;
}

.hero-actions .btn {
  min-width: 224px;
}

.safe-note {
  max-width: 570px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.hero-media {
  grid-area: media;
  position: relative;
  min-height: 520px;
}

.live-frame {
  position: absolute;
  inset: 54px 32px 22px 16px;
  overflow: hidden;
  background: #04070a;
  border: 1px solid rgba(242, 198, 109, 0.52);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

body[data-lang="en"] .live-frame {
  inset: 54px 16px 22px 32px;
}

.live-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

.live-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(3, 7, 11, 0.72)),
    linear-gradient(90deg, rgba(217, 35, 169, 0.12), transparent 44%, rgba(15, 98, 68, 0.18));
  pointer-events: none;
}

.live-badge {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  z-index: 2;
  width: 172px;
  min-height: 104px;
  display: grid;
  place-items: center;
  color: var(--gold);
  text-align: center;
  background: rgba(10, 8, 14, 0.7);
  border: 1px solid rgba(217, 35, 169, 0.46);
  border-radius: var(--radius);
  box-shadow: 0 0 42px rgba(217, 35, 169, 0.2);
}

.live-badge span {
  color: #ffffff;
  font-family: var(--latin-font);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.live-badge strong {
  display: block;
  margin-top: -6px;
  font-family: var(--latin-font);
  font-size: 31px;
  line-height: 0.92;
  font-weight: 950;
}

.host-label {
  position: absolute;
  inset-inline-start: 24px;
  bottom: 22px;
  z-index: 2;
  min-width: 194px;
  padding: 12px 14px;
  background: rgba(3, 7, 11, 0.7);
  border: 1px solid rgba(242, 198, 109, 0.52);
  border-radius: var(--radius);
  text-align: center;
}

.host-label span {
  display: block;
  color: var(--gold);
  font-family: var(--latin-font);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.host-label strong {
  display: block;
  margin-top: 3px;
  color: #fff6e3;
  font-size: 18px;
}

.phone-preview {
  position: absolute;
  inset-inline-start: 0;
  bottom: -8px;
  z-index: 4;
  width: min(255px, 48vw);
  min-height: 432px;
  padding: 14px;
  background: #050a0d;
  border: 1px solid rgba(242, 198, 109, 0.32);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56);
}

body[data-lang="en"] .phone-preview {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

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

.phone-top img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.phone-top span {
  width: 22px;
  height: 15px;
  position: relative;
  display: inline-block;
}

.phone-top span::before,
.phone-top span::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.phone-top span::before {
  top: 2px;
}

.phone-top span::after {
  bottom: 2px;
}

.phone-preview > img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(242, 198, 109, 0.46);
  border-radius: var(--radius);
}

.phone-preview h2 {
  margin: 18px 0 12px;
  color: #fff9ed;
  font-size: 25px;
  line-height: 1.34;
  text-align: center;
}

.phone-preview h2 span:first-child {
  font-family: var(--latin-font);
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.phone-actions span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-weight: 950;
}

.phone-actions span:first-child {
  color: #11120c;
  background: var(--gold);
}

.phone-actions span:last-child {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--violet));
}

.trust-band {
  width: min(100% - 32px, var(--max));
  margin: -42px auto 0;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-band article,
.feature-card,
.step-card,
.agent-list article,
.faq-grid details {
  background: linear-gradient(180deg, rgba(14, 26, 29, 0.92), rgba(7, 13, 17, 0.92));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.trust-band article {
  min-height: 118px;
  padding: 18px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.trust-band strong,
.agent-list strong {
  display: block;
  color: var(--gold);
  font-size: 19px;
  line-height: 1.3;
}

.trust-band span,
.agent-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

html[dir="rtl"] .section-heading {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

body[data-lang="en"] .section-heading {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.section-heading.compact {
  max-width: 620px;
}

.section h2,
.story-copy h2,
.agent-copy h2,
.final-cta h2 {
  margin-bottom: 12px;
  color: #fff9ee;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 950;
}

body[data-lang="en"] .section h2,
body[data-lang="en"] .story-copy h2,
body[data-lang="en"] .agent-copy h2,
body[data-lang="en"] .final-cta h2 {
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.story-copy p,
.agent-copy p,
.final-cta p {
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 238px;
  padding: 22px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #13120b;
  background: var(--gold);
  border-radius: 999px;
  font-family: var(--latin-font);
  font-weight: 950;
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.32;
}

.feature-card p,
.step-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.story-strip,
.agent-band,
.final-cta {
  width: 100%;
  display: grid;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(10, 95, 67, 0.2), transparent 34%, rgba(209, 154, 57, 0.15)),
    rgba(5, 11, 14, 0.78);
}

.story-strip {
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 48px;
  align-items: center;
  padding: 76px max(16px, calc((100% - var(--max)) / 2));
}

body[data-lang="en"] .story-strip {
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
}

.story-image {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(242, 198, 109, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
}

body[data-lang="en"] .story-image {
  grid-column: 2;
}

body[data-lang="en"] .story-copy {
  grid-row: 1;
  grid-column: 1;
}

.story-copy {
  max-width: 680px;
}

html[dir="rtl"] .story-copy {
  text-align: right;
}

body[data-lang="en"] .story-copy {
  text-align: left;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 950;
  transition: transform 160ms ease;
}

.text-link span[aria-hidden="true"] {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
}

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

.step-card {
  min-height: 218px;
  padding: 24px;
}

.step-card > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #10120d;
  background: linear-gradient(135deg, #f8d985, #c98d31);
  border-radius: 999px;
  font-family: var(--latin-font);
  font-size: 20px;
  font-weight: 950;
}

.agent-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 78px max(16px, calc((100% - var(--max)) / 2));
}

body[data-lang="en"] .agent-band {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

html[dir="rtl"] .agent-copy {
  text-align: right;
}

body[data-lang="en"] .agent-copy {
  text-align: left;
}

html[dir="rtl"] .agent-copy .btn {
  margin-right: 0;
  margin-left: auto;
}

.agent-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.agent-list article {
  min-height: 192px;
  padding: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-grid details {
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  color: #ffffff;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.35;
}

.faq-grid p {
  margin: 12px 0 0;
}

.final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 68px max(16px, calc((100% - var(--max)) / 2));
}

html[dir="rtl"] .final-cta {
  text-align: right;
}

body[data-lang="en"] .final-cta {
  text-align: left;
}

.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 100px;
  color: var(--soft);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: var(--gold);
  font-family: var(--latin-font);
}

.mobile-action-bar {
  position: fixed;
  inset-inline: 12px;
  bottom: 12px;
  z-index: 120;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(3, 7, 11, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.46);
}

.mobile-action-bar .btn {
  min-height: 46px;
  padding: 10px 12px;
}

@media (max-width: 1060px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "actions brand menu";
  }

  body[data-lang="en"] .nav-shell {
    grid-template-areas: "menu brand actions";
  }

  .menu-toggle {
    grid-area: menu;
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    inset-inline: 16px;
    display: none;
    padding: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: rgba(5, 10, 13, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
    gap: 30px;
  }

  body[data-lang="en"] .hero-shell {
    grid-template-areas:
      "copy"
      "media";
  }

  .hero-copy,
  body[data-lang="en"] .hero-copy {
    max-width: none;
    justify-self: stretch;
  }

  .hero-media {
    min-height: 520px;
  }

  .trust-band,
  .feature-grid,
  .agent-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-strip,
  body[data-lang="en"] .story-strip,
  .agent-band,
  body[data-lang="en"] .agent-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

  body[data-lang="en"] .story-image,
  body[data-lang="en"] .story-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .final-actions,
  body[data-lang="en"] .final-actions {
    justify-content: flex-start;
  }

  html[dir="rtl"] .final-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  body::after {
    background-size: auto 450px;
    opacity: 0.1;
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    width: min(100% - 22px, var(--max));
    min-height: 68px;
    gap: 10px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand span span {
    font-size: 9px;
  }

  .lang-switch,
  .menu-toggle {
    min-height: 40px;
  }

  .lang-switch {
    padding: 8px 10px;
    font-size: 13px;
  }

  .menu-toggle {
    width: 40px;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 56px;
  }

  .hero-shell,
  .section,
  .trust-band,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .hero-shell {
    gap: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .story-copy p,
  .agent-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .proof-chips {
    gap: 7px;
    margin-bottom: 18px;
  }

  .proof-chips span {
    min-height: 31px;
    padding: 5px 9px;
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .safe-note {
    font-size: 13px;
  }

  .hero-media {
    min-height: 395px;
  }

  .live-frame {
    inset: 0 0 58px;
  }

  body[data-lang="en"] .live-frame {
    inset: 0 0 58px;
  }

  .live-badge {
    width: 128px;
    min-height: 76px;
    top: 14px;
    inset-inline-end: 14px;
  }

  .live-badge strong {
    font-size: 22px;
  }

  .host-label {
    min-width: 156px;
    inset-inline-start: 14px;
    bottom: 18px;
  }

  .phone-preview {
    width: min(212px, 58vw);
    min-height: 318px;
    padding: 10px;
    bottom: -2px;
  }

  .phone-preview h2 {
    margin: 11px 0 9px;
    font-size: 20px;
  }

  .phone-actions span {
    min-height: 36px;
    font-size: 13px;
  }

  .trust-band {
    margin-top: -22px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-band article {
    min-height: 104px;
    padding: 14px;
  }

  .trust-band strong {
    font-size: 16px;
  }

  .trust-band span {
    font-size: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section h2,
  .story-copy h2,
  .agent-copy h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .feature-grid,
  .steps-grid,
  .agent-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step-card,
  .agent-list article {
    min-height: auto;
    padding: 18px;
  }

  .story-strip,
  .agent-band,
  .final-cta {
    gap: 24px;
    padding: 56px 11px;
  }

  .story-image {
    min-height: 360px;
  }

  .story-image img {
    min-height: 360px;
  }

  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    padding-bottom: 92px;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand-copy span {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-media {
    min-height: 350px;
  }

  .phone-preview {
    width: 188px;
    min-height: 286px;
  }

  .host-label {
    max-width: 142px;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }
}
