:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --surface: rgba(12, 12, 12, 0.82);
  --surface-strong: rgba(18, 17, 15, 0.92);
  --line: rgba(196, 154, 77, 0.2);
  --line-strong: rgba(214, 174, 92, 0.42);
  --text: #f6f0e3;
  --muted: rgba(246, 240, 227, 0.72);
  --gold: #d2ab57;
  --gold-soft: #f1ddb1;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1220px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #050505;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

body {
  --topbar-offset: 112px;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: #050505;
  background-image:
    radial-gradient(circle at 15% 18%, rgba(182, 137, 50, 0.18), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(188, 135, 41, 0.12), transparent 21%),
    radial-gradient(circle at 50% 100%, rgba(123, 44, 22, 0.16), transparent 24%),
    radial-gradient(circle at 20% 30%, rgba(255, 245, 220, 0.045) 0, transparent 1.5px),
    radial-gradient(circle at 68% 22%, rgba(255, 230, 170, 0.05) 0, transparent 1.6px),
    radial-gradient(circle at 78% 64%, rgba(255, 243, 214, 0.04) 0, transparent 1.4px),
    linear-gradient(180deg, #050505 0%, #080808 50%, #050505 100%);
  background-size: auto, auto, auto, 240px 240px, 320px 320px, 280px 280px, auto;
  background-attachment: fixed;
  padding-top: var(--topbar-offset);
}

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

button,
a,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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


.cursor-core,
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.08s ease, width 0.25s ease, height 0.25s ease;
}

.cursor-core {
  z-index: 160;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff7eb 0%, #f1ddb1 62%, rgba(241, 221, 177, 0.18) 100%);
  box-shadow: 0 0 0 1px rgba(255, 232, 189, 0.45), 0 0 18px rgba(225, 187, 108, 0.45);
}

.cursor-glow {
  z-index: 159;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(239, 205, 136, 0.34);
  background: radial-gradient(circle, rgba(241, 221, 177, 0.14) 0%, rgba(241, 221, 177, 0.04) 62%, rgba(241, 221, 177, 0) 100%);
  box-shadow: 0 0 36px rgba(214, 174, 92, 0.16);
  backdrop-filter: blur(1px);
}

.cursor-glow.is-hover {
  width: 72px;
  height: 72px;
  border-color: rgba(255, 233, 188, 0.52);
  background: radial-gradient(circle, rgba(241, 221, 177, 0.18) 0%, rgba(241, 221, 177, 0.06) 65%, rgba(241, 221, 177, 0) 100%);
  box-shadow: 0 0 46px rgba(214, 174, 92, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-enabled,
  body.cursor-enabled a,
  body.cursor-enabled button,
  body.cursor-enabled input,
  body.cursor-enabled .accordion-trigger,
  body.cursor-enabled .tab-btn {
    cursor: none;
  }

  body.cursor-enabled .cursor-core,
  body.cursor-enabled .cursor-glow {
    opacity: 1;
  }
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 0.6px, transparent 0.6px);
  background-size: 10px 10px;
  opacity: 0.1;
  mix-blend-mode: soft-light;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: var(--container);
  margin: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark,
.footer-brand,
.price-main,
.hero h1,
.section-heading h2,
.tab-copy h3,
.persona-copy h3,
.download-copy h3,
.cta-banner h2,
.pricing-card .price-label {
  font-family: 'Cormorant Garamond', serif;
}

.brand-mark {
  font-size: 1.2rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.brand-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topnav a,
.footer-link,
.menu-toggle {
  color: var(--muted);
  font-size: 0.95rem;
  border: 0;
  background: transparent;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.topnav a:hover,
.footer-link:hover,
.menu-toggle:hover {
  color: var(--gold-soft);
}

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

.menu-toggle {
  display: none;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(226, 188, 107, 0.3);
  background: linear-gradient(180deg, #ddb667 0%, #bb8d34 100%);
  color: #160f05;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 35px rgba(109, 71, 10, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(109, 71, 10, 0.3);
}

.cta.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.cta.ghost:hover {
  border-color: var(--line-strong);
}

main {
  display: block;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 94px 0;
}

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

.section-hero {
  padding-top: 82px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero-slogan {
  margin: 18px 0 0;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  color: var(--gold-soft);
  max-width: 10ch;
}

.hero-lead,
.section-intro,
.section-sidecopy,
.tab-copy p,
.persona-copy li,
.download-copy p,
.newsletter-note,
.footer-copy,
.footer-bottom,
.accordion-content,
.cta-banner p {
  color: var(--muted);
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 670px;
  font-size: 1.1rem;
  line-height: 1.82;
}

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

.hero-microproofs {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-microproofs span,
.path-pill,
.persona-label,
.download-label,
.price-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 14, 13, 0.85);
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual,
.benefits-visual,
.tab-visual,
.persona-media,
.cta-banner-media {
  min-width: 0;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.88);
  box-shadow: var(--shadow);
}

.visual-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 18%, transparent 70%, rgba(255,210,133,0.05));
}

.visual-frame img,
.visual-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-frame-main {
  min-height: 620px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 0.96;
}

.section-intro,
.section-sidecopy {
  margin: 16px 0 0;
  font-size: 1.03rem;
  line-height: 1.8;
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  max-width: none;
}

.split-heading > * {
  flex: 1;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.benefits-accordion,
.tabs-panels,
.glass,
.newsletter-card,
.cta-banner,
.persona-card,
.pricing-card,
.download-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 14, 13, 0.93), rgba(10, 10, 10, 0.9));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(226, 188, 107, 0.1);
}

