:root {
  --nga-ink: #18243d;
  --nga-ink-soft: #47536b;
  --nga-indigo: #6558e8;
  --nga-indigo-deep: #4938c6;
  --nga-violet: #9b62e6;
  --nga-blue: #4f8df7;
  --nga-mint: #4fc7a8;
  --nga-coral: #ff8068;
  --nga-gold: #f5b94c;
  --nga-rose: #ec6f9d;
  --nga-cream: #fffaf5;
  --nga-lilac: #f5f2ff;
  --nga-sky: #f2f8ff;
  --nga-surface: #ffffff;
  --nga-border: rgba(24, 36, 61, 0.12);
  --nga-shadow: 0 24px 70px rgba(56, 48, 120, 0.14);
  --nga-shadow-soft: 0 14px 40px rgba(56, 48, 120, 0.09);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--nga-cream);
  color: var(--nga-ink);
  font-family: var(--font-body), Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body), Arial, Helvetica, sans-serif;
}

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

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

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display), Arial, Helvetica, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0;
  color: var(--nga-ink-soft);
}

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

.narrow {
  max-width: 820px;
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.section.section-compact {
  padding: clamp(54px, 6.5vw, 88px) 0;
}

.section-compact .section-heading {
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.section-tint {
  background:
    radial-gradient(circle at 10% 10%, rgba(155, 98, 230, 0.09), transparent 30%),
    var(--nga-lilac);
}

.section-dark {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(155, 98, 230, 0.55), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(79, 141, 247, 0.35), transparent 30%),
    #171c36;
}

.section-dark p,
.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--nga-indigo-deep);
  transform: translateY(-160%);
}

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

.sr-only,
.sr-only:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(24, 36, 61, 0.08);
  background: rgba(255, 250, 245, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 80px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px 10px 15px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--nga-indigo), var(--nga-violet));
  box-shadow: 0 10px 24px rgba(101, 88, 232, 0.28);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 3px;
  color: #667087;
  font-size: 0.7rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(14px, 1.7vw, 26px);
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  padding: 12px 0 9px;
  color: #3d4860;
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--nga-indigo), var(--nga-coral));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 16px 12px 16px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--nga-indigo), var(--nga-violet));
  box-shadow: 0 12px 28px rgba(101, 88, 232, 0.25);
  font-weight: 780;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(101, 88, 232, 0.32);
  filter: saturate(1.12);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 14px 10px 14px 10px;
  font-size: 0.88rem;
}

