:root {
  --black: #030303;
  --black-2: #080705;
  --panel: rgba(7, 7, 6, 0.88);
  --panel-soft: rgba(17, 14, 9, 0.72);
  --gold: #dca638;
  --gold-2: #ffe39a;
  --gold-3: #8e6216;
  --cream: #fff7e8;
  --muted: #d8ccb4;
  --muted-2: #9b907d;
  --line: rgba(220, 166, 56, 0.48);
  --pink: #ff5b9f;
  --green: #56d889;
  --violet: #a277ff;
  --max: 1460px;
  --shadow: 0 24px 68px rgba(0, 0, 0, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 218, 123, 0.15), transparent 30%),
    radial-gradient(circle at 48% 28%, rgba(220, 166, 56, 0.1), transparent 34%),
    linear-gradient(180deg, #050505 0%, #090705 48%, #030303 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(220, 166, 56, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 166, 56, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 82%);
}

body::after {
  z-index: -1;
  background:
    repeating-linear-gradient(155deg, transparent 0 32px, rgba(255, 211, 116, 0.07) 33px, transparent 34px),
    radial-gradient(ellipse at 72% 24%, rgba(228, 170, 54, 0.16), transparent 38%);
  opacity: 0.74;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 90;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--gold-2);
  color: #090704;
  padding: 10px 14px;
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(220, 166, 56, 0.24);
  background: rgba(4, 4, 4, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
}

.brand,
.nav-menu,
.nav-links,
.nav-actions,
.hero-actions,
.language-switch,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 90, 162, 0.28);
}

.brand strong {
  color: #fff;
  font-size: 1.32rem;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand b {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-divider {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.nav-menu {
  justify-content: space-between;
  min-width: 0;
  gap: 18px;
}

.nav-links {
  justify-content: center;
  gap: clamp(18px, 2.9vw, 42px);
  min-width: 0;
  margin-left: 12px;
  color: #f1ecdf;
  font-size: 0.95rem;
  font-weight: 760;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

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

.nav-actions {
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.language-switch button {
  min-width: 66px;
  min-height: 42px;
  border: 0;
  border-right: 1px solid rgba(220, 166, 56, 0.24);
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button[aria-pressed="true"] {
  color: var(--gold-2);
  background: rgba(220, 166, 56, 0.15);
}

.compact-language,
.menu-toggle {
  display: none;
}

.nav-cta,
.btn,
.path-card a,
.mobile-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 950;
  white-space: nowrap;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.nav-cta-primary,
.btn-primary,
.mobile-action-bar a:first-child {
  color: #120c03;
  border-color: rgba(255, 225, 138, 0.86);
  background: linear-gradient(180deg, #ffe69d 0%, #dfa83a 56%, #9f701a 100%);
  box-shadow: 0 14px 34px rgba(220, 166, 56, 0.3);
}

.nav-cta-secondary,
.btn-secondary,
.path-card a,
.mobile-action-bar a:last-child {
  color: #fff5dd;
  background: rgba(8, 8, 7, 0.78);
}

.nav-cta:hover,
.btn:hover,
.path-card a:hover {
  transform: translateY(-1px);
}

main {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.43fr) minmax(620px, 0.57fr);
  gap: clamp(18px, 2.4vw, 34px);
  width: min(var(--max), calc(100% - 48px));
  min-height: 462px;
  margin: 0 auto;
  padding: 18px 0 8px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 61% 28%, rgba(251, 195, 73, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent 52%, rgba(0, 0, 0, 0.24));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 166, 56, 0.66), transparent);
}

.hero-copy {
  position: relative;
  z-index: 8;
  align-self: center;
  padding: 8px 0 18px 6px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--gold-2);
  background: rgba(8, 8, 7, 0.68);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 220, 129, 0.78);
}

h1 {
  max-width: 610px;
  margin-bottom: 14px;
  color: #fff9eb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 4.15vw, 4.45rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.62);
}

h1 .gold {
  color: var(--gold);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 16px;
  color: #efe5cf;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.66;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.btn {
  min-width: 240px;
  min-height: 54px;
  font-size: 1.05rem;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}

.benefit-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(220, 166, 56, 0.34);
  border-radius: 999px;
  padding: 0 12px;
  color: #f5ead3;
  background: rgba(11, 11, 9, 0.78);
  font-size: 0.8rem;
  font-weight: 830;
  text-align: center;
}

.hero-stage {
  position: relative;
  z-index: 3;
  min-height: 438px;
  overflow: visible;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-stage::before {
  inset: 5px -20px 20px -110px;
  border: 1px solid rgba(220, 166, 56, 0.25);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.hero-stage::after {
  left: -90px;
  right: -4px;
  bottom: -8px;
  height: 162px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86)),
    repeating-linear-gradient(168deg, transparent 0 20px, rgba(220, 166, 56, 0.15) 21px, transparent 22px);
}

.global-network {
  position: absolute;
  top: 0;
  right: -8px;
  z-index: 1;
  width: min(40vw, 540px);
  max-width: none;
  opacity: 0.98;
  filter: drop-shadow(0 0 28px rgba(220, 166, 56, 0.38));
}

.agent-hero {
  position: absolute;
  z-index: 3;
  left: 6px;
  bottom: -108px;
  width: clamp(350px, 26vw, 395px);
  max-width: none;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.68));
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 93%, transparent 100%);
}

