:root {
  --ink: #141413;
  --charcoal: #262627;
  --canvas: #f3f0ee;
  --lifted: #fcfbfa;
  --white: #ffffff;
  --muted: #696969;
  --orange: #f37338;
  --signal: #cf4500;
  --ghost: #e8e2da;
  --line: rgba(20, 20, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Sofia Sans", Inter, Arial, sans-serif;
  font-weight: 450;
}

body.menu-open {
  overflow: hidden;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.section-pad {
  padding: 112px clamp(24px, 6vw, 96px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px clamp(16px, 4vw, 48px) 0;
  pointer-events: none;
}

.nav-pill {
  width: min(1180px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 22px 12px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: rgba(0, 0, 0, 0.04) 0 4px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-logo {
  width: 92px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 46px);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon,
.floating-socials a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(20, 20, 19, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
}

.social-icon svg,
.floating-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon.whatsapp,
.floating-socials .whatsapp {
  background: #1fa855;
  color: var(--white);
  border-color: #1fa855;
}

.menu-toggle {
  display: none;
}

.mc-hero {
  padding-top: 112px;
}

.mc-hero-media {
  position: relative;
  width: min(1320px, calc(100vw - clamp(32px, 7vw, 96px)));
  height: min(690px, 72vh);
  min-height: 520px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 40px;
  background: var(--ink);
  box-shadow: rgba(0, 0, 0, 0.08) 0 24px 48px;
}

.mc-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 19, 0.76), rgba(20, 20, 19, 0.22) 52%, rgba(20, 20, 19, 0.06));
}

.mc-hero-media video,
.mc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-hero-copy {
  position: absolute;
  left: clamp(28px, 6vw, 82px);
  bottom: clamp(28px, 6vw, 78px);
  z-index: 2;
  width: min(620px, calc(100% - 56px));
  color: var(--white);
}

.mc-hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.mc-hero-copy p {
  max-width: 520px;
  margin: 22px 0 26px;
  font-size: 20px;
  line-height: 1.35;
}

.story-carousel {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 96px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: center;
}

.story-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 34%);
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.story-track::-webkit-scrollbar,
.service-grid::-webkit-scrollbar,
.benefit-stack::-webkit-scrollbar {
  display: none;
}

.auto-scroll-track {
  scroll-snap-type: none !important;
}

.story-pill {
  position: relative;
  scroll-snap-align: start;
  min-height: 420px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: rgba(0, 0, 0, 0.08) 0 24px 48px;
}

.story-pill.wide {
  border-radius: 40px;
}

.story-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 19, 0.08), rgba(20, 20, 19, 0.68));
}

.story-pill img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.story-pill span,
.story-pill h2 {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
}

.story-pill span {
  top: 32px;
  width: fit-content;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
}