.button-ghost {
  border-color: rgba(101, 88, 232, 0.26);
  color: var(--nga-indigo-deep);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.button-light {
  color: var(--nga-indigo-deep);
  background: #fff;
  box-shadow: 0 12px 30px rgba(19, 24, 50, 0.18);
}

.menu-button {
  display: none;
  width: 48px;
  min-height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(101, 88, 232, 0.09);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--nga-ink);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.98), rgba(245, 242, 255, 0.94)),
    var(--nga-cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(101, 88, 232, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, #000, transparent 65%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--nga-indigo-deep);
  background: rgba(101, 88, 232, 0.1);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.hero h1 {
  max-width: 820px;
  margin: 20px 0 24px;
  background: linear-gradient(120deg, var(--nga-ink) 5%, var(--nga-indigo-deep) 62%, var(--nga-violet));
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 670px;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 38px;
  color: #647087;
  font-size: 0.88rem;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof strong {
  color: var(--nga-indigo-deep);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-photo-frame {
  position: absolute;
  inset: 10px 20px 30px 40px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 42px 24px 42px 24px;
  box-shadow: var(--nga-shadow);
  transform: rotate(2deg);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 23, 84, 0.22), transparent 48%);
  content: "";
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px 14px 20px 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(36, 30, 94, 0.2);
  backdrop-filter: blur(15px);
  animation: float 5.5s ease-in-out infinite;
}

.floating-card span {
  color: #6d7690;
  font-size: 0.78rem;
}

.floating-card strong {
  margin-top: 4px;
  font-family: var(--font-display);
  line-height: 1.25;
}

.floating-card-top {
  top: 40px;
  left: 0;
}

.floating-card-bottom {
  right: 0;
  bottom: 5px;
  animation-delay: -2.5s;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  animation: drift 13s ease-in-out infinite alternate;
}

.hero-orb-one {
  top: 40px;
  right: 32%;
  width: 150px;
  height: 150px;
  background: rgba(255, 128, 104, 0.25);
}

.hero-orb-two {
  right: -90px;
  bottom: 20px;
  width: 300px;
  height: 300px;
  background: rgba(79, 141, 247, 0.2);
  animation-delay: -3s;
}

.trust-strip {
  border-block: 1px solid var(--nga-border);
  background: rgba(255, 255, 255, 0.74);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid span {
  position: relative;
  padding: 20px;
  color: #5a657c;
  font-size: 0.88rem;
  font-weight: 760;
  text-align: center;
}

.trust-grid span + span::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 1px;
  background: var(--nga-border);
  content: "";
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 17px 0 17px;
}

.section-heading p {
  font-size: 1.08rem;
}

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

.category-card,
.resource-card,
.article-card,
.tool-card,
.values-card,
.contact-form {
  border: 1px solid var(--nga-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--nga-shadow-soft);
}

.category-card {
  position: relative;
  height: 100%;
  padding: 30px;
  overflow: hidden;
  border-radius: 26px 18px 26px 18px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.category-card::after {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--card-accent, rgba(101, 88, 232, 0.1));
  content: "";
}

.category-card:hover {
  box-shadow: var(--nga-shadow);
  transform: translateY(-6px);
}

.accent-violet { --card-accent: rgba(155, 98, 230, 0.14); }
.accent-blue { --card-accent: rgba(79, 141, 247, 0.14); }
.accent-coral { --card-accent: rgba(255, 128, 104, 0.14); }
.accent-mint { --card-accent: rgba(79, 199, 168, 0.14); }
.accent-gold { --card-accent: rgba(245, 185, 76, 0.18); }
.accent-rose { --card-accent: rgba(236, 111, 157, 0.14); }

.category-icon,
.tool-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px 12px 18px 12px;
  color: var(--nga-indigo-deep);
  background: var(--card-accent, rgba(101, 88, 232, 0.12));
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 850;
}

.category-icon-svg {
  display: block;
  width: 27px;
  height: 27px;
  background: currentColor;
  -webkit-mask: var(--category-icon) center / contain no-repeat;
  mask: var(--category-icon) center / contain no-repeat;
}

.category-card h3 {
  margin-bottom: 13px;
}

.category-card p {
  min-height: 78px;
}

.category-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.category-card li {
  padding: 6px 9px;
  border-radius: 999px;
  color: #626d82;
  background: #f5f6fa;
  font-size: 0.76rem;
}

.category-card a,
.resource-card a,
.tool-card a,
.text-link {
  color: var(--nga-indigo-deep);
  font-weight: 780;
}

.resource-grid,
.article-grid,
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.resource-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 26px;
  border-radius: 22px 16px 22px 16px;
  transition: transform 190ms ease, border-color 190ms ease;
}

.resource-card:hover {
  border-color: rgba(101, 88, 232, 0.36);
  transform: translateY(-4px);
}

.resource-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.pill,
.format {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 780;
}

.pill {
  color: var(--nga-indigo-deep);
  background: rgba(101, 88, 232, 0.1);
}

.format {
  color: #667087;
  background: #f5f6fa;
}

.resource-card h3 {
  margin-bottom: 12px;
}

.resource-card p {
  flex: 1;
  margin-bottom: 22px;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(46px, 7vw, 90px);
  align-items: center;
}

.photo-panel {
  position: relative;
}

.photo-panel img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  border-radius: 38px 24px 38px 24px;
  box-shadow: var(--nga-shadow);
}

.photo-caption {
  position: absolute;
  right: -25px;
  bottom: 24px;
  left: 34px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 21px 14px 21px 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--nga-shadow-soft);
  backdrop-filter: blur(16px);
}

.photo-caption span {
  margin-top: 4px;
  color: #6a748a;
  font-size: 0.86rem;
}

.steps-panel h2 {
  margin: 18px 0 36px;
}

.steps-list {
  display: grid;
  gap: 15px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  transition: background 180ms ease, transform 180ms ease;
}