.profile-card {
  position: absolute;
  z-index: 4;
  width: 110px;
  min-height: 148px;
  border: 1px solid rgba(220, 166, 56, 0.82);
  border-radius: 8px;
  padding: 10px 9px;
  background:
    linear-gradient(180deg, rgba(20, 16, 11, 0.95), rgba(7, 7, 6, 0.91)),
    linear-gradient(135deg, rgba(255, 91, 159, 0.24), transparent);
  box-shadow: var(--shadow);
  transform: rotate(8deg);
}

.profile-card::before {
  content: "";
  display: block;
  width: 66px;
  height: 66px;
  margin: 0 auto 10px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  background-image: url("assets/hungama-live-community.png");
  background-size: 214px 101px;
  background-position: 0 0;
  box-shadow: 0 0 22px rgba(255, 91, 159, 0.5);
}

.profile-card span {
  display: inline-flex;
  margin-bottom: 4px;
  border-radius: 999px;
  padding: 2px 6px;
  color: #fff;
  background: #e73535;
  font-size: 0.58rem;
  font-weight: 950;
}

.profile-card strong,
.profile-card small {
  display: block;
  text-align: center;
}

.profile-card strong {
  color: #fff;
  font-size: 0.86rem;
}

.profile-card small {
  color: var(--muted);
  font-size: 0.68rem;
}

.profile-card-one {
  right: 350px;
  top: 186px;
}

.profile-card-two {
  right: 236px;
  top: 202px;
  transform: rotate(5deg);
}

.profile-card-two::before {
  border-color: var(--green);
  background-position: -70px 0;
  box-shadow: 0 0 22px rgba(86, 216, 137, 0.48);
}

.profile-card-three {
  right: 122px;
  top: 218px;
  transform: rotate(8deg);
}

.profile-card-three::before {
  border-color: var(--violet);
  background-position: -139px 0;
  box-shadow: 0 0 22px rgba(162, 119, 255, 0.48);
}

.profile-card-four {
  right: 8px;
  top: 242px;
  transform: rotate(7deg);
}

.profile-card-four::before {
  border-color: var(--green);
  background-position: -1px 0;
  box-shadow: 0 0 22px rgba(86, 216, 137, 0.48);
}

.network-callout {
  position: absolute;
  right: 16px;
  bottom: 24px;
  z-index: 5;
  width: min(420px, 58%);
  border: 1px solid rgba(220, 166, 56, 0.52);
  border-radius: 8px;
  padding: 18px 20px 18px 72px;
  background: rgba(6, 6, 5, 0.9);
  box-shadow: var(--shadow);
}

.network-callout::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(220, 166, 56, 0.42);
}