.accordion-trigger {
  width: 100%;
  padding: 28px 28px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 600;
  text-align: left;
}

.accordion-icon {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-content p {
  margin: 0 0 24px;
  line-height: 1.8;
}

.accordion-item.is-open .accordion-content {
  max-height: 220px;
  padding-bottom: 4px;
}

.benefits-visual .visual-frame {
  height: 100%;
  min-height: 100%;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.72);
  color: var(--muted);
  transition: all 0.25s ease;
}

.tab-btn.is-active {
  color: #160f05;
  border-color: rgba(226, 188, 107, 0.3);
  background: linear-gradient(180deg, #ddb667 0%, #bb8d34 100%);
}

.tabs-panels {
  padding: 24px;
}

.tab-panel {
  display: none;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.tab-panel.is-active {
  display: grid;
}

.tab-copy h3,
.persona-copy h3,
.download-copy h3,
.cta-banner h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
}

.tab-copy p,
.download-copy p,
.cta-banner p,
.newsletter-note {
  font-size: 1rem;
  line-height: 1.8;
}

.feature-list,
.persona-copy ul,
.pricing-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li,
.persona-copy li,
.pricing-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.7;
}

.feature-list li::before,
.persona-copy li::before,
.pricing-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.tab-visual {
  min-height: 430px;
}

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

.persona-card,
.pricing-card,
.download-card,
.newsletter-card {
  padding: 24px;
}

.persona-media {
  height: 360px;
  margin-bottom: 24px;
}

.persona-copy {
  display: grid;
  gap: 12px;
}

.persona-copy h3,
.download-copy h3 {
  font-size: 2.25rem;
}

.pricing-top {
  display: grid;
  gap: 14px;
}

.price-row {
  display: flex;
  align-items: end;
  gap: 12px;
}

.price-main {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
}

.price-sub {
  margin-bottom: 8px;
  color: var(--muted);
}

.pricing-list {
  margin-top: 28px;
}

.cta-wide {
  width: 100%;
}

.download-card {
  display: grid;
  gap: 22px;
  align-content: start;
}

.visual-frame-soft {
  min-height: 280px;
  background: radial-gradient(circle at center, rgba(214,174,92,0.15), transparent 52%), rgba(10, 10, 10, 0.9);
}

