@font-face {
  font-family: "IRANSansWeb";
  src:
    url("assets/IRANSansWeb_Light.woff2") format("woff2"),
    url("assets/IRANSansWeb_Light.woff") format("woff"),
    url("assets/IRANSansWeb_Light.ttf") format("truetype"),
    url("assets/IRANSansWeb_Light.eot");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansWeb";
  src:
    url("assets/IRANSansWeb_Medium.woff2") format("woff2"),
    url("assets/IRANSansWeb_Medium.woff") format("woff"),
    url("assets/IRANSansWeb_Medium.ttf") format("truetype"),
    url("assets/IRANSansWeb_Medium.eot");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansWeb";
  src:
    url("assets/IRANSansWeb_Bold.woff2") format("woff2"),
    url("assets/IRANSansWeb_Bold.woff") format("woff"),
    url("assets/IRANSansWeb_Bold.ttf") format("truetype"),
    url("assets/IRANSansWeb_Bold.eot");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fbf6ed;
  --paper: #fffdf8;
  --ink: #102033;
  --muted: #647383;
  --green-950: #071f1c;
  --green-900: #0c332d;
  --green-700: #145c4d;
  --navy: #0a1630;
  --gold: #c99d47;
  --gold-soft: #f0dba8;
  --rose: #b96f63;
  --blue: #229ed9;
  --line: rgba(16, 32, 51, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 80px rgba(10, 22, 48, 0.16);
  --shadow-soft: 0 14px 42px rgba(10, 22, 48, 0.09);
  --radius: 8px;
  --radius-lg: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "IRANSansWeb", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(201, 157, 71, 0.16), transparent 30rem),
    radial-gradient(circle at 92% 18%, rgba(20, 92, 77, 0.11), transparent 26rem),
    var(--bg);
  line-height: 1.9;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--green-950);
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(251, 246, 237, 0.78);
  backdrop-filter: blur(22px) saturate(135%);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 34px rgba(10, 22, 48, 0.08);
}

.nav-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(201, 157, 71, 0.54);
  background:
    linear-gradient(145deg, rgba(12, 51, 45, 0.95), rgba(10, 22, 48, 0.95)),
    radial-gradient(circle at 35% 28%, rgba(240, 219, 168, 0.32), transparent 45%);
  box-shadow: 0 16px 34px rgba(10, 22, 48, 0.18);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.brand-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-weight: 900;
  font-size: 0.78rem;
}

.brand-fallback::before,
.brand-fallback::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.brand-fallback::before {
  width: 28px;
  height: 20px;
  top: 12px;
  background: rgba(201, 157, 71, 0.95);
  transform: rotate(-38deg);
}

.brand-fallback::after {
  width: 24px;
  height: 16px;
  bottom: 11px;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.brand-text strong {
  display: block;
  color: var(--green-900);
  font-weight: 900;
  line-height: 1.35;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #354457;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-menu a {
  position: relative;
  padding: 8px 0;
}

.site-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.site-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-note {
  padding: 10px 13px;
  border: 1px solid rgba(12, 51, 45, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  color: var(--green-900);
  font-weight: 900;
  font-size: 0.84rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.78);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 44px;
  padding: 10px 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
  box-shadow: 0 16px 38px rgba(12, 51, 45, 0.24);
}

.btn-gold {
  color: #15110a;
  background: linear-gradient(135deg, #f4dfaa, var(--gold));
  box-shadow: 0 18px 42px rgba(201, 157, 71, 0.24);
}

.btn-glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0;
}

.kicker.dark {
  color: var(--gold);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.35rem, 5.9vw, 5.3rem);
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-900);
  font-size: clamp(1.85rem, 3.25vw, 3.08rem);
  line-height: 1.34;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 900;
}

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

.hero {
  min-height: calc(100vh - 86px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(132deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.96) 58%, rgba(15, 61, 52, 0.96)),
    radial-gradient(circle at 16% 18%, rgba(201, 157, 71, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 62%, rgba(185, 111, 99, 0.16), transparent 24rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 170px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 60px;
  align-items: center;
  padding: 70px 0 104px;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

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

.hero-trust {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.hero-trust span {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.hero-trust b {
  display: block;
  color: var(--gold-soft);
}

.hero-art {
  min-height: 570px;
  display: grid;
  place-items: center;
}

.lux-card {
  width: min(100%, 520px);
  aspect-ratio: 0.92 / 1;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 74% 24%, rgba(240, 219, 168, 0.18), transparent 28%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.lux-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-brand {
  width: 54px;
  height: 54px;
  box-shadow: none;
}

.service-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 219, 168, 0.2);
  animation: orbit 24s linear infinite;
}

.orbit-one {
  inset: 64px;
}

.orbit-two {
  inset: 122px;
  animation-duration: 17s;
  animation-direction: reverse;
}

.service-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
}

.service-lines path {
  stroke: rgba(240, 219, 168, 0.48);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  animation: dashFlow 10s linear infinite;
}

.family-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 50%;
  width: 205px;
  height: 205px;
  display: grid;
  place-items: center;
  place-content: center;
  gap: 8px;
  text-align: center;
  transform: translate(50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(240, 219, 168, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.97), rgba(255, 253, 248, 0.88)),
    radial-gradient(circle at 30% 18%, rgba(201, 157, 71, 0.2), transparent 40%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.family-core strong {
  max-width: 150px;
  color: var(--green-900);
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 900;
}

.family-core small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-node {
  position: absolute;
  z-index: 3;
  min-width: 132px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 253, 248, 0.92);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 22px 44px rgba(10, 22, 48, 0.16);
  backdrop-filter: blur(16px);
  animation: floatY 6.4s ease-in-out infinite;
}

.service-node span {
  display: block;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-node strong {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.node-health {
  top: 42px;
  right: 50%;
  transform: translateX(50%);
}

.node-gift {
  top: 114px;
  left: 34px;
  animation-delay: 0.8s;
}

.node-home {
  right: 30px;
  top: 116px;
  animation-delay: 1.4s;
}

.node-admin {
  bottom: 44px;
  right: 50%;
  transform: translateX(50%);
  animation-delay: 1.8s;
}

.node-shopping {
  left: 34px;
  bottom: 144px;
  animation-delay: 1.1s;
}

.node-urgent {
  right: 34px;
  bottom: 144px;
  animation-delay: 0.4s;
}

.report-chip {
  position: absolute;
  z-index: 5;
  left: 28px;
  right: 28px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.report-chip span {
  color: var(--gold-soft);
  font-weight: 900;
}

.report-chip strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}

.story-grid,
.choice-grid,
.who-grid,
.trust-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 50px;
  align-items: center;
}

.story-grid,
.who-grid,
.trust-grid {
  align-items: stretch;
}

.story-copy p,
.who-copy p,
.who-panel p,
.choice-card p,
.trust-copy p,
.faq-intro p,
.section-head p {
  font-size: 1.04rem;
}

.story-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.72)),
    radial-gradient(circle at 18% 16%, rgba(201, 157, 71, 0.2), transparent 36%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.section-media {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.88), rgba(10, 22, 48, 0.82)),
    radial-gradient(circle at 18% 18%, rgba(201, 157, 71, 0.2), transparent 36%);
  box-shadow: var(--shadow-soft);
}

.section-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.section-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 31, 28, 0.58), transparent 54%);
  pointer-events: none;
}