.network-callout strong,
.network-callout span {
  display: block;
}

.network-callout strong {
  color: #fff;
  font-size: 0.98rem;
}

.network-callout span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.path-section,
.support-section,
.faq-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.path-section {
  padding: 14px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 14px;
}

.path-section > .section-heading {
  display: none;
}

.section-heading h2 {
  margin-bottom: 6px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.path-layout {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) minmax(270px, 1fr) minmax(410px, 1.58fr);
  gap: 14px;
}

.path-card,
.live-panel,
.support-grid article,
.faq-list details,
.final-note {
  border: 1px solid rgba(220, 166, 56, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(8, 8, 7, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.path-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(98px, 36%);
  min-height: 246px;
  overflow: hidden;
}

.path-card::before,
.live-panel::before,
.support-grid article::before,
.final-note::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 60%;
  pointer-events: none;
  background: repeating-linear-gradient(160deg, transparent 0 14px, rgba(220, 166, 56, 0.09) 15px, transparent 16px);
  opacity: 0.55;
}

.path-copy {
  position: relative;
  z-index: 2;
  padding: 24px 20px 20px;
}

.path-icon,
.live-panel-heading span,
.support-grid span {
  display: inline-block;
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 26%, var(--gold) 0 15%, transparent 16%),
    linear-gradient(90deg, transparent 43%, var(--gold) 43% 57%, transparent 57%),
    linear-gradient(180deg, transparent 48%, var(--gold) 48% 62%, transparent 63%),
    rgba(220, 166, 56, 0.08);
  box-shadow: 0 0 20px rgba(220, 166, 56, 0.34);
}

.agency-path .path-icon,
.support-grid article:nth-child(3) span {
  background:
    radial-gradient(circle at 34% 36%, var(--gold) 0 15%, transparent 16%),
    radial-gradient(circle at 66% 36%, var(--gold) 0 15%, transparent 16%),
    linear-gradient(180deg, transparent 56%, var(--gold) 57% 70%, transparent 71%),
    rgba(220, 166, 56, 0.08);
}

.path-card h3,
.live-panel h3,
.support-grid h3 {
  margin: 8px 0 7px;
  color: var(--gold-2);
  font-size: 1.42rem;
  line-height: 1.1;
}

.path-card p,
.support-grid p,
.faq-list p,
.final-note p {
  color: var(--muted);
}

.path-card p {
  margin-bottom: 13px;
  font-size: 0.88rem;
}

.path-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 17px;
  padding: 0;
  color: #efe5cf;
  font-size: 0.8rem;
  list-style: none;
}

.path-card li {
  position: relative;
  padding-left: 18px;
}

.path-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
}

.path-card a {
  min-width: 0;
  min-height: 42px;
  padding: 0 18px;
  color: var(--gold-2);
}

.host-path a {
  color: #120c03;
  border-color: rgba(255, 225, 138, 0.86);
  background: linear-gradient(180deg, #ffe08a 0%, #dfa83a 100%);
}

.path-card img {
  align-self: end;
  justify-self: end;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-left: 1px solid rgba(220, 166, 56, 0.22);
}

.live-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.72fr);
  gap: 18px;
  min-height: 246px;
  padding: 20px;
  overflow: hidden;
}

.live-panel-heading,
.chat-lines {
  position: relative;
  z-index: 2;
}

.live-panel-heading {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
  gap: 12px;
}

.live-panel-heading span {
  width: 36px;
  height: 36px;
}

.live-panel h3 {
  margin: 0;
  color: #fff8e8;
}

.live-panel img {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
  border: 1px solid rgba(220, 166, 56, 0.26);
  border-radius: 8px;
}

.chat-lines {
  display: grid;
  align-self: center;
  gap: 8px;
  border-left: 1px solid rgba(220, 166, 56, 0.22);
  padding-left: 16px;
}