.step:hover {
  background: rgba(101, 88, 232, 0.06);
  transform: translateX(5px);
}

.step > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px 12px 18px 12px;
  color: var(--nga-indigo-deep);
  background: rgba(101, 88, 232, 0.1);
  font-family: var(--font-display);
  font-weight: 850;
}

.step h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.tool-card {
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 26px 18px 26px 18px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  backdrop-filter: blur(10px);
  transition: transform 200ms ease, background 200ms ease;
}

.tool-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-6px);
}

.tool-card .tool-icon {
  color: #fff;
  background: linear-gradient(135deg, rgba(155, 98, 230, 0.8), rgba(79, 141, 247, 0.74));
}

.tool-card h3,
.tool-card a {
  color: #fff;
}

.tool-card p {
  min-height: 88px;
  margin: 14px 0 22px;
}

.tools-showcase {
  position: relative;
  overflow: hidden;
  color: var(--nga-ink);
  background:
    linear-gradient(135deg, rgba(101, 88, 232, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(255, 128, 104, 0.1), transparent 38%),
    linear-gradient(180deg, #f7f4ff 0%, #fffaf5 100%);
  border-block: 1px solid rgba(101, 88, 232, 0.12);
}

.tools-showcase::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(101, 88, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 88, 232, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
  content: "";
  pointer-events: none;
}

.tools-showcase .shell {
  position: relative;
  z-index: 1;
}

.tools-showcase .section-heading {
  margin-inline: auto;
  text-align: center;
}

.tool-grid-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin-inline: auto;
  gap: clamp(22px, 3vw, 34px);
}

.tool-grid-featured > * {
  min-width: 0;
}

.tools-showcase .tool-card-featured {
  display: grid;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(101, 88, 232, 0.18);
  border-radius: 30px 20px 30px 20px;
  color: var(--nga-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(47, 38, 121, 0.14);
  backdrop-filter: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tools-showcase .tool-card-featured:hover {
  background: #fff;
  box-shadow: 0 30px 70px rgba(47, 38, 121, 0.2);
  transform: translateY(-8px);
}

.tool-card-media {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
}

.tool-card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(19, 27, 66, 0.35), transparent);
  content: "";
}

.tool-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .75, .25, 1);
}

.tool-card-featured:hover .tool-card-media img {
  transform: scale(1.045);
}

.tools-showcase .tool-card-media .tool-icon {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: linear-gradient(135deg, var(--nga-indigo), var(--nga-violet));
  box-shadow: 0 14px 28px rgba(30, 24, 100, 0.28);
}

.tool-card-body {
  display: flex;
  padding: clamp(24px, 3vw, 34px);
  flex-direction: column;
  align-items: flex-start;
}