.section-media figcaption {
  position: absolute;
  right: 18px;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 900;
}

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

.who {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.68), rgba(251, 246, 237, 0.92)),
    radial-gradient(circle at 12% 18%, rgba(185, 111, 99, 0.12), transparent 28rem);
}

.who-grid {
  align-items: stretch;
}

.who-copy {
  padding: 10px 0;
}

.who-panel {
  position: relative;
  display: grid;
  align-content: start;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.95)),
    radial-gradient(circle at 18% 16%, rgba(201, 157, 71, 0.22), transparent 34%);
  box-shadow: var(--shadow);
}



.who-panel span,
.who-panel p {
  position: relative;
  z-index: 2;
}

.who-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.35;
  font-weight: 900;
}

.who-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.who-media {
  z-index: 2;
  min-height: 320px;
  margin-bottom: 24px;
  border-color: rgba(255, 255, 255, 0.16);
}

.story-panel span {
  display: block;
  margin-bottom: 16px;
  color: var(--green-900);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.35;
  font-weight: 900;
}

.story-panel p {
  margin: 0;
}

.social-impact {
  background:
    linear-gradient(180deg, rgba(251, 246, 237, 0.92), rgba(255, 253, 248, 0.9)),
    radial-gradient(circle at 86% 18%, rgba(20, 92, 77, 0.12), transparent 28rem),
    radial-gradient(circle at 14% 82%, rgba(201, 157, 71, 0.12), transparent 30rem);
}

.social-impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 46px;
  align-items: center;
}

.social-impact-copy p:not(.kicker) {
  color: #516374;
  font-size: 1.04rem;
}

.impact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.impact-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(20, 92, 77, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(10, 22, 48, 0.06);
}

.impact-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 157, 71, 0.14);
}

.social-impact-visual {
  position: relative;
}

.impact-media {
  min-height: 430px;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.7);
}

.impact-media::after {
  background:
    linear-gradient(to top, rgba(7, 31, 28, 0.66), transparent 60%),
    linear-gradient(145deg, rgba(10, 22, 48, 0.18), transparent 48%);
}

.impact-badge {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 24px;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(240, 219, 168, 0.98), rgba(201, 157, 71, 0.96)),
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.35), transparent 42%);
  color: var(--green-950);
  text-align: center;
  box-shadow: 0 20px 44px rgba(10, 22, 48, 0.18);
}

.impact-badge strong,
.impact-badge span {
  display: block;
  line-height: 1.45;
}

.impact-badge strong {
  font-size: 1.2rem;
  font-weight: 900;
}

.impact-badge span {
  max-width: 86px;
  font-size: 0.72rem;
  font-weight: 900;
}

.community-network {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(251, 246, 237, 0.88)),
    radial-gradient(circle at 16% 20%, rgba(201, 157, 71, 0.13), transparent 28rem),
    radial-gradient(circle at 84% 68%, rgba(20, 92, 77, 0.12), transparent 30rem);
}

.community-box {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 40px;
  align-items: center;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(201, 157, 71, 0.2);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(255, 253, 248, 0.62)),
    radial-gradient(circle at 12% 18%, rgba(201, 157, 71, 0.16), transparent 34%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.community-copy p:not(.kicker) {
  color: #516374;
  font-size: 1.04rem;
}

.community-visual {
  position: relative;
  min-height: 390px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.96)),
    radial-gradient(circle at 50% 50%, rgba(201, 157, 71, 0.16), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
}

.network-lines path {
  fill: none;
  stroke: rgba(240, 219, 168, 0.34);
  stroke-width: 1.5;
  stroke-dasharray: 8 10;
  animation: dashFlow 10s linear infinite;
}

.network-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
}

.network-node {
  width: 128px;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.node-you {
  top: 38px;
  right: 44px;
}

.node-family {
  top: 38px;
  left: 44px;
}

.node-work {
  right: 42px;
  bottom: 42px;
}

.node-iran {
  left: 42px;
  bottom: 42px;
}

.node-hamyar {
  top: 50%;
  right: 50%;
  width: 156px;
  min-height: 156px;
  padding: 20px;
  border-radius: 50%;
  transform: translate(50%, -50%);
  color: var(--green-950);
  background:
    linear-gradient(145deg, rgba(240, 219, 168, 0.96), rgba(201, 157, 71, 0.96)),
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.3), transparent 42%);
  border-color: rgba(240, 219, 168, 0.5);
  line-height: 1.55;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.voice-story {
  padding-top: 28px;
  background:
    radial-gradient(circle at 80% 12%, rgba(201, 157, 71, 0.16), transparent 26rem),
    linear-gradient(180deg, rgba(251, 246, 237, 0), rgba(255, 253, 248, 0.7) 42%, rgba(251, 246, 237, 0));
}