.chat-lines p {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.chat-lines strong {
  color: #fff3d4;
}

.support-section {
  padding: 18px 0 0;
}

.inline-heading {
  margin-bottom: 10px;
}

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

.support-grid article {
  position: relative;
  min-height: 130px;
  overflow: hidden;
  padding: 20px;
}

.support-grid span {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

.support-grid h3 {
  color: #ffe7aa;
  font-size: 1rem;
}

.support-grid p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.faq-section {
  padding: 18px 0 28px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 14px;
}

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

.faq-list details {
  overflow: hidden;
  background: rgba(8, 8, 7, 0.84);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 18px;
  color: #fff4dc;
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold-2);
  font-size: 1.25rem;
}

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

.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 0.92rem;
}

.final-note {
  position: relative;
  align-content: center;
  overflow: hidden;
  padding: 28px;
}

.final-note strong {
  display: block;
  margin-bottom: 8px;
  color: #fff8e8;
  font-size: 1.08rem;
}

.final-note p {
  margin-bottom: 0;
}

footer {
  justify-content: center;
  gap: clamp(18px, 5vw, 76px);
  border-top: 1px solid rgba(220, 166, 56, 0.2);
  padding: 24px;
  color: var(--muted);
  background: #050505;
  font-size: 0.9rem;
}

footer span {
  color: var(--gold-2);
  font-weight: 950;
}

footer strong {
  color: var(--muted);
  font-weight: 750;
}

.mobile-action-bar {
  display: none !important;
}