.cta-banner {
  padding: 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.cta-banner-media {
  min-height: 340px;
}

.newsletter-card {
  padding: 28px;
}

.newsletter-form {
  display: flex;
  gap: 14px;
  align-items: end;
}

.newsletter-form label {
  flex: 1;
  display: grid;
  gap: 12px;
}

.newsletter-form span {
  color: var(--gold-soft);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(210, 171, 87, 0.08);
}

.site-footer {
  width: var(--container);
  margin: 0 auto 36px;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
}

.footer-brand {
  margin: 0;
  font-size: 1.65rem;
  color: var(--gold-soft);
}

.footer-copy {
  margin: 10px 0 0;
  max-width: 520px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-link {
  padding: 0;
}

.footer-bottom {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.legal-modal.is-open {
  display: block;
}

.legal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
}

.legal-panel {
  position: relative;
  width: min(860px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #0c0b0a;
  box-shadow: var(--shadow);
}

.legal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.6rem;
}

.legal-content h3 {
  margin-top: 0;
  font-size: 1.35rem;
  color: var(--gold-soft);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.8;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.pre-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .benefits-layout,
  .tab-panel,
  .persona-grid,
  .fondation-grid,
  .offers-grid-two,
  .offers-grid-three,
  .cta-banner,
  .split-heading,
  .footer-top {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }

  .visual-frame-main {
    min-height: 460px;
  }

  .tab-visual,
  .persona-media,
  .cta-banner-media {
    min-height: 300px;
  }
}

@media (max-width: 920px) {
  .topbar {
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .topnav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
  }

  .topnav.is-open {
    display: flex;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 22px, 100% - 22px);
    --radius-xl: 24px;
  }

  .topbar {
    top: 10px;
    padding: 14px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-slogan {
    max-width: 100%;
  }

  .hero-actions,
  .pricing-actions,
  .topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta,
  .cta-wide {
    width: 100%;
  }

  .accordion-trigger,
  .pricing-card,
  .download-card,
  .newsletter-card,
  .cta-banner,
  .tabs-panels,
  .persona-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tabs-panels {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .tab-copy h3,
  .persona-copy h3,
  .download-copy h3,
  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .price-main {
    font-size: 3rem;
  }

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

  .legal-panel {
    padding: 22px 18px;
  }
}


/* Final adjustments */
.hero {
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: 40px;
}

.hero-visual-wide {
  align-self: stretch;
}

.visual-frame-cinematic {
  min-height: 720px;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.visual-frame-cinematic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-shell {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.slider-topbar,
.slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.slider-label,
.slider-caption {
  margin: 0;
}

.slider-label {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.slider-caption {
  color: var(--muted);
  line-height: 1.7;
  max-width: 78%;
}

.slider-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.slider-btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17, 15, 12, 0.92);
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.slider-btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  color: var(--gold-soft);
}

.slider-btn-gold {
  background: linear-gradient(180deg, #ddb667 0%, #bb8d34 100%);
  color: #160f05;
  border-color: rgba(226, 188, 107, 0.42);
}

.slider-stage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  background: #050505;
  border: 1px solid rgba(226, 188, 107, 0.12);
}

.slider-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(226, 188, 107, 0.18);
}

.slider-dot.is-active {
  width: 24px;
  background: linear-gradient(180deg, #ddb667 0%, #bb8d34 100%);
}

.footer-meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 188, 107, 0.28);
}

.footer-meta a:hover {
  color: var(--gold-soft);
  border-bottom-color: rgba(226, 188, 107, 0.6);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .visual-frame-cinematic,
  .slider-stage,
  .slider-stage img {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .slider-shell {
    padding: 14px;
  }

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

  .slider-caption {
    max-width: 100%;
  }

  .visual-frame-cinematic,
  .slider-stage,
  .slider-stage img {
    min-height: 360px;
  }
}

.lang-switch {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 10, 15, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.32);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-link.is-active {
  background: rgba(226, 188, 107, 0.14);
  color: var(--gold-soft);
}

.newsletter-embed-shell {
  padding: 24px;
}

.ml-embed-wrap {
  display: flex;
  justify-content: stretch;
  width: 100%;
}

.ml-embed-wrap .ml-form-embedWrapper {
  box-shadow: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 920px) {
  .topbar-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .lang-switch {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 560px) {
  .newsletter-embed-shell {
    padding: 20px;
  }
}


.offers-grid {
  display: grid;
  gap: 24px;
}

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

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

.offer-card {
  padding: 24px;
  display: grid;
  gap: 22px;
  align-content: start;
}

.offer-media {
  min-height: 240px;
}

.offer-copy {
  display: grid;
  gap: 10px;
}

.offer-lead {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.service-card .price-main {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.service-card-note .pricing-actions {
  display: none;
}


/* Mobile refinements */
.service-card .offer-media {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.service-card .offer-media img {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .topbar-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .topbar-actions > .cta {
    width: auto;
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    padding-inline: 16px;
  }

  .lang-switch .lang-link {
    flex: 0 0 auto;
    min-width: 42px;
  }

  .offers-grid-two,
  .offers-grid-three {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .service-card {
    padding: 18px;
    gap: 18px;
  }

  .offer-card .offer-media,
  .service-card .offer-media {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .offer-card .offer-media img,
  .service-card .offer-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
  }

  .offer-card .price-row,
  .service-card .price-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .offer-card .price-sub,
  .service-card .price-sub {
    text-align: left;
    margin-bottom: 0;
  }
}


.middle-east-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 32px;
}

.middle-east-story-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14,14,14,.92), rgba(9,9,9,.9));
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.middle-east-story-label {
  margin: 0 0 14px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}

.middle-east-story-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(255,255,255,.06);
  isolation: isolate;
}

.middle-east-story-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  filter: brightness(.36) saturate(.92);
}

.middle-east-story-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,.05), transparent 20%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.28) 35%, rgba(0,0,0,.62) 68%, rgba(0,0,0,.84) 100%);
}