.voice-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(201, 157, 71, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.76)),
    radial-gradient(circle at 12% 18%, rgba(201, 157, 71, 0.18), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(20, 92, 77, 0.13), transparent 32%);
  box-shadow: var(--shadow);
}

.voice-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(90deg, transparent, rgba(201, 157, 71, 0.18), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 38%);
  pointer-events: none;
}

.voice-copy,
.voice-player-panel {
  position: relative;
  z-index: 2;
}

.voice-copy p:not(.kicker) {
  max-width: 650px;
  color: #46586d;
  font-size: 1.05rem;
}

.voice-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.voice-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(12, 51, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(10, 22, 48, 0.06);
}

.voice-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 157, 71, 0.14);
}

.voice-player-panel {
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 34px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.96)),
    radial-gradient(circle at 50% 28%, rgba(201, 157, 71, 0.28), transparent 34%);
  box-shadow: 0 28px 70px rgba(7, 31, 28, 0.24);
}

.voice-player-panel::before,
.voice-player-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.voice-player-panel::before {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(240, 219, 168, 0.18);
  animation: slowSpin 16s linear infinite;
}

.voice-player-panel::after {
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: slowSpin 22s linear reverse infinite;
}

.voice-orb {
  position: relative;
  z-index: 2;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-soft);
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(20, 92, 77, 0.96), rgba(7, 31, 28, 0.94));
  border: 1px solid rgba(240, 219, 168, 0.34);
  box-shadow:
    inset 0 0 44px rgba(201, 157, 71, 0.12),
    0 24px 46px rgba(0, 0, 0, 0.24);
}

.voice-orb span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 219, 168, 0.26);
  animation: voicePulse 2.9s ease-in-out infinite;
}

.voice-orb span:nth-child(1) {
  inset: -16px;
}

.voice-orb span:nth-child(2) {
  inset: -34px;
  animation-delay: 0.5s;
}

.voice-orb span:nth-child(3) {
  inset: -52px;
  animation-delay: 1s;
}

.voice-orb strong {
  position: relative;
  z-index: 2;
  font-size: 1.35rem;
  font-weight: 900;
}

.voice-wave {
  position: relative;
  z-index: 2;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.voice-wave span {
  width: 8px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  opacity: 0.84;
  animation: waveLift 1.25s ease-in-out infinite;
}

.voice-wave span:nth-child(2) {
  animation-delay: 0.12s;
}

.voice-wave span:nth-child(3) {
  animation-delay: 0.24s;
}

.voice-wave span:nth-child(4) {
  animation-delay: 0.36s;
}

.voice-wave span:nth-child(5) {
  animation-delay: 0.48s;
}

.voice-wave span:nth-child(6) {
  animation-delay: 0.6s;
}

.voice-wave span:nth-child(7) {
  animation-delay: 0.72s;
}

.audio-shell {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.86), rgba(10, 22, 48, 0.78)),
    radial-gradient(circle at 18% 18%, rgba(201, 157, 71, 0.22), transparent 42%),
    url("assets/voice-story-cover.webp") center / cover;
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.18);
}

.audio-shell small,
.audio-shell strong {
  display: block;
}

.audio-shell small {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.audio-shell strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.audio-shell audio {
  width: 100%;
  min-height: 44px;
  filter: sepia(0.12) saturate(0.92);
}

.voice-note {
  position: relative;
  z-index: 3;
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.8;
}

@keyframes slowSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes voicePulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.03);
  }
}

@keyframes waveLift {
  0%,
  100% {
    height: 18px;
    opacity: 0.54;
  }

  50% {
    height: 58px;
    opacity: 1;
  }
}

.section-head {
  max-width: 800px;
  margin: 0 auto 46px;
  text-align: center;
}

.scenarios {
  background:
    linear-gradient(180deg, rgba(251, 246, 237, 0.3), rgba(255, 253, 248, 0.84)),
    radial-gradient(circle at 86% 18%, rgba(20, 92, 77, 0.1), transparent 28rem);
}

.scenario-journey {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(255, 253, 248, 0.58)),
    radial-gradient(circle at 18% 20%, rgba(201, 157, 71, 0.14), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(20, 92, 77, 0.1), transparent 34%);
  box-shadow: var(--shadow-soft);
}

.scenario-message {
  position: relative;
  min-height: 560px;
  display: grid;
  overflow: hidden;
  padding: 18px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.96)),
    radial-gradient(circle at 24% 18%, rgba(201, 157, 71, 0.26), transparent 34%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.scenario-message::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -82px;
  left: -74px;
  border-radius: 50%;
  border: 1px solid rgba(240, 219, 168, 0.18);
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.025);
}

.scenario-message > * {
  position: relative;
  z-index: 2;
}

.chat-window {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(237, 246, 251, 0.96), rgba(226, 238, 243, 0.96)),
    radial-gradient(circle at 22% 18%, rgba(34, 158, 217, 0.14), transparent 32%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.chat-topbar {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #229ed9, #177fbd);
  color: #fff;
}

.chat-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(12, 51, 45, 0.98), rgba(10, 22, 48, 0.96)),
    radial-gradient(circle at 35% 28%, rgba(240, 219, 168, 0.28), transparent 45%);
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-identity strong,
.chat-identity small {
  display: block;
  line-height: 1.45;
}

.chat-identity strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.chat-identity small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
}

.chat-dots {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 0 #fff, 0 -8px 0 #fff;
}

.message-thread {
  position: relative;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(45deg, rgba(34, 158, 217, 0.055) 0 1px, transparent 1px 16px);
}

.chat-day {
  justify-self: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(92, 113, 128, 0.2);
  color: #506172;
  font-size: 0.72rem;
  font-weight: 900;
}