.tools-showcase .tool-card h3,
.tool-card-title {
  display: block;
  color: var(--nga-ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 840;
  line-height: 1.08;
}

.tools-showcase .tool-card p,
.tool-card-copy {
  display: block;
  min-height: 0;
  margin: 14px 0 24px;
  color: var(--nga-ink-soft);
  line-height: 1.7;
}

.tools-showcase .tool-card a,
.tool-card-action {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: var(--nga-indigo-deep);
  font-weight: 820;
}

.tools-showcase .tool-card-action span {
  transition: transform 180ms ease;
}

.tools-showcase .tool-card:hover .tool-card-action span {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  .tool-grid-featured {
    grid-template-columns: 1fr;
  }

  .tool-card-media {
    height: 210px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.about-grid h2 {
  margin: 18px 0;
}

.about-grid .large-copy {
  margin-bottom: 18px;
  color: var(--nga-ink);
  font-size: 1.25rem;
  font-weight: 600;
}

.about-grid .text-link {
  display: inline-block;
  margin-top: 25px;
}

.values-card {
  padding: 18px;
  border-radius: 30px 20px 30px 20px;
  background: linear-gradient(145deg, #fff, #f6f3ff);
}

.values-card > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 25px;
}

.values-card > div + div {
  border-top: 1px solid var(--nga-border);
}

.values-card strong {
  color: var(--nga-indigo-deep);
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.values-card span {
  color: var(--nga-ink-soft);
}

.article-card {
  overflow: hidden;
  border-radius: 25px 17px 25px 17px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.article-card:hover {
  box-shadow: var(--nga-shadow);
  transform: translateY(-5px);
}

.article-visual {
  display: flex;
  height: 170px;
  align-items: flex-end;
  padding: 20px;
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.8), transparent 16%),
    linear-gradient(135deg, rgba(101, 88, 232, 0.95), rgba(155, 98, 230, 0.55));
}

.visual-finance { background: linear-gradient(135deg, #6658e8, #84b8ff); }
.visual-career { background: linear-gradient(135deg, #31486f, #ff8c73); }
.visual-productivity { background: linear-gradient(135deg, #3bb99b, #8fd9c7); }

.article-visual span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(24, 36, 61, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.article-card-body {
  padding: 25px;
}

.article-meta,
.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #778096;
  font-size: 0.76rem;
}

.article-card h3 {
  margin: 14px 0 12px;
}

.article-card p {
  min-height: 84px;
}

.article-card-footer {
  margin-top: 22px;
}

.article-card-footer a {
  color: var(--nga-indigo-deep);
  font-weight: 760;
}

.article-featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  margin-bottom: 28px;
}

.article-featured .article-visual {
  height: auto;
  min-height: 380px;
}

.article-featured .article-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 65px);
}

.article-featured h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.article-featured p {
  min-height: 0;
}

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

.final-cta {
  padding: clamp(70px, 9vw, 110px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0, rgba(255, 128, 104, 0.45), transparent 30%),
    linear-gradient(135deg, var(--nga-indigo-deep), var(--nga-violet));
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  max-width: 760px;
  margin: 16px 0 10px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 70px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 34px 22px 34px 22px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0, rgba(255, 128, 104, 0.42), transparent 32%),
    linear-gradient(135deg, #4938c6, #7f5ce0 62%, #9b62e6);
  box-shadow: 0 30px 80px rgba(54, 39, 133, 0.28);
}

.newsletter-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.78);
}

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

.newsletter-form input {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  color: var(--nga-ink);
  background: rgba(255, 255, 255, 0.94);
}

.site-footer {
  padding: 80px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  background: #11152a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 45px;
}

.brand-footer {
  color: #fff;
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-mission {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a {
  min-height: 32px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 11vw, 150px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(155, 98, 230, 0.18), transparent 42%),
    linear-gradient(150deg, var(--nga-cream), var(--nga-lilac));
}

.page-hero h1 {
  margin: 20px 0 22px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.18rem;
}

.resource-hero {
  background:
    radial-gradient(circle at 20% 0, rgba(79, 199, 168, 0.2), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(101, 88, 232, 0.17), transparent 36%),
    var(--nga-sky);
}

.blog-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 128, 104, 0.16), transparent 32%),
    linear-gradient(145deg, var(--nga-cream), #fff3ee);
}

.contact-hero {
  background:
    radial-gradient(circle at 50% 0, rgba(79, 141, 247, 0.2), transparent 38%),
    linear-gradient(145deg, var(--nga-cream), var(--nga-sky));
}

.mini-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 36px;
}

.mini-stats span {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #69748a;
}

.mini-stats strong {
  color: var(--nga-indigo-deep);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.resource-controls {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--nga-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--nga-shadow-soft);
}

.resource-controls label {
  display: grid;
  gap: 7px;
  color: #536078;
  font-size: 0.78rem;
  font-weight: 760;
}

.resource-controls input,
.resource-controls select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid rgba(24, 36, 61, 0.15);
  border-radius: 13px;
  color: var(--nga-ink);
  background: #fff;
}

.results-line {
  margin: 30px 0 18px;
  color: #647087;
  font-size: 0.88rem;
  font-weight: 760;
}

.empty-state {
  padding: 80px 20px;
  text-align: center;
}

.empty-state h2 {
  margin-bottom: 12px;
}

.article-header {
  padding: clamp(70px, 10vw, 130px) 0 80px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(101, 88, 232, 0.17), transparent 40%),
    var(--nga-lilac);
}

.article-shell {
  max-width: 900px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #69748a;
  font-size: 0.8rem;
}