.story-pill h2 {
  bottom: 36px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.circle-control {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.hero {
  padding-top: 144px;
}

.hero-copy,
.section-intro.split,
.feature-band,
.contact-band {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
}

.hero h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-aside {
  display: grid;
  gap: 24px;
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.42;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.eyebrow.small {
  margin: 28px 0 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 42px;
  border-radius: 20px;
  padding: 10px 24px;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.btn.primary {
  background: var(--ink);
  color: var(--canvas);
}

.btn.secondary {
  background: var(--white);
  color: var(--ink);
}

.btn.dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-media {
  position: relative;
  width: min(1320px, calc(100vw - clamp(32px, 7vw, 96px)));
  height: min(650px, 64vh);
  min-height: 440px;
  margin: 64px auto 0;
  overflow: hidden;
  border-radius: 40px;
  background: #222;
  box-shadow: rgba(0, 0, 0, 0.08) 0 24px 48px;
}

.hero-media video,
.pill-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.hero-overlay span,
.media-chip {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 10px 20px;
  font-weight: 500;
}

.hero-overlay button {
  width: 80px;
  height: 80px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
}

.hero-overlay svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.trust-strip {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-strip div {
  display: grid;
  gap: 8px;
}

.trust-strip strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.trust-strip span {
  color: var(--muted);
}

.orbit-section {
  position: relative;
  overflow: hidden;
}

.watermark {
  position: absolute;
  top: 86px;
  left: clamp(18px, 4vw, 64px);
  right: 0;
  z-index: 0;
  color: var(--ghost);
  font-size: clamp(64px, 11vw, 142px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.section-intro {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-intro h2,
.feature-copy h2,
.advocate-section h2,
.process h2,
.contact-band h2,
.footer h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.service-grid {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.service-carousel {
  width: min(1240px, 100%);
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: center;
}

.service-carousel .service-grid {
  width: 100%;
  margin: 0;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 30%);
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-carousel .portrait-card {
  scroll-snap-align: start;
}

.portrait-card {
  max-width: 340px;
}

.portrait-card.offset-low {
  margin-top: 104px;
}

.portrait-card.offset-mid {
  margin-top: 36px;
}

.portrait {
  position: relative;
  display: block;
  width: clamp(230px, 23vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.08) 0 24px 48px;
}

.portrait img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.satellite {
  position: absolute;
  right: -12px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 500;
}

.portrait-card h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.orbit-line {
  position: absolute;
  z-index: 1;
  border: 1.5px solid var(--orange);
  border-color: var(--orange) transparent transparent transparent;
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}

.orbit-one {
  width: 620px;
  height: 260px;
  top: 360px;
  left: 14vw;
  transform: rotate(9deg);
}

.orbit-two {
  width: 700px;
  height: 320px;
  top: 470px;
  right: 6vw;
  transform: rotate(-12deg);
}

.feature-band {
  align-items: center;
}

.feature-copy {
  display: grid;
  gap: 24px;
  max-width: 570px;
}

.feature-copy p,
.section-intro.split p,
.process-rail p,
.advocate-cards p,
.benefit-copy p,
.app-band p,
.request-copy p,
.admin-hero p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.45;
}

.benefit-section,
.app-band,
.request-section {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.benefit-copy,
.request-copy,
.app-band > div {
  display: grid;
  gap: 22px;
}

.benefit-copy h2,
.app-band h2,
.request-copy h2,
.admin-hero h1,
.admin-panel h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.benefit-stack {
  display: grid;
  gap: 18px;
}

.benefit-carousel {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: center;
}

.benefit-carousel .benefit-stack {
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 48%);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.benefit-stack article {
  scroll-snap-align: start;
  min-height: 230px;
  padding: 34px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(20, 20, 19, 0.12);
  display: grid;
  align-content: center;
  gap: 20px;
  text-align: center;
}

.benefit-stack h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.benefit-stack a {
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.app-band {
  position: relative;
  border-radius: 40px;
  background: var(--lifted);
}

.playstore-pill {
  justify-self: end;
  min-width: 280px;
  min-height: 112px;
  padding: 18px 28px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  box-shadow: rgba(0, 0, 0, 0.08) 0 24px 48px;
}

.playstore-pill small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.play-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.faq-accordion {
  width: min(1040px, 100%);
  margin: 40px auto 0;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 74px;
  padding: 18px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-item button span:first-child {
  overflow-wrap: anywhere;
}

.faq-item button span:last-child {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--charcoal);
  line-height: 1.5;
}

.faq-item[hidden] {
  display: none;
}

.request-section {
  align-items: start;
}

.pill-video {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: rgba(0, 0, 0, 0.08) 0 24px 48px;
}

.media-chip {
  position: absolute;
  left: 44px;
  bottom: 44px;
}

.advocate-section {
  background: var(--lifted);
}

.section-intro.split {
  text-align: left;
  align-items: start;
}

.advocate-cards {
  width: min(1160px, 100%);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advocate-cards article {
  min-height: 260px;
  padding: 32px;
  border: 1px solid rgba(20, 20, 19, 0.12);
  border-radius: 40px;
  background: var(--canvas);
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.advocate-cards span {
  color: var(--signal);
  font-weight: 700;
}

.advocate-cards h3 {
  font-size: 28px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.process {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.process h2 {
  max-width: 720px;
}

.process-rail {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-rail article {
  min-height: 240px;
  padding: 28px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 19, 0.16);
  background: var(--white);
  display: grid;
  align-content: center;
  gap: 16px;
  text-align: center;
}

.process-rail strong {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-band {
  align-items: start;
}

.request-form {
  padding: 32px;
  border-radius: 40px;
  background: var(--lifted);
  display: grid;
  gap: 16px;
}

.spam-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 20, 19, 0.22);
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.request-form input,
.request-form select {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
}

.request-form textarea {
  min-height: 132px;
  resize: vertical;
  border-radius: 28px;
  padding: 16px 18px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--ink);
}

.request-form button {
  width: fit-content;
  margin-top: 8px;
}

.request-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 22px;
  color: #17633a;
  font-weight: 500;
}

.form-status.error {
  color: #9f1d1d;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 18px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.16) 0 18px 40px;
  font-weight: 500;
}

.toast.error {
  background: #9f1d1d;
}

.floating-socials {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  gap: 10px;
}

.admin-page {
  min-height: 100vh;
}

.admin-shell {
  padding-top: 150px;
}

.admin-hero {
  width: min(980px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.admin-hero h1 {
  margin-bottom: 18px;
}

.admin-stats {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.admin-stats article {
  min-height: 150px;
  padding: 28px;
  border-radius: 40px;
  background: var(--white);
  border: 1px solid rgba(20, 20, 19, 0.1);
  display: grid;
  align-content: center;
  gap: 8px;
}

.admin-stats span {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.admin-stats p {
  color: var(--muted);
}

.admin-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 32px;
  border-radius: 40px;
  background: var(--lifted);
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.faq-admin-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}

.faq-admin-form,
.faq-admin-list {
  border: 1px solid rgba(20, 20, 19, 0.12);
  border-radius: 28px;
  background: var(--white);
  padding: 24px;
}

.faq-admin-form {
  display: grid;
  gap: 14px;
}

.faq-admin-form label,
.faq-search label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.faq-admin-form input,
.faq-admin-form textarea,
.faq-admin-form select,
.faq-search input {
  width: 100%;
  border: 1px solid rgba(20, 20, 19, 0.16);
  border-radius: 18px;
  background: var(--canvas);
  color: var(--ink);
  padding: 12px 14px;
}

.faq-admin-form textarea {
  min-height: 130px;
  resize: vertical;
}

.faq-admin-actions,
.faq-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-search {
  margin-bottom: 18px;
}

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

.faq-admin-card {
  border: 1px solid rgba(20, 20, 19, 0.1);
  border-radius: 22px;
  padding: 18px;
  background: var(--canvas);
  display: grid;
  gap: 10px;
}

.faq-admin-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.faq-admin-card p {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.45;
}

.faq-admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.faq-admin-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 28px;
  border: 1px solid rgba(20, 20, 19, 0.12);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid rgba(20, 20, 19, 0.1);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.35;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

td strong,
td small {
  display: block;
}

td small {
  margin-top: 5px;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--canvas);
  font-weight: 500;
}

.empty-state {
  padding: 28px 0 0;
  color: var(--muted);
  text-align: center;
}

.fallback-page {
  width: min(1120px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 72px;
  display: grid;
  align-content: center;
  gap: 28px;
}

.article-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 72px;
  display: grid;
  gap: 28px;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.article-hero p {
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.5;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.08) 0 24px 48px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.article-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
}

.article-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 120px;
  padding: 22px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.article-toc h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.article-toc a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-body section,
.article-cta {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.article-body h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  font-weight: 500;
}

.article-body p,
.article-body li {
  color: var(--charcoal);
  line-height: 1.6;
}

.article-body ul {
  margin: 0;
  padding-left: 20px;
}

.article-cta {
  display: grid;
  gap: 18px;
  background: var(--ink);
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.fallback-page > .brand {
  width: fit-content;
  margin-bottom: 28px;
}

.fallback-page h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.fallback-page > p {
  max-width: 680px;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.45;
}

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

.fallback-grid article {
  min-height: 220px;
  padding: 30px;
  border-radius: 40px;
  background: var(--white);
  border: 1px solid rgba(20, 20, 19, 0.12);
  display: grid;
  align-content: center;
  gap: 16px;
}

.fallback-grid h2,
.auth-form h1 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.fallback-grid p {
  color: var(--charcoal);
  line-height: 1.45;
}

.auth-page {
  width: min(620px, 100%);
}

.auth-form {
  background: var(--lifted);
}

.footer {
  padding: 72px clamp(24px, 6vw, 96px) 120px;
  border-radius: 40px 40px 0 0;
  background: var(--ink);
  color: var(--white);
}

.footer-head,
.footer-grid,
.footer-bottom {
  width: min(1240px, 100%);
  margin: 0 auto;
}

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

.footer-head h2 {
  max-width: 680px;
}

.footer-grid {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-grid div {
  display: grid;
  gap: 14px;
}

.footer-grid h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid a {
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-bottom button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  padding: 0 18px;
}

@media (max-width: 980px) {
  .nav-pill {
    padding-left: 22px;
  }

  .nav-links {
    position: fixed;
    inset: 104px 16px auto;
    padding: 32px;
    border-radius: 40px;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.08) 0 24px 48px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    font-size: 28px;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-copy,
  .section-intro.split,
  .feature-band,
  .article-hero,
  .article-content,
  .contact-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-grid,
  .advocate-cards,
  .process-rail,
  .benefit-section,
  .app-band,
  .request-section,
  .faq-admin-grid,
  .admin-stats,
  .fallback-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portrait-card.offset-low,
  .portrait-card.offset-mid {
    margin-top: 0;
  }

  .orbit-line {
    display: none;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-pad {
    padding: 72px 20px;
  }

  .site-header {
    padding: 16px 12px 0;
    max-width: 100vw;
    overflow: hidden;
  }

  .nav-pill {
    width: 100%;
    max-width: calc(100vw - 24px);
    min-height: 64px;
    padding: 8px 9px 8px 12px;
    gap: 6px;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 7px;
  }

  .brand-logo {
    width: clamp(68px, 23vw, 88px);
    height: 40px;
  }

  .brand > span:last-child {
    max-width: 96px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    font-size: 14px;
  }

  .nav-actions {
    flex: 0 0 auto;
    gap: 5px;
  }

  .social-icon,
  .floating-socials a {
    width: 40px;
    height: 40px;
  }

  .nav-actions .icon-button {
    display: grid;
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 116px;
  }

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

  .hero-media {
    width: calc(100vw - 32px);
    min-height: 360px;
    height: 58vh;
    margin-top: 42px;
    border-radius: 40px;
  }

  .hero-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-overlay button {
    width: 58px;
    height: 58px;
  }

  .trust-strip,
  .service-grid,
  .advocate-cards,
  .process-rail,
  .benefit-section,
  .app-band,
  .request-section,
  .admin-stats,
  .fallback-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-carousel,
  .service-carousel,
  .benefit-carousel {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .circle-control {
    display: none;
  }

  .story-track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 82%);
    grid-template-columns: none;
  }

  .service-carousel .service-grid,
  .benefit-carousel .benefit-stack {
    grid-auto-columns: minmax(240px, 84%);
  }

  .story-pill,
  .story-pill.wide {
    min-height: 330px;
    border-radius: 40px;
  }

  .mc-hero-media {
    width: min(100%, calc(100vw - 40px));
    min-height: 520px;
    border-radius: 34px;
  }

  .mc-hero-copy {
    left: 28px;
    bottom: 44px;
    width: calc(100% - 56px);
  }

  .mc-hero-copy h1 {
    font-size: clamp(38px, 11vw, 42px);
    overflow-wrap: anywhere;
  }

  .mc-hero-copy p {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .button-row {
    max-width: 100%;
  }

  .playstore-pill {
    justify-self: stretch;
  }

  .admin-panel {
    padding: 20px;
  }

  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    width: calc(100% - 40px);
  }

  .watermark {
    top: 60px;
  }

  .portrait-card {
    max-width: 100%;
    text-align: center;
  }

  .portrait {
    margin: 0 auto;
  }

  .pill-video {
    height: 420px;
  }

  .process-rail article {
    min-height: 190px;
  }

  .footer {
    padding-bottom: 72px;
  }

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

  .article-shell {
    padding-top: 40px;
  }

  .article-hero img {
    border-radius: 30px;
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 8px;
  }

  .nav-pill {
    max-width: calc(100vw - 16px);
    padding-inline: 8px;
    gap: 4px;
  }

  .brand {
    gap: 5px;
  }

  .brand-logo {
    width: 64px;
  }

  .brand > span:last-child {
    max-width: 78px;
    font-size: 13px;
  }

  .nav-actions {
    gap: 4px;
  }

  .social-icon,
  .floating-socials a,
  .nav-actions .icon-button {
    width: 36px;
    height: 36px;
  }

  .social-icon svg,
  .floating-socials svg,
  .icon-button svg {
    width: 19px;
    height: 19px;
  }
}

@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;
  }
}