.message-thread p {
  position: relative;
  width: fit-content;
  max-width: 82%;
  margin: 0;
  padding: 10px 12px 20px;
  color: #203047;
  font-size: 0.9rem;
  line-height: 1.8;
  box-shadow: 0 8px 20px rgba(10, 22, 48, 0.08);
}

.message-thread p small {
  position: absolute;
  left: 10px;
  bottom: 4px;
  color: rgba(63, 79, 94, 0.58);
  font-size: 0.66rem;
  line-height: 1;
}

.user-bubble {
  justify-self: end;
  border-radius: 18px 18px 4px 18px;
  background: #d7f7c9;
}

.user-bubble::after,
.hamyar-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 14px;
}

.user-bubble::after {
  right: -5px;
  background: #d7f7c9;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.hamyar-bubble {
  justify-self: start;
  border-radius: 18px 18px 18px 4px;
  background: #fff;
}

.hamyar-bubble::after {
  left: -5px;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.user-bubble small::after {
  content: "✓✓";
  margin-right: 5px;
  color: #229ed9;
  letter-spacing: -2px;
}

.chat-composer {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
}

.chat-composer span {
  flex: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1f5f7;
  color: #82909d;
  font-size: 0.82rem;
  font-weight: 700;
}

.chat-composer i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
}

.chat-composer i::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 14px solid #fff;
  transform: rotate(4deg);
}

.scenario-path {
  position: relative;
  display: grid;
  align-content: center;
  gap: 0;
  padding: 20px 8px 20px 0;
}

.scenario-path::before {
  content: "";
  position: absolute;
  top: 64px;
  bottom: 96px;
  right: 26px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(201, 157, 71, 0.18), rgba(20, 92, 77, 0.45), rgba(201, 157, 71, 0.18));
}

.scenario-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 18px 20px 18px 0;
}

.scenario-step > span {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 157, 71, 0.34);
  background: var(--paper);
  color: var(--gold);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(10, 22, 48, 0.1);
}

.scenario-step h3 {
  margin: 0 0 6px;
  color: var(--green-900);
  font-size: 1.08rem;
}

.scenario-step p {
  max-width: 620px;
  margin: 0;
  color: #5a6a7b;
  font-size: 0.96rem;
  line-height: 1.9;
}

.scenario-link {
  width: fit-content;
  margin: 18px 70px 0 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(10, 22, 48, 0.14);
  transition: transform 0.25s ease, background 0.25s ease;
}

.scenario-link:hover {
  transform: translateY(-2px);
  background: var(--green-700);
}

.promise,
.process,
.plans,
.faq {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.55), rgba(251, 246, 237, 0.86));
}

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

.promise-card,
.service-card,
.plan,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.promise-card {
  min-height: 255px;
  padding: 28px;
}

.promise-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 1.18rem;
  font-weight: 900;
}

.promise-card p,
.service-card p,
.service-feature p,
.step p,
.plan p,
details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services,
.payment,
.final-cta {
  background: var(--paper);
}

.service-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.service-feature {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(12, 51, 45, 0.96), rgba(10, 22, 48, 0.94)),
    radial-gradient(circle at 22% 18%, rgba(201, 157, 71, 0.18), transparent 38%);
  box-shadow: var(--shadow);
}

.service-feature::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  left: -70px;
  bottom: -72px;
  border-radius: 50%;
  border: 1px solid rgba(240, 219, 168, 0.2);
}

.service-feature span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-feature h3 {
  color: #fff;
}

.service-feature p {
  color: rgba(255, 255, 255, 0.76);
}

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

.service-card {
  min-height: 205px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 157, 71, 0.46);
  box-shadow: var(--shadow);
}

.gift-moments {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(251, 246, 237, 0.9)),
    radial-gradient(circle at 16% 24%, rgba(185, 111, 99, 0.13), transparent 28rem),
    radial-gradient(circle at 86% 62%, rgba(201, 157, 71, 0.16), transparent 26rem);
}

.gift-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.gift-showcase {
  min-height: 560px;
  border-radius: 34px;
  border-color: rgba(255, 255, 255, 0.7);
}

.gift-showcase img {
  position: absolute;
  inset: 0;
}

.gift-showcase::after {
  background:
    linear-gradient(to top, rgba(7, 31, 28, 0.7), transparent 58%),
    linear-gradient(145deg, rgba(10, 22, 48, 0.36), transparent 48%);
}

.gift-copy p {
  font-size: 1.04rem;
}

.gift-copy .btn {
  margin-top: 14px;
}

.gift-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 8px;
}

.gift-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.76);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(10, 22, 48, 0.06);
}

.gift-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(185, 111, 99, 0.12);
  flex: 0 0 auto;
}

.gift-tags {
  position: absolute;
  right: 22px;
  left: 22px;
  top: 22px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gift-tags span {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.choice {
  background:
    linear-gradient(180deg, rgba(251, 246, 237, 0.66), rgba(255, 253, 248, 0.94)),
    radial-gradient(circle at 10% 18%, rgba(20, 92, 77, 0.09), transparent 28rem);
}

.choice-card {
  padding: 10px 0;
}

.choice-list,
.trust-list {
  display: grid;
  gap: 13px;
}

.choice-list span,
.trust-list span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-weight: 900;
}

.choice-list span::before,
.trust-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 157, 71, 0.14);
  flex: 0 0 auto;
}

.stores {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper), rgba(251, 246, 237, 0.92)),
    radial-gradient(circle at 85% 30%, rgba(201, 157, 71, 0.14), transparent 26rem);
}

.stores-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: stretch;
}

.stores-visual {
  min-height: 540px;
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.95)),
    radial-gradient(circle at 24% 20%, rgba(201, 157, 71, 0.22), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stores-visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.38;
  filter: saturate(0.9) contrast(1.04);
}

.stores-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.store-orbit {
  position: absolute;
  z-index: 1;
  inset: 86px;
  border-radius: 50%;
  border: 1px solid rgba(240, 219, 168, 0.28);
  animation: orbit 20s linear infinite;
}