.article-header h1 {
  margin: 20px 0 24px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.article-dek {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.22rem;
}

.article-byline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: #6f7990;
  font-size: 0.82rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 75px;
  padding-top: 75px;
  padding-bottom: 110px;
}

.article-content {
  max-width: 730px;
}

.article-content section + section {
  margin-top: 45px;
}

.article-content h2 {
  margin-bottom: 18px;
  font-size: 2rem;
  letter-spacing: -0.025em;
}

.article-content p {
  color: #39475f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.17rem;
  line-height: 1.85;
}

.takeaway {
  margin-top: 48px;
  padding: 28px;
  border-left: 5px solid var(--nga-coral);
  border-radius: 18px;
  background: #fff4ef;
}

.takeaway strong {
  color: var(--nga-coral);
  font-family: var(--font-display);
}

.takeaway p {
  margin-top: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.article-rail {
  align-self: start;
  position: sticky;
  top: 110px;
}

.article-rail > h2 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.article-rail .resource-card + .resource-card {
  margin-top: 16px;
}

.reading-progress {
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--nga-coral), var(--nga-violet));
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.contact-copy h2 {
  margin: 18px 0;
}

.contact-expectations {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-expectations > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  border-left: 3px solid rgba(101, 88, 232, 0.25);
}

.contact-expectations span {
  color: #69748a;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px 20px 28px 20px;
}

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

.form-row label {
  color: #3f4a61;
  font-size: 0.84rem;
  font-weight: 770;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.prototype-note {
  padding: 11px 13px;
  border-radius: 11px;
  color: #765224;
  background: #fff3d7;
  font-size: 0.8rem;
}

.form-status {
  min-height: 26px;
  color: var(--nga-indigo-deep);
  font-size: 0.88rem;
  font-weight: 680;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-armed {
  opacity: 0;
  transform: translateY(24px);
}

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

@keyframes float {
  0%,
  100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes drift {
  from { transform: translate3d(-8px, -10px, 0) scale(0.96); }
  to { transform: translate3d(14px, 18px, 0) scale(1.06); }
}

.category-detail {
  --category-accent: #2f6fd6;
  --category-accent-soft: rgba(79, 141, 247, 0.16);
}

.category-detail-violet {
  --category-accent: var(--nga-violet);
  --category-accent-soft: rgba(155, 98, 230, 0.16);
}

.category-detail-gold {
  --category-accent: #b87300;
  --category-accent-soft: rgba(245, 185, 76, 0.22);
}

.category-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 12% 10%, var(--category-accent-soft), transparent 34%),
    linear-gradient(145deg, var(--nga-cream), #fff);
}

.category-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.category-detail-hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 24px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.category-detail-hero-copy > p {
  max-width: 680px;
  font-size: 1.16rem;
}

.category-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.category-detail-photo {
  min-height: clamp(420px, 48vw, 610px);
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 48% 48% 24px 24px;
  background: var(--category-accent-soft);
  box-shadow: var(--nga-shadow);
}

.category-detail-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.category-detail-photo:hover img {
  transform: scale(1.035);
}

.category-start {
  text-align: center;
}

.category-start h2,
.category-start .large-copy {
  max-width: 820px;
  margin-inline: auto;
}

.category-pathway {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: stretch;
}

.category-pathway-tabs {
  display: grid;
  gap: 10px;
}

.category-pathway-tab {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 68px;
  padding: 10px 18px 10px 10px;
  border: 1px solid var(--nga-border);
  border-radius: 17px;
  color: var(--nga-ink);
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 780;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.category-pathway-tab > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--category-accent);
  background: var(--category-accent-soft);
  font-family: var(--font-display);
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.category-pathway-tab:hover {
  border-color: var(--category-accent);
  box-shadow: var(--nga-shadow-soft);
  transform: translateX(4px);
}

.category-pathway-tab.is-active {
  color: #fff;
  border-color: var(--category-accent);
  background: var(--category-accent);
  box-shadow: 0 18px 34px var(--category-accent-soft);
}

.category-pathway-tab.is-active > span {
  color: var(--category-accent);
  background: #fff;
}

.category-pathway-panels,
.category-pathway-panel {
  min-width: 0;
}

.category-pathway-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 300px;
  gap: clamp(24px, 5vw, 62px);
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--nga-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, var(--category-accent-soft), transparent 40%),
    #fff;
  box-shadow: var(--nga-shadow-soft);
  animation: category-panel-in 380ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.category-pathway-panel[hidden] {
  display: none;
}

.category-pathway-panel-number {
  color: var(--category-accent);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.8;
  opacity: 0.16;
}

.category-pathway-panel h3 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.category-pathway-panel p {
  max-width: 620px;
  font-size: 1.04rem;
}

.category-spotlight-section {
  color: var(--nga-ink);
  background: var(--nga-sky);
}

.category-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(101, 88, 232, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 0, var(--category-accent-soft), transparent 34%),
    #fff;
  box-shadow: var(--nga-shadow-soft);
}