.middle-east-story-stars,
.middle-east-story-stars::before,
.middle-east-story-stars::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.85) 1px, transparent 1.3px),
    radial-gradient(circle, rgba(239,217,160,.62) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.42) .8px, transparent 1.1px);
  background-size: 150px 150px, 220px 220px, 120px 120px;
  background-position: 0 0, 30px 50px, 90px 24px;
  opacity: .34;
  animation: float 18s linear infinite;
}

.middle-east-story-stars::before {
  opacity: .22;
  animation-duration: 24s;
}

.middle-east-story-stars::after {
  opacity: .14;
  animation-duration: 30s;
}

.middle-east-story-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 24px 24px;
}

.middle-east-story-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}

.middle-east-story-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(210,171,87,.55);
}

.middle-east-story-middle {
  margin-top: auto;
  margin-bottom: 44px;
}

.middle-east-story-middle h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 4vw, 4.5rem);
  line-height: .9;
  letter-spacing: -.03em;
}

.middle-east-story-middle p {
  margin: 0;
  color: var(--muted);
  max-width: 74%;
  font-size: 1.25rem;
  line-height: 1.5;
}

.middle-east-story-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.middle-east-story-mini {
  max-width: 58%;
  color: rgba(246,240,227,.74);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.middle-east-story-cta {
  text-align: right;
  color: var(--gold-soft);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}



@media (max-width: 1180px) {
  .middle-east-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .middle-east-story-grid {
    grid-template-columns: 1fr;
  }
}



.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  flex-shrink: 0;
}

.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-visual-mobile {
  display: none;
}

.visual-frame-mobile-home {
  min-height: 0;
  margin: 18px 0 10px;
}

.visual-frame-mobile-home video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1120px) {
  .hero-visual-mobile {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .hero-visual-mobile {
    display: block;
  }

  .hero-visual.hero-visual-wide {
    display: none;
  }

  .persona-media {
    height: auto;
    min-height: 0;
    padding: 0;
    background: rgba(10, 10, 10, 0.92);
  }

  .persona-media img {
    width: 100%;
    height: auto !important;
    object-fit: contain;
    object-position: center;
  }

  .social-link {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .social-link img {
    width: 20px;
    height: 20px;
  }
}


.sector-note {
  padding: 28px 30px;
}

.sector-intro {
  margin: 0 0 18px;
  line-height: 1.45;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.sector-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255,255,255,0.92);
  line-height: 1.15;
  white-space: normal;
}

.sector-note-meta {
  display: none;
}

@media (max-width: 640px) {
  .sector-note {
    padding: 22px 18px;
  }

  .sector-tags {
    gap: 10px;
  }

  .sector-tags span {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 0.92rem;
  }
}


/* 2026-04 platform refresh */
.mirror-duality {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mirror-card {
  padding: 26px;
  display: grid;
  gap: 22px;
}

.mirror-card-head {
  display: grid;
  gap: 12px;
}

.mirror-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.82;
}

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

.mirror-shot {
  min-height: 260px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mirror-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mirror-shot figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.1), rgba(8, 8, 8, 0.78));
  color: #f4ede2;
  font-size: 0.84rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.mirror-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mirror-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.72;
}