.store-center {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 210px;
  height: 210px;
  display: grid;
  place-content: center;
  text-align: center;
  transform: translate(50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(240, 219, 168, 0.42);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

.store-center strong {
  color: var(--green-900);
  font-size: 1.35rem;
  font-weight: 900;
}

.store-center small {
  color: var(--muted);
  font-weight: 900;
}

.store-pill {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  animation: floatY 6s ease-in-out infinite;
}

.pill-one {
  top: 64px;
  right: 56px;
}

.pill-two {
  top: 112px;
  left: 46px;
  animation-delay: 0.8s;
}

.pill-three {
  right: 38px;
  bottom: 92px;
  animation-delay: 1.2s;
}

.pill-four {
  left: 58px;
  bottom: 62px;
  animation-delay: 1.7s;
}

.stores-copy {
  padding: 10px 0;
  align-self: start;
}

.stores-copy p {
  font-size: 1.04rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow-soft);
}

.step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
  border: 4px solid var(--gold-soft);
  font-weight: 900;
}

.trust {
  background: var(--paper);
}

.trust-media {
  display: grid;
  gap: 16px;
  align-self: start;
}

.trust-photo {
  min-height: 360px;
  height: clamp(360px, 34vw, 460px);
}

.independent {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(251, 246, 237, 0.86)),
    radial-gradient(circle at 18% 26%, rgba(201, 157, 71, 0.12), transparent 26rem);
}

.independent-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(201, 157, 71, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.72)),
    radial-gradient(circle at 88% 18%, rgba(20, 92, 77, 0.12), transparent 34%);
  box-shadow: var(--shadow-soft);
}

.independent-mark {
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.96)),
    radial-gradient(circle at 32% 24%, rgba(201, 157, 71, 0.22), transparent 40%);
  border: 1px solid rgba(201, 157, 71, 0.42);
  box-shadow: 0 22px 46px rgba(10, 22, 48, 0.16);
}

.gold-alert {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(240, 219, 168, 0.98), rgba(201, 157, 71, 0.98)),
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.34), transparent 42%);
  color: var(--green-950);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 900;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    0 18px 34px rgba(201, 157, 71, 0.24);
}

.independent-copy {
  max-width: 860px;
}

.independent-copy p:not(.kicker) {
  margin: 0;
  color: #526476;
  font-size: 1.04rem;
}

.vetted-care {
  background:
    linear-gradient(180deg, rgba(251, 246, 237, 0.86), rgba(255, 253, 248, 0.96)),
    radial-gradient(circle at 12% 24%, rgba(20, 92, 77, 0.1), transparent 28rem);
}

.vetted-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 50px;
  align-items: stretch;
}

.vetted-copy {
  align-self: start;
}

.vetted-copy p {
  font-size: 1.04rem;
}

.vetted-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.95)),
    radial-gradient(circle at 18% 20%, rgba(201, 157, 71, 0.22), transparent 36%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.vetted-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vetted-ring {
  position: relative;
  z-index: 2;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(240, 219, 168, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.vetted-ring::before,
.vetted-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.vetted-ring::before {
  inset: 18px;
  border: 1px dashed rgba(240, 219, 168, 0.42);
  animation: orbit 18s linear infinite;
}

.vetted-ring::after {
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 42px rgba(201, 157, 71, 0.24);
}

.vetted-ring span {
  position: relative;
  z-index: 2;
  color: var(--green-950);
  font-size: 1.2rem;
  font-weight: 900;
}

.vetted-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.vetted-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.vetted-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 6px rgba(240, 219, 168, 0.12);
  flex: 0 0 auto;
}

.urgent-box {
  max-width: 1030px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 30px;
  align-items: stretch;
  padding: 46px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.96)),
    radial-gradient(circle at 18% 20%, rgba(201, 157, 71, 0.24), transparent 34%);
  box-shadow: var(--shadow);
}

.urgent-content {
  align-self: start;
}

.urgent-box h2,
.final-box h2 {
  color: #fff;
}

.urgent-box p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
}

.urgent-box strong {
  display: block;
  max-width: 850px;
  color: var(--gold-soft);
  font-size: 1.05rem;
}

.urgent-media {
  min-height: 430px;
  height: 100%;
  align-self: stretch;
  border-color: rgba(255, 255, 255, 0.18);
}

.urgent-media img {
  opacity: 0.9;
}

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

.payment-grid span {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #fbf0dd);
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-weight: 900;
}

.payment-grid span:last-child {
  grid-column: span 2;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.plan {
  min-height: 214px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.plan::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-700));
}

.plan.accent {
  background:
    linear-gradient(145deg, rgba(12, 51, 45, 0.96), rgba(10, 22, 48, 0.94)),
    radial-gradient(circle at 18% 18%, rgba(201, 157, 71, 0.18), transparent 34%);
}

.plan.accent h3,
.plan.accent p {
  color: #fff;
}

.audience {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(251, 246, 237, 0.94)),
    radial-gradient(circle at 78% 22%, rgba(201, 157, 71, 0.13), transparent 28rem),
    radial-gradient(circle at 12% 72%, rgba(20, 92, 77, 0.1), transparent 30rem);
}

.audience-wrap {
  display: grid;
  gap: 36px;
}

.audience-intro {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.audience-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: center;
}

.audience-stage::before {
  content: "";
  position: absolute;
  inset: 48px 18%;
  border-radius: 999px;
  border: 1px solid rgba(201, 157, 71, 0.16);
  transform: rotate(-7deg);
  pointer-events: none;
}

.audience-center {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(246, 238, 221, 0.78)),
    radial-gradient(circle at 20% 14%, rgba(201, 157, 71, 0.22), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(20, 92, 77, 0.14), transparent 38%);
  color: var(--ink);
  border: 1px solid rgba(201, 157, 71, 0.22);
  box-shadow: var(--shadow);
}