.category-spotlight h2 {
  margin: 12px 0;
  color: var(--nga-ink);
}

.category-spotlight p {
  max-width: 720px;
  color: var(--nga-ink-soft);
}

.category-spotlight .button-light {
  color: #fff;
  background: var(--category-accent);
}

.category-next-step {
  background: var(--nga-cream);
}

@keyframes category-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    gap: 2px;
    padding: 0 20px;
    overflow: hidden;
    background: rgba(255, 250, 245, 0.98);
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease, padding 260ms ease;
  }

  .mobile-nav-open {
    max-height: 650px;
    padding: 12px 20px 24px;
    opacity: 1;
  }

  .mobile-nav a:not(.button) {
    min-height: 44px;
    padding: 11px 8px;
    border-bottom: 1px solid var(--nga-border);
    font-weight: 700;
  }

  .hero-grid,
  .split-section,
  .about-grid,
  .contact-grid,
  .category-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero-photo-frame {
    inset: 0 50px 30px;
  }

  .category-grid,
  .resource-grid,
  .article-grid,
  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .article-rail {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .article-rail > h2 {
    grid-column: 1 / -1;
  }

  .article-rail .resource-card + .resource-card {
    margin-top: 0;
  }

  .category-pathway {
    grid-template-columns: 1fr;
  }

  .category-pathway-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

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

  .hero {
    padding-top: 65px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

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

  .hero-photo-frame {
    inset: 0 8px 24px;
    border-width: 7px;
    border-radius: 28px 18px 28px 18px;
  }

  .floating-card {
    padding: 13px 15px;
    font-size: 0.8rem;
  }

  .floating-card-top {
    top: 15px;
  }

  .floating-card-bottom {
    right: 0;
    bottom: 0;
  }

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

  .trust-grid span:nth-child(3)::before {
    display: none;
  }

  .category-grid,
  .resource-grid,
  .article-grid,
  .tool-grid,
  .blog-grid,
  .article-rail {
    grid-template-columns: 1fr;
  }

  .category-detail-hero {
    padding: 58px 0 64px;
  }

  .category-detail-hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .category-detail-photo {
    min-height: 390px;
    border-width: 6px;
    border-radius: 42% 42% 22px 22px;
  }

  .category-detail-actions,
  .category-detail-actions .button {
    width: 100%;
  }

  .category-spotlight {
    grid-template-columns: 1fr;
  }

  .category-pathway-tabs,
  .category-pathway-panel {
    grid-template-columns: 1fr;
  }

  .category-pathway-panel {
    min-height: 280px;
  }

  .category-pathway-panel-number {
    font-size: 4rem;
  }

  .category-card p,
  .tool-card p,
  .article-card p {
    min-height: 0;
  }

  .photo-panel img {
    min-height: 450px;
  }

  .photo-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .step {
    grid-template-columns: 44px 1fr;
    padding: 12px 4px;
  }

  .step > span {
    width: 44px;
    height: 44px;
  }

  .article-featured {
    display: block;
  }

  .article-featured .article-visual {
    min-height: 230px;
  }

  .final-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 55px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .resource-controls {
    grid-template-columns: 1fr;
  }

  .article-header {
    padding-top: 65px;
  }

  .article-header h1 {
    font-size: clamp(2.6rem, 12vw, 4.3rem);
  }

  .article-content p {
    font-size: 1.08rem;
  }

  .reading-progress {
    top: 72px;
  }
}

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

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

  .floating-card,
  .hero-orb {
    animation: none;
  }
}