@media (max-width: 1280px) {
  .nav-links {
    gap: 20px;
  }

  .profile-card-four {
    display: none;
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 10, 8, 0.86);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gold-2);
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    z-index: 70;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 14px;
    border: 1px solid rgba(220, 166, 56, 0.26);
    border-radius: 8px;
    padding: 16px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-menu {
    display: grid;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .nav-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: minmax(330px, 0.42fr) minmax(440px, 0.58fr);
  }

  .profile-card-three {
    display: none;
  }

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

  .live-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .nav-shell,
  .hero,
  .path-section,
  .support-section,
  .faq-section {
    width: min(100% - 24px, 620px);
  }

  .site-header {
    background: rgba(4, 4, 4, 0.94);
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 56px;
    gap: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .brand strong {
    display: block;
    font-size: 0.76rem;
  }

  .brand-divider {
    display: block;
    width: 1px;
    height: 20px;
  }

  .brand b {
    max-width: 118px;
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
  }

  .compact-language {
    display: flex;
    min-height: 34px;
  }

  .compact-language button {
    min-width: 43px;
    min-height: 34px;
    padding: 0 6px;
    font-size: 0.66rem;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-menu {
    padding: 14px;
  }

  .nav-menu .language-switch {
    display: none;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 12px 0 8px;
  }

  .hero-copy {
    min-height: 0;
    padding: 0;
  }

  .eyebrow {
    min-height: 28px;
    margin-bottom: 8px;
    padding: 0 13px;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }

  h1 {
    max-width: 270px;
    margin-bottom: 8px;
    font-size: clamp(2.36rem, 10.6vw, 2.7rem);
    line-height: 0.92;
  }

  .hero-text {
    max-width: 252px;
    margin-bottom: 9px;
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 244px);
    gap: 7px;
    margin-bottom: 8px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    font-size: 0.78rem;
  }

  .benefit-strip {
    position: relative;
    z-index: 7;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 0;
    border: 1px solid rgba(220, 166, 56, 0.44);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(5, 5, 5, 0.82);
  }

  .benefit-strip span {
    min-height: 48px;
    border: 0;
    border-right: 1px solid rgba(220, 166, 56, 0.25);
    border-radius: 0;
    padding: 4px 5px;
    background: transparent;
    font-size: 0.53rem;
    line-height: 1.18;
  }

  .benefit-strip span:last-child {
    border-right: 0;
  }

  .hero-stage {
    position: absolute;
    top: 46px;
    right: -22px;
    z-index: 2;
    width: 270px;
    min-height: 0;
    height: 238px;
    pointer-events: none;
  }

  .hero-stage::before {
    inset: 20px -16px 26px -12px;
    opacity: 0.55;
  }

  .hero-stage::after {
    left: -34px;
    right: -10px;
    bottom: -76px;
    height: 118px;
  }

  .global-network {
    top: -8px;
    right: 0;
    width: 250px;
    opacity: 0.9;
  }

  .agent-hero {
    left: auto;
    right: 0;
    bottom: -118px;
    width: 236px;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }

  .profile-card,
  .network-callout {
    display: none;
  }

  .path-section {
    padding: 8px 0 0;
  }

  .path-section > .section-heading {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    text-align: center;
  }

  .section-kicker {
    display: none;
  }

  .section-heading h2 {
    margin: 0 auto;
    color: var(--gold-2);
    font-size: 1.2rem;
  }

  .section-heading h2::before,
  .section-heading h2::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 1px;
    margin: 0 10px 5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .path-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .path-card {
    grid-template-columns: minmax(0, 1fr) 58px;
    min-height: 116px;
  }

  .path-copy {
    padding: 8px;
  }

  .path-icon {
    width: 30px;
    height: 30px;
    border-width: 1px;
  }

  .path-card h3 {
    margin: 4px 0 4px;
    font-size: 0.84rem;
  }

  .path-card p {
    margin-bottom: 6px;
    font-size: 0.55rem;
    line-height: 1.3;
  }

  .path-card ul {
    display: none;
  }

  .path-card a {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.52rem;
  }

  .path-card img {
    object-position: center bottom;
  }

  .live-panel {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
    padding: 8px;
  }

  .live-panel-heading {
    gap: 8px;
  }

  .live-panel-heading span {
    width: 26px;
    height: 26px;
    border-width: 1px;
  }

  .live-panel h3 {
    font-size: 0.9rem;
  }

  .live-panel img {
    max-height: 86px;
    object-fit: cover;
  }

  .chat-lines {
    grid-template-columns: 1fr;
    gap: 5px;
    border-left: 0;
    border-top: 1px solid rgba(220, 166, 56, 0.2);
    padding: 7px 0 0;
  }

  .chat-lines p {
    grid-template-columns: 44px 1fr;
    gap: 6px;
    font-size: 0.62rem;
  }

  .support-section {
    padding: 12px 0 0;
  }

  .inline-heading {
    justify-content: center;
    margin-bottom: 8px;
    text-align: center;
  }

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

  .support-grid article {
    min-height: 76px;
    padding: 8px 5px;
    text-align: center;
  }

  .support-grid span {
    width: 22px;
    height: 22px;
    margin: 0 auto 5px;
    border-width: 1px;
  }

  .support-grid h3 {
    margin-bottom: 4px;
    font-size: 0.56rem;
    line-height: 1.15;
  }

  .support-grid p {
    font-size: 0.48rem;
    line-height: 1.22;
  }

  .faq-section {
    padding: 10px 0 14px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .faq-list {
    gap: 4px;
  }

  .faq-list summary {
    min-height: 24px;
    padding: 0 10px;
    font-size: 0.54rem;
  }

  .faq-list summary::after {
    font-size: 0.88rem;
  }

  .faq-list p {
    padding: 0 10px 8px;
    font-size: 0.54rem;
  }

  .final-note {
    padding: 8px 10px;
  }

  .final-note strong {
    margin-bottom: 3px;
    font-size: 0.58rem;
  }

  .final-note p {
    font-size: 0.54rem;
  }

  footer {
    display: none;
  }
}

@media (max-width: 430px) {
  .nav-shell,
  .hero,
  .path-section,
  .support-section,
  .faq-section {
    width: calc(100% - 24px);
  }

  .brand strong {
    font-size: 0.74rem;
  }

  .brand b {
    max-width: 114px;
    font-size: 0.68rem;
  }

  .compact-language button {
    min-width: 41px;
    padding: 0 5px;
  }

  h1 {
    max-width: 268px;
    font-size: 2.58rem;
  }

  .hero-text {
    max-width: 240px;
  }

  .hero-stage {
    right: -30px;
    width: 276px;
  }

  .agent-hero {
    width: 232px;
  }
}