.audience-center::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(12, 51, 45, 0.08);
  pointer-events: none;
}

.audience-center > * {
  position: relative;
  z-index: 2;
}

.audience-route {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 54px 120px 54px 1fr;
  align-items: center;
  gap: 0;
  direction: ltr;
}

.route-point {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-900);
  text-align: center;
  font-weight: 900;
  line-height: 1.5;
  box-shadow: 0 14px 34px rgba(10, 22, 48, 0.08);
}

.route-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 157, 71, 0.18), rgba(20, 92, 77, 0.7), rgba(201, 157, 71, 0.18));
}

.route-core {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.96)),
    radial-gradient(circle at 32% 22%, rgba(201, 157, 71, 0.26), transparent 38%);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 157, 71, 0.4);
  box-shadow:
    0 22px 46px rgba(10, 22, 48, 0.18),
    0 0 0 14px rgba(20, 92, 77, 0.08);
}

.route-core::before,
.route-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 157, 71, 0.22);
}

.route-core::before {
  inset: -18px;
}

.route-core::after {
  inset: -34px;
  border-color: rgba(20, 92, 77, 0.14);
}

.route-core img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

.route-core b {
  position: absolute;
  bottom: 20px;
  font-size: 0.78rem;
  font-weight: 900;
}

.audience-center-copy {
  max-width: 430px;
  display: grid;
  gap: 16px;
}

.audience-center-copy span {
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(12, 51, 45, 0.08);
  color: var(--green-900);
  font-size: 0.86rem;
  font-weight: 900;
}

.audience-center-copy strong {
  max-width: 360px;
  color: var(--green-900);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.45;
}

.audience-center-copy p {
  max-width: 410px;
  margin: 0;
  color: #536577;
}

.audience-notes {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.audience-note {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 14px 18px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 999px 18px 18px 999px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 16px 36px rgba(10, 22, 48, 0.08);
  backdrop-filter: blur(14px);
}

.audience-note:nth-child(even) {
  margin-right: 46px;
  border-radius: 18px 999px 999px 18px;
  background: rgba(255, 255, 255, 0.72);
}

.audience-note:nth-child(3) {
  margin-left: 34px;
}

.audience-note small {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-soft);
  font-weight: 900;
}

.audience-note p {
  margin: 0;
  color: #435365;
  font-size: 0.96rem;
  line-height: 1.8;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.socials {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(251, 246, 237, 0.92)),
    radial-gradient(circle at 18% 18%, rgba(34, 158, 217, 0.1), transparent 26rem);
}

.socials-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.96)),
    radial-gradient(circle at 18% 20%, rgba(201, 157, 71, 0.2), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.socials-copy h2 {
  color: #fff;
}

.socials-copy p:not(.kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.social-cards {
  display: grid;
  gap: 12px;
}

.social-card {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 219, 168, 0.28);
}

.social-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex: 0 0 auto;
  color: #fff;
  line-height: 0;
}

.instagram-card .social-icon {
  background: linear-gradient(135deg, #feda75, #d62976 54%, #4f5bd5);
}

.x-card .social-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.facebook-card .social-icon {
  background: linear-gradient(135deg, #1877f2, #0a3f91);
}

.social-icon svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: currentColor;
}

.social-card small,
.social-card strong {
  display: block;
  line-height: 1.45;
}

.social-card small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.social-card strong {
  color: var(--gold-soft);
  font-weight: 900;
  overflow-wrap: anywhere;
}

details {
  overflow: hidden;
}

summary {
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: left;
  color: var(--gold);
  font-size: 1.25rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 22px 20px;
}

.final-box {
  max-width: 980px;
  padding: 54px;
  border-radius: 30px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.96)),
    radial-gradient(circle at 12% 14%, rgba(201, 157, 71, 0.24), transparent 34%);
  box-shadow: var(--shadow);
}

.final-box p {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.76);
}

.final-actions {
  justify-content: center;
}

.final-box small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 42px 0;
  background:
    linear-gradient(135deg, rgba(7, 31, 28, 1), rgba(10, 22, 48, 0.98)),
    radial-gradient(circle at 16% 20%, rgba(201, 157, 71, 0.16), transparent 30%);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small {
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-self: end;
  width: min(100%, 520px);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 900;
  overflow-wrap: anywhere;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-contact-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(240, 219, 168, 0.28);
}

.footer-icon {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  place-items: center;
  border-radius: 50%;
  background: rgba(240, 219, 168, 0.14);
  color: var(--gold-soft);
  flex: 0 0 auto;
  line-height: 0;
  display: flex !important;
}

.footer-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}