.mirror-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.duality-bridge {
  margin-top: 24px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.duality-bridge-label {
  margin: 0 0 8px;
  color: var(--gold-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.duality-bridge-copy {
  margin: 0;
  max-width: 820px;
  line-height: 1.82;
}

.footer-shell {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.8fr));
  gap: 24px;
}

.footer-brand-block {
  display: grid;
  gap: 12px;
}

.footer-heading {
  margin: 0 0 12px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.footer-nav-stack {
  display: grid;
  gap: 12px;
}

.footer-link {
  color: var(--muted-strong);
  text-decoration: none;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer-link:hover {
  color: var(--gold-soft);
  transform: translateX(2px);
}

.footer-bottom-clean {
  text-align: center;
}

.footer-bottom-clean p {
  margin: 0;
}

@media (max-width: 1100px) {
  .mirror-gallery {
    grid-template-columns: 1fr;
  }

  .mirror-shot {
    min-height: 320px;
  }

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

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .mirror-duality,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .mirror-card {
    padding: 22px;
  }

  .mirror-shot {
    min-height: 280px;
  }
}

.visual-frame-platform {
  min-height: 520px;
}

.visual-frame-platform img {
  object-fit: contain;
  background: #070707;
}

.mirror-gallery-stories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mirror-story-card {
  min-height: 0;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: #080808;
}

.mirror-story-card::before {
  display: none;
}

.mirror-story-card img {
  object-fit: cover;
}

.mirror-story-card figcaption {
  display: none;
}

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

.region-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.region-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.region-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.region-label {
  margin: 0;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

#mlb2-39701946.ml-form-embedContainer .ml-form-embedWrapper {
  background-image: none !important;
  background-color: #0b0b0b !important;
}

@media (max-width: 1180px) {
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .mirror-gallery-stories {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}

@media (max-width: 860px) {
  .region-grid,
  .mirror-gallery-stories {
    grid-template-columns: 1fr;
  }

  .visual-frame-platform {
    min-height: 420px;
  }
}


/* Final cleanup patch */
.platform-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.platform-shot {
  padding: 18px;
  border-radius: 30px;
  overflow: hidden;
}

.platform-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(200, 162, 92, 0.16);
  background: #080808;
}

.platform-shot figcaption {
  margin-top: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.approach-shell {
  display: grid;
  gap: 24px;
}

.approach-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.approach-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(200, 162, 92, 0.22);
  background: rgba(10, 10, 10, 0.72);
  color: var(--text-primary);
  font-weight: 500;
}

.approach-copy.glass {
  padding: clamp(28px, 4vw, 44px);
}

.approach-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.approach-copy p,
.approach-copy li {
  color: rgba(255,255,255,0.8);
}

.approach-copy .feature-list {
  margin-top: 22px;
}

.site-footer {
  scroll-margin-top: 140px;
}

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


.tabs-shell {
  margin-top: 18px;
}

.duality-bridge .cta {
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .tabs-shell {
    margin-top: 14px;
  }
}


.footer-trust {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 4px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.flag-badge {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.footer-trust-copy {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.8;
}

.section-linkedin-cta {
  padding-top: 8px;
  padding-bottom: 26px;
}

.linkedin-cta-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.linkedin-cta-copy {
  margin: 0;
  max-width: 720px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.6;
}

.linkedin-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 14, 13, 0.93), rgba(10, 10, 10, 0.9));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.linkedin-cta-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
}

.linkedin-cta-link img {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(100%, 320px);
  object-fit: contain;
}

@media (max-width: 860px) {
  .footer-trust {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 16px 18px;
  }
}

@media (max-width: 640px) {
  .section-linkedin-cta {
    padding-top: 0;
    padding-bottom: 18px;
  }

  .linkedin-cta-wrap {
    gap: 14px;
  }

  .linkedin-cta-copy {
    font-size: 1rem;
  }

  .linkedin-cta-link {
    width: 100%;
    padding: 16px 18px;
    border-radius: 22px;
  }

  .linkedin-cta-link img {
    height: 32px;
    max-width: 100%;
  }
}