.footer-instagram .footer-icon {
  background: linear-gradient(135deg, #feda75, #d62976 54%, #4f5bd5);
  color: #fff;
}

.footer-x .footer-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-facebook .footer-icon {
  background: linear-gradient(135deg, #1877f2, #0a3f91);
  color: #fff;
}

.footer-contact-link small,
.footer-contact-link strong {
  display: block;
  line-height: 1.45;
}

.footer-contact-link small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.footer-contact-link strong {
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.footer-links span {
  display: block;
  padding: 4px 2px 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 16px rgba(201, 157, 71, 0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -170;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1140px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    direction: ltr;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    direction: rtl;
  }

  .brand {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    direction: rtl;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    direction: rtl;
  }

  .site-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    min-height: 100vh;
    display: grid;
    align-content: center;
    justify-content: center;
    gap: 12px;
    padding: 96px 28px 36px;
    background:
      linear-gradient(145deg, rgba(7, 31, 28, 0.98), rgba(10, 22, 48, 0.97)),
      radial-gradient(circle at 18% 18%, rgba(201, 157, 71, 0.18), transparent 36%);
    color: #fff;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .site-menu a {
    min-width: min(420px, calc(100vw - 56px));
    padding: 15px 18px;
    border-radius: 999px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.05rem;
  }

  .site-menu a:hover {
    background: rgba(255, 255, 255, 0.13);
  }

  .site-menu a::after {
    display: none;
  }

  body.menu-open .site-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .menu-toggle {
    position: relative;
    z-index: 102;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
  }

  body.menu-open .menu-toggle span {
    background: #fff;
  }

  .hero-grid,
  .voice-card,
  .story-grid,
  .choice-grid,
  .who-grid,
  .social-impact-grid,
  .gift-grid,
  .stores-grid,
  .vetted-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .voice-player-panel {
    min-height: 360px;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .gift-showcase {
    min-height: 430px;
  }

  .promise-grid,
  .service-feature-row,
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .urgent-box {
    grid-template-columns: 1fr;
  }

  .socials-box {
    grid-template-columns: 1fr;
  }

  .community-box {
    grid-template-columns: 1fr;
  }

  .scenario-journey {
    grid-template-columns: 1fr;
  }

  .audience-stage {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .independent-box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .audience-center {
    min-height: 330px;
  }

  .audience-note:nth-child(even),
  .audience-note:nth-child(3) {
    margin-inline: 0;
  }

  .scenario-message {
    min-height: 420px;
  }

  .vetted-card {
    grid-template-columns: 1fr;
  }

  .vetted-ring {
    justify-self: center;
    width: 150px;
    height: 150px;
  }

  .urgent-media {
    min-height: 330px;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .kicker {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy,
  .story-copy,
  .voice-copy,
  .who-copy,
  .social-impact-copy,
  .community-copy,
  .choice-card,
  .stores-copy,
  .trust-copy,
  .independent-copy,
  .vetted-copy,
  .urgent-content,
  .faq-intro,
  .socials-copy,
  .final-box {
    text-align: center;
  }

  .hero-lead,
  .voice-copy p:not(.kicker),
  .social-impact-copy p:not(.kicker),
  .community-copy p:not(.kicker),
  .stores-copy p,
  .trust-copy p,
  .independent-copy p:not(.kicker),
  .vetted-copy p,
  .urgent-content p,
  .urgent-content strong,
  .faq-intro p,
  .socials-copy p:not(.kicker),
  .final-box p {
    margin-inline: auto;
  }

  .nav-shell {
    min-height: 74px;
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-text small {
    max-width: 156px;
  }

  .site-menu {
    top: 0;
    inset-inline: 0;
  }

  .nav-note,
  .nav-cta .btn {
    display: none;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.88rem;
  }

  .hero-grid {
    padding: 48px 0 86px;
    gap: 36px;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
  }

  .hero-trust,
  .promise-grid,
  .service-feature-row,
  .service-grid,
  .timeline,
  .payment-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust span {
    min-height: auto;
  }

  .hero-art {
    min-height: 380px;
  }

  .lux-card {
    border-radius: 24px;
  }

  .orbit-one {
    inset: 58px;
  }

  .orbit-two {
    inset: 104px;
  }

  .family-core {
    width: 152px;
    height: 152px;
  }

  .mini-brand {
    width: 44px;
    height: 44px;
  }

  .family-core strong {
    max-width: 124px;
    font-size: 0.92rem;
  }

  .family-core small {
    font-size: 0.72rem;
  }

  .service-node {
    min-width: 102px;
    padding: 8px 9px;
  }

  .service-node span {
    font-size: 0.7rem;
  }

  .service-node strong {
    font-size: 0.82rem;
  }

  .node-health {
    top: 26px;
  }

  .node-gift {
    top: 92px;
    left: 12px;
  }

  .node-home {
    top: 92px;
    right: 12px;
  }

  .node-shopping {
    left: 14px;
    bottom: 120px;
  }

  .node-urgent {
    right: 14px;
    bottom: 120px;
  }

  .node-admin {
    bottom: 34px;
  }

  .report-chip {
    display: none;
  }

  .story-panel,
  .voice-card,
  .who-panel,
  .audience-center,
  .independent-box,
  .vetted-card,
  .socials-box,
  .urgent-box,
  .final-box {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .voice-story {
    padding-top: 10px;
  }

  .voice-card {
    gap: 28px;
  }

  .voice-player-panel {
    min-height: 330px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .voice-player-panel::before {
    width: 280px;
    height: 280px;
  }

  .voice-player-panel::after {
    width: 178px;
    height: 178px;
  }

  .voice-orb {
    width: 112px;
    height: 112px;
  }

  .voice-orb strong {
    font-size: 1.08rem;
  }

  .voice-orb span:nth-child(1) {
    inset: -12px;
  }

  .voice-orb span:nth-child(2) {
    inset: -25px;
  }

  .voice-orb span:nth-child(3) {
    inset: -38px;
  }

  .voice-wave {
    height: 48px;
  }

  .voice-wave span {
    width: 7px;
  }

  .audio-shell {
    padding: 15px;
    border-radius: 17px;
  }

  .voice-points {
    display: grid;
  }

  .impact-media {
    min-height: 330px;
    border-radius: 24px;
  }

  .impact-badge {
    width: 104px;
    height: 104px;
    top: 18px;
    right: 18px;
  }

  .impact-points {
    display: grid;
  }

  .community-box {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .community-visual {
    min-height: 340px;
    border-radius: 22px;
  }

  .network-node {
    width: 108px;
    min-height: 50px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .node-hamyar {
    width: 126px;
    min-height: 126px;
    font-size: 0.9rem;
  }

  .node-you {
    top: 24px;
    right: 18px;
  }

  .node-family {
    top: 24px;
    left: 18px;
  }

  .node-work {
    right: 18px;
    bottom: 24px;
  }

  .node-iran {
    left: 18px;
    bottom: 24px;
  }

  .scenario-journey {
    padding: 12px;
    border-radius: 24px;
  }

  .scenario-message {
    min-height: auto;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .message-thread p {
    max-width: 96%;
    font-size: 0.9rem;
  }

  .scenario-path {
    padding: 10px 0 4px;
  }

  .scenario-path::before {
    right: 20px;
    top: 44px;
    bottom: 82px;
  }

  .scenario-step {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .scenario-step > span {
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
  }

  .scenario-link {
    width: 100%;
    margin: 16px 0 0;
    text-align: center;
  }

  .audience-wrap {
    gap: 28px;
  }

  .audience-stage::before {
    display: none;
  }

  .audience-center {
    min-height: auto;
    border-radius: 22px;
  }

  .audience-center::before {
    inset: 12px;
    border-radius: 18px;
  }

  .audience-route {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    direction: rtl;
  }

  .route-line {
    width: 2px;
    height: 30px;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(201, 157, 71, 0.18), rgba(20, 92, 77, 0.7), rgba(201, 157, 71, 0.18));
  }

  .route-core {
    width: 104px;
    height: 104px;
  }

  .route-core::after {
    display: none;
  }

  .route-point {
    min-height: auto;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .audience-center-copy strong {
    font-size: 1.45rem;
  }

  .audience-note {
    min-height: auto;
    grid-template-columns: 38px 1fr;
    align-items: start;
    padding: 16px 14px;
    border-radius: 20px;
  }

  .audience-note:nth-child(even) {
    border-radius: 20px;
  }

  .audience-note small {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .audience-note p {
    font-size: 0.9rem;
  }

  .independent-mark {
    width: 112px;
    height: 112px;
  }

  .social-card {
    min-height: 70px;
    border-radius: 18px;
  }

  .vetted-ring {
    width: 138px;
    height: 138px;
  }

  .section-media {
    min-height: 230px;
    border-radius: 18px;
  }

  .story-media,
  .who-media,
  .trust-photo,
  .urgent-media {
    min-height: 230px;
  }

  .stores-visual {
    min-height: 360px;
    border-radius: 24px;
  }

  .store-orbit {
    inset: 70px;
  }

  .gift-showcase {
    order: 2;
    min-height: 330px;
    border-radius: 24px;
  }

  .gift-copy {
    order: 1;
  }

  .gift-tags {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .gift-tags span {
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .store-center {
    width: 146px;
    height: 146px;
  }

  .store-center strong {
    font-size: 1.05rem;
  }

  .store-center small {
    font-size: 0.76rem;
  }

  .store-pill {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .pill-one {
    top: 24px;
    right: 50%;
    transform: translateX(50%);
  }

  .pill-two {
    top: 92px;
    left: 14px;
  }

  .pill-three {
    right: 14px;
    bottom: 92px;
  }

  .pill-four {
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
  }

  .vetted-card::before {
    display: none;
  }

  .vetted-card {
    gap: 18px;
  }

  .vetted-ring {
    width: 118px;
    height: 118px;
  }

  .vetted-ring::before {
    inset: 12px;
  }

  .vetted-ring::after {
    width: 54px;
    height: 54px;
  }

  .vetted-ring span {
    font-size: 0.98rem;
  }

  .vetted-list span {
    min-height: auto;
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .service-feature {
    min-height: auto;
    padding: 26px;
  }

  .service-card,
  .promise-card,
  .step,
  .plan {
    min-height: auto;
  }

  .payment-grid span:last-child {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-brand .brand-text strong,
  .footer-brand .brand-text small {
    text-align: center;
  }

  .footer-links {
    width: 100%;
    justify-self: stretch;
  }

  .footer-contact-link {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 58px;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .footer-links span {
    text-align: center;
  }
}

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

  .hero-art {
    min-height: 320px;
  }

  .voice-card {
    padding: 24px 16px;
  }

  .voice-player-panel {
    min-height: 306px;
  }

  .voice-orb {
    width: 96px;
    height: 96px;
  }

  .voice-orb span:nth-child(3) {
    display: none;
  }

  .voice-note {
    font-size: 0.78rem;
  }

  .scenario-step {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .scenario-step > span {
    width: 36px;
    height: 36px;
    font-size: 0.76rem;
  }

  .scenario-step h3 {
    font-size: 0.98rem;
  }

  .scenario-step p {
    font-size: 0.88rem;
  }

  .scenario-eyebrow {
    font-size: 0.78rem;
  }

  .route-core {
    width: 92px;
    height: 92px;
  }

  .route-core img {
    width: 52px;
    height: 52px;
  }

  .route-core b {
    bottom: 16px;
    font-size: 0.7rem;
  }

  .audience-center-copy strong {
    font-size: 1.26rem;
  }

  .community-visual {
    min-height: 310px;
  }

  .network-node {
    width: 96px;
    min-height: 46px;
    font-size: 0.7rem;
  }

  .node-hamyar {
    width: 108px;
    min-height: 108px;
    padding: 14px;
    font-size: 0.78rem;
  }

  .family-core {
    width: 136px;
    height: 136px;
  }

  .family-core .mini-brand {
    width: 38px;
    height: 38px;
  }

  .family-core strong {
    max-width: 112px;
    font-size: 0.84rem;
  }

  .service-node {
    min-width: 92px;
    padding: 7px 8px;
  }

  .service-node span {
    font-size: 0.66rem;
  }

  .service-node strong {
    font-size: 0.76rem;
  }

  .node-gift {
    left: 6px;
  }

  .node-home {
    right: 6px;
  }

  .node-shopping {
    left: 8px;
  }

  .node-urgent {
    right: 8px;
  }

  .stores-visual {
    min-height: 320px;
  }

  .store-orbit {
    inset: 56px;
  }

  .store-center {
    width: 124px;
    height: 124px;
  }

  .store-center strong {
    font-size: 0.9rem;
  }

  .store-center small {
    font-size: 0.68rem;
  }

  .store-pill {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .pill-two {
    top: 82px;
    left: 8px;
  }

  .pill-three {
    right: 8px;
    bottom: 82px;
  }

  .vetted-ring {
    width: 104px;
    height: 104px;
  }

  .vetted-ring::after {
    width: 48px;
    height: 48px;
  }

  .vetted-list span {
    font-size: 0.84rem;
  }
}
