/* ==================== RESET & VARIABLES ==================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --bg-dark: #07132a;
  --bg-darker: #050e22;
  --bg-mid: #0a1a3a;
  --bg-light: #0d2145;
  --bg-hero: #000a1a;
  --green: #6fae76;
  --green-hover: #7ec485;
  --text: #d6d7d5;
  --text-light: #d6d7d5;
  --text-muted: #7d8895;
  --text-dark: #666666;
  --border: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.32);
  --border-section: rgba(255, 255, 255, 0.08);
  --logo-first: #5e8f88;
  --logo-second: #7fafa6;
  --logo-third: #4e7b75;

  /* Spacing Tokens */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  /* background: var(--bg-darker); */
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==================== SKIP LINK ==================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

p {
  font-size: clamp(0.875rem, 1.5vw, 0.90625rem);
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ==================== CONTAINER ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  border: 1.5px solid var(--green);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}

.btn:focus-visible {
  outline: 2px solid var(--green-hover);
  outline-offset: 2px;
}

.btn-large {
  padding: 15px;
  letter-spacing: 1.2px;
  border: none;
}

.btn-large:hover {
  transform: translateY(-1px);
}

.btn svg {
  width: 14px;
  height: 14px;
}

.btn-large svg {
  width: 16px;
  height: 16px;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  background: rgba(7, 19, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: unset;
  padding-bottom: unset;
}

/* Logo */
.logo {
  display: flex;
  align-items: flex-start;
  margin-right: auto;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: 120px;
}

.logo-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-right: 8px;
}

.logo-bars span {
  width: 5px;
  border-radius: 1px;
  display: block;
}

.logo-bars span:nth-child(1) {
  background: var(--logo-first);
  height: 18px;
}

.logo-bars span:nth-child(2) {
  background: var(--logo-second);
  height: 22px;
}

.logo-bars span:nth-child(3) {
  background: var(--logo-third);
  height: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1;
}

.logo-sub {
  font-size: 9.5px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  margin-top: 3px;
  margin-left: -30px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-list a {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 4px 0;
  position: relative;
  transition: color 0.25s;
}

.nav-list a:hover {
  color: var(--green);
}

.nav-list a:focus-visible {
  outline: 2px solid var(--green-hover);
  outline-offset: 4px;
}

.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

.nav .btn {
  display: none;
}

.btn-header {
  margin-left: 32px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger:focus-visible {
  outline: 2px solid var(--green-hover);
  outline-offset: 2px;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 76px;
  background: var(--bg-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}

.hero-left {
  max-width: 500px;
}

.hero-left h1 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: var(--space-lg);
  letter-spacing: -1.5px;
}

.hero-left p {
  font-size: clamp(0.875rem, 1.5vw, 0.90625rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 420px;
}

.hero-right {
  flex: 1;
  max-width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-diagram img {
  width: 100%;
  height: auto;
}

/* ==================== SECTION COMMON ==================== */
.section-label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green);
  margin-bottom: 12px;
}

/* ==================== DIFFERENCE ==================== */
.difference {
  padding: 80px 60px 90px;
  text-align: center;
  background: #ffffff;
}

.difference h2 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: var(--space-2xl);
  letter-spacing: -0.3px;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step {
  flex: 1;
  text-align: left;
  padding: 0;
  min-width: 0;
  position: relative;
  z-index: 1;
  background-image: url("images/arrow_icon.webp");
  background-repeat: no-repeat;
  background-size: 70px;
  background-position-y: 32px;
  background-position-x: 120px;
}

.step:last-child {
  background: none;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px 0;
  background: #ffffff;
}

.step-circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-dark);
  max-width: 200px;
}

/* ==================== PROBLEM ==================== */
.problem-inner {
  margin: 0 auto;
  border: 1px solid var(--green);
  padding: 52px 24px 24px;
  text-align: center;
  background: var(--bg-hero);
}

.problem-inner h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.problem-grid {
  display: flex;
  justify-content: space-between;
  gap: 2px;
}

.problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 215px;
  border-right: 1px solid var(--green);
}

.problem-item:last-child {
  border: none;
}

.problem-item img {
  height: 60px;
  width: auto;
}

.problem-item span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==================== IMPACT ==================== */
.impact {
  padding: 70px 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.impact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.impact-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
}

.impact-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.impact h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2xl);
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 2px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 280px;
  border-right: 1px solid var(--green);
}

.stat:last-child {
  border: none;
}

.stat img {
  height: 60px;
  width: auto;
}

.stat-val {
  font-size: clamp(1.75rem, 3vw, 2.1875rem);
  font-weight: 400;
  color: var(--green);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-top: var(--space-lg);
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 155px;
}

/* ==================== FOOTER CTA ==================== */
.footer-cta {
  padding: 36px 60px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(111, 174, 118, 0.03);
}

.footer-icon img {
  height: 32px;
}

.footer-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.footer-text .footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.footer-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .hero-right {
    max-width: 400px;
  }

  .container {
    padding: 60px 40px;
  }
}

@media (max-width: 900px) {

  .why-exist .container,
  .different .container,
  .building .container,
  .looking-forward .container {
    flex-direction: column;
    padding: 60px 32px;
    gap: 32px;
  }

  .about-hero-image {
    width: 50% !important;
  }

  .why-exist-left,
  .different-left,
  .building-left,
  .looking-left {
    flex: none !important;
    max-width: 100%;
  }

  .beliefs-grid {
    flex: none !important;
    padding-left: unset !important;
    flex-direction: column;
    margin-top: 40px;
  }

  .belief-card {
    border: unset !important;
  }

  .different-center {
    flex: none !important;
  }

  .different-right {
    flex: 0 0 138px !important;
  }

  .standard .container {
    gap: 30px;
    flex-direction: column;
  }

  .standard-header {
    flex: none !important;
  }

  .standard-grid {
    padding: unset !important;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 30px 0;
  }

  .standard-card {
    flex: 0 0 50%;
    border-right: unset;
    padding: 0 10px !important;
    border: unset !important;
  }

  .standard-card:nth-child(2n) {
    border-left: 1px solid;
  }

  .standard-card:nth-child(n + 3) {
    border-top: 1px solid;
    padding-top: 30px;
  }

  .standard-card {}

  .how-work .container {
    flex-direction: column;
  }

  .how-work-header {
    flex: none !important;
  }

  .how-work-steps {
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 25px !important;
  }

  .how-work-steps::before {
    display: none;
  }

  .step-about {
    flex: 0 0 40% !important;
    border-right: unset;
    padding: 0 10px !important;
    border: unset !important;
  }

  .building-left {
    padding-bottom: 0 !important;
  }

  .building-center {
    padding-top: 0 !important;
    align-items: start !important;
  }

  .looking-forward .container {
    display: flex;
    gap: 40px !important;
  }

  .looking-right {
    width: 100% !important;
    text-align: center;
  }

  .looking-right a.btn {
    text-align: center;
    justify-content: center;
  }

  .about-footer .container {
    display: unset !important;
    padding: unset !important;
  }

  .about-footer-left {
    display: flex !important;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
  }

  .about-footer-center {
    margin-bottom: 20px;
    flex-direction: column;
    gap: 15px !important;
  }

  .container {
    padding: 48px 32px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-mid);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px;
    gap: 0;
    margin-left: 0;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    font-size: 13px;
    padding: 14px 16px;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 1.2px;
  }

  .nav-list a.active::after {
    display: none;
  }

  .nav .btn {
    display: inline-flex;
    margin-top: 24px;
    width: auto;
  }

  .btn-header {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left p {
    max-width: 100%;
  }

  .hero-right {
    max-width: 100%;
    margin-top: 40px;
  }

  .placeholder-diagram {
    height: 300px;
  }

  .difference,
  .problem-inner,
  .impact {
    padding: 60px 32px;
  }

  .steps {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .step {
    min-width: 200px;
    max-width: 240px;
    background: none;
  }

  .problem-grid {
    flex-wrap: wrap;
    gap: 28px;
  }

  .problem-item {
    border: none;
  }

  .stat {
    border: none;
  }

  .stats {
    flex-wrap: wrap;
    gap: 36px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .header .container {
    padding: 40px 20px;
  }

  .hero-content {
    gap: 0;
  }

  .container {
    padding: 40px 20px;
  }

  .hero-left h1 {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
  }

  .difference,
  .impact {
    padding: 48px 20px;
  }

  .problem-inner {
    padding: 36px 20px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 280px;
    background: none;
  }

  .stat {
    border: none;
    min-width: 100%;
  }

  .problem-grid {
    flex-direction: column;
    align-items: center;
  }

  .problem-item {
    border: none;
    width: 100%;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }

  .footer-cta {
    padding: 28px 20px;
  }
}

/*==================================================
ABOUT HERO
==================================================*/

.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-hero);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 76px;
}

.about-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 32px;

  padding-bottom: 32px;
}

.about-hero-content {
  display: flex;
  align-items: flex-start;
}

/* Reuse your existing .hero-left styles */
.about-hero .hero-left {
  max-width: 490px;
}

/* only spacing */
.about-hero .hero-left h1 {
  margin-bottom: 28px;
}

.about-hero .hero-left p {
  margin-bottom: 20px;

  max-width: 480px;
}

/* Image */

.about-hero-image {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;

  width: 64%;

  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center right;

  display: block;
}

/* Dark blend */

.about-hero-image::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      #000a1a 0%,
      rgba(0, 10, 26, 0.88) 12%,
      rgba(0, 10, 26, 0.55) 24%,
      rgba(0, 10, 26, 0.18) 40%,
      rgba(0, 10, 26, 0) 62%);

  z-index: 1;
}

/* Top fade */

.about-hero-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(180deg,
      rgba(0, 10, 26, 0.25),
      rgba(0, 10, 26, 0) 18%,
      rgba(0, 10, 26, 0.12) 100%);

  z-index: 2;
}

.why-exist .container,
.our-beliefs .container,
.different .container,
.standard .container,
.how-work .container,
.looking-forward .container {
  padding: 40px 32px;
}

.building .container {
  padding: 0px 32px;
}

.why-exist,
.different,
.how-work,
.building {
  background: #0a1a3a;
}

/*==================================================
why-exist
==================================================*/

.why-exist .container {
  display: flex;
  gap: 30px;
}

section.why-exist {
  background-image: url(/images/linebg1.webp);
  background-repeat: no-repeat;
  background-size: 500px;
  background-position-x: left;
  background-position-y: bottom;
  border-top: 1px solid rgb(255 255 255 / 22%);
  background: #0a1a3a;
}

.why-exist-left {
  flex: 0 0 290px;
}

.why-exist-left h2 {
  font-size: 18px;
}

.why-exist-center {
  flex: 1;
  max-width: 630px;
}

.why-exist-right {
  flex: 0 0 230px;
  border-left: 1px solid var(--green);
  padding-left: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-exist-right p {
  color: #fff;
  font-size: 16px;
}

.why-exist-right img {
  height: auto;
  width: 29px;
  margin-bottom: 20px;
}

/*==================================================
why-beliefs
==================================================*/

.beliefs-grid {
  display: flex;

  padding-left: 100px;
}

.belief-card {
  flex: 1;
  display: flex;
  gap: 20px;
}

.belief-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.2rem;
}

.belief-icon img {
  height: 50px;
}

.belief-content h3 {
  color: #07132a;
  font-size: 16px;
  margin-bottom: 8px;
}

.belief-card {
  flex: 1;
  display: flex;
  gap: 20px;
  border-right: 1px solid;
  padding-right: 30px;
  margin-right: 30px;
}

.belief-card:last-child {
  padding-right: unset;
  margin-right: unset;
  border: unset;
}

.belief-content h3 {
  color: #07132a;
  font-size: 18px;
}

/*==================================================
different
==================================================*/

.different .container {
  display: flex;
  gap: 30px;
}

.different-left {
  flex: 0 0 225px;
}

.different-left h2 {
  font-size: 18px;
}

.different-center {
  flex: 0 0 600px;
}

.different-right {
  flex: 0 0 260px;
  padding-left: 40px;
  border-left: 1px solid #6fae76;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.midint_head {
  color: #6fae76 !important;
}

.comparison-table {
  width: 100%;
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--border);
  font-size: clamp(0.875rem, 1.5vw, 0.90625rem);
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 2px solid var(--border);
}

.comparison-row .others {
  flex: 1;
  font-size: clamp(0.875rem, 1.5vw, 0.90625rem);
  color: var(--text-muted);
  padding-left: 25px;
}

.comparison-row .arrow {
  flex: 0 0 70px;
  text-align: center;
  color: var(--green);
  font-size: 18px;
}

p.highlight {
  font-size: clamp(0.875rem, 1.5vw, 4.90625rem);
  color: #6fae76;
}

.comparison-row .midint {
  flex: 1;
  font-size: clamp(0.875rem, 1.5vw, 0.90625rem);
  color: var(--text);
  padding-left: 25px;
}

/*==================================================
standard
==================================================*/
.standard .container {
  display: flex;
  gap: 30px;
}

.standard-grid {
  display: flex;
  padding-left: 94px;
}

.standard-header {
  flex: 0 0 225px;
}

.standard-header-left h2 {
  font-size: 18px;
  color: #07132a;
  margin-bottom: 10px;
}

.standard-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #07132a;
}

.standard-card .icon svg {
  height: 60px;
}

.standard-grid {
  display: flex;
  flex: 100%;
  width: 100%;
}

.standard-card {
  border-right: 1px solid;
  padding: 0 32px;
  text-align: center;
}

.standard-card:first-child {
  padding-left: 0;
}

.standard-card:last-child {
  padding-right: 0;
  border: unset;
}

.standard-card .icon img {
  height: 40px;
}

/*==================================================
how-work
==================================================*/
.how-work .container {
  display: flex;
  gap: 30px;
}

.how-work-steps {
  display: flex;
}

.how-work-header {
  flex: 0 0 225px;
}

.how-work-header h2 {
  font-size: 18px;
}

.how-work-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.how-work-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 1px;
  border-top: 1px dashed rgb(111 174 118);
}

.step-about {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-about .step-icon {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: #0a1a3a;
}

.step-about h3 {
  font-size: 16px;
  font-weight: 600;
}

.step-icon img {
  height: 34px;
}

/*==================================================
building
==================================================*/
.building .container {
  display: flex;
  gap: 30px;
}

.building {
  border-top: 1px solid var(--border);
}

.building-left,
.building-center {
  margin: 40px 0;
}

.building .builing-right img {
  width: 300px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.building-center {
  border-right: 1px solid #6fae76;
  padding-right: 40px;
}

/*==================================================
looking-forward
==================================================*/

section.looking-forward {
  background-image: url(file:///G:/xampp/htdocs/apisec/wp-content/themes/apisec/MidInt/images/lookinfwd.webp);
  background-repeat: no-repeat;

  background-position-x: right;
  background-position-y: bottom;
}

.looking-forward .container {
  display: flex;
  gap: 120px;
}

.looking-left {
  flex: 0 0 290px;
}

.looking-left h2 {
  font-size: 18px;
  color: #07132a;
  margin-bottom: 10px;
}

.looking-center strong {
  color: #07132a;
}

.looking-right a.btn-link {
  color: #07132a;
  text-decoration: none;
}

.looking-right a.btn-link {
  color: #07132a;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.looking-right {
  justify-content: center;
  display: flex;
  flex-direction: column;
  width: 400px;
  gap: 6px;
}

.looking-left .highlight-text {
  color: var(--green);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.looking-center {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

/* ---------- FOOTER ---------- */

.about-footer .container {
  background: var(--bg-dark);
  /* border-top: 1px solid var(--border); */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-footer-bottom .container {
  background: var(--bg-dark);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.about-footer {
  padding: 40px 32px;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-footer-left .logo-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.about-footer-left .tagline {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  line-height: 1.3;
}

.about-footer-center {
  display: flex;
  gap: 32px;
}

.about-footer-center a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.about-footer-center a:hover {
  color: var(--green);
}

.about-footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-footer-right a {
  color: var(--text-muted);
  text-decoration: none;
}

.about-footer-right a:hover {
  color: var(--green);
}

.about-footer-bottom {
  padding: 16px 32px;
  background: var(--bg-dark);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.about-footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 20px;
}

.about-footer-bottom a:hover {
  color: var(--green);
}

/* ==================== SELECTION ==================== */
::selection {
  background: var(--green);
  color: #fff;
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .header,
  .footer-cta,
  .hamburger,
  .skip-link,
  .impact-bg {
    display: none;
  }

  .container {
    max-width: 100%;
    padding: 20px;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ==================== APPROACH PAGE ==================== */
.approach-hero {
  position: relative;
  min-height: 555px;
  display: flex;
  align-items: center;
  margin-top: 76px;
  overflow: hidden;
  background: var(--bg-hero);
}

.approach-hero .container {
  position: relative;
  z-index: 2;
}

.approach-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

p.green-text {
  color: #6fae76;
}

.approach-hero-left {
  width: min(100%, 510px);
  flex-shrink: 0;
}

.approach-hero-left h1 {
  font-size: clamp(2rem, 4.8vw, 3.125rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.approach-hero-left h1 span,
.green-text,
.measurement-heading h2 span {
  color: var(--green);
}

.approach-hero-left p {
  font-size: clamp(0.875rem, 1.5vw, 0.90625rem);
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 480px;
}

.green-text {
  font-weight: 700;
}

.approach-hero-right {
  flex: 1;
  min-height: 430px;
  align-self: stretch;
  position: relative;
}

.atrium-placeholder {
  position: absolute;
  inset: 0 -120px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      var(--bg-hero) 0%,
      rgba(0, 10, 26, 0.86) 20%,
      rgba(0, 10, 26, 0.12) 60%),
    radial-gradient(circle at 58% 49%,
      rgba(111, 174, 118, 0.38) 0 5%,
      transparent 5.5%),
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.16) 0 2px,
      transparent 2px 36px),
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, 0.12) 0 2px,
      transparent 2px 36px),
    linear-gradient(135deg, #051124 0%, #13283d 48%, #010713 100%);
}

.atrium-placeholder span {
  position: absolute;
  inset: 16%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transform: rotate(45deg);
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.04),
    0 0 0 110px rgba(255, 255, 255, 0.035),
    0 0 0 165px rgba(255, 255, 255, 0.025);
}

.understanding,
.measurement {
  padding: 52px 60px;
  background: #fff;
  color: var(--bg-dark);
}

.understanding-grid,
.measurement-grid,
.refusal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(340px, 1fr) minmax(210px,
      260px);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.understanding-title {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
}

.line-icon-wrap svg,
.principle-card svg,
.frame-icon svg,
.measure-item svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon-wrap img {
  width: 60px;
}

.line-icon-wrap {
  color: var(--green);
}

.line-icon-wrap svg {
  width: 50px;
  height: 50px;
}

.understanding-title h2,
.measurement-heading h2,
.refusal-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.18;
  color: var(--bg-dark);
  letter-spacing: -0.4px;
}

.understanding-copy {
  padding-left: 42px;
  border-left: 1px solid rgba(7, 19, 42, 0.16);
}

.understanding-copy p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--bg-dark);
  margin-bottom: 15px;
}

.quote-block {
  min-height: 136px;
  padding-left: 34px;
  border-left: 1px solid rgba(7, 19, 42, 0.16);
}

.quote-block span {
  display: block;
  height: 32px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 0.72;
}

.quote-block p {
  margin-top: 18px;
  color: var(--bg-dark);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.38;
}

.quote-block p::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-top: 18px;
  background: var(--green);
}

.principles,
.frame,
.refusal {
  padding: 44px 60px 50px;
  background: var(--bg-hero);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.principle-card {
  min-height: 360px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: linear-gradient(180deg,
      rgba(13, 33, 69, 0.78),
      rgba(4, 14, 31, 0.84));
}

article.principle-card img {
  height: 40px;
}

.p_title_numer {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  align-items: center;
}

.principle-card strong {
  display: inline-block;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
  border-bottom: 2px solid currentColor;
  line-height: 30px;
}

.principle-card svg {
  width: 46px;
  height: 46px;
  margin: 16px 0 28px;
  color: var(--green);
}

.principle-card h3 {
  min-height: 48px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.principle-card p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.frame {
  padding-top: 34px;
  border-top: 1px solid var(--border);
}

.frame-layout {
  display: grid;
  grid-template-columns: minmax(250px, 300px) 1fr;
  gap: 34px;
}

.frame-heading {
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.frame-heading h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.4px;
}

.frame-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.frame-steps article {
  position: relative;
  background-image: url(images/arrow_icon.webp);
  background-repeat: no-repeat;
  background-size: 96px;
  background-position-y: 24px;
  background-position-x: 54px;
}

.frame-steps strong {
  display: block;
  color: var(--green);
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
}

.frame-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
}

.frame-icon svg {
  width: 25px;
  height: 25px;
}

.frame-steps h3 {
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.frame-steps p {
  color: var(--text);
  font-size: 12px;
  line-height: 1.5;
}

.measurement-grid {
  grid-template-columns: minmax(250px, 315px) repeat(3, 1fr) minmax(210px,
      260px);
  gap: 34px;
}

.measurement-heading,
.measure-item {
  padding-right: 28px;
  border-right: 1px solid rgba(7, 19, 42, 0.16);
}

article.measure-item img {
  height: 44px;
}

.measure-item h3 {
  color: var(--bg-dark);
  font-size: 16px;
  margin-bottom: 10px;
}

.measure-item p {
  color: var(--bg-dark);
  font-size: 12px;
  line-height: 1.55;
}

.measurement .quote-block {
  padding-left: 0;
  border-left: 0;
}

.refusal {
  position: relative;
  overflow: hidden;
}

.refusal::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: min(420px, 40vw);
  height: 190px;
  background: url("images/linebg.png") left bottom / contain no-repeat;
  opacity: 0.55;
}

.refusal .container {
  position: relative;
  z-index: 1;
}

.refusal-heading {
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.refusal-heading h2 {
  color: var(--text);
}

.refusal-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.refusal-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.refusal-list li::before,
.refusal-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 1.5px;
  background: var(--green);
}

.refusal-list li::before {
  transform: rotate(45deg);
}

.refusal-list li::after {
  transform: rotate(-45deg);
}

.quote-dark {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.quote-dark p {
  color: var(--text);
}

.quote-dark p::after {
  background: var(--text);
}

@media (max-width: 1100px) {
  .approach-hero-content {
    gap: 40px;
  }

  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .frame-layout,
  .measurement-grid {
    grid-template-columns: 1fr;
  }

  .frame-heading,
  .measurement-heading,
  .measure-item {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .approach-hero {
    min-height: auto;
  }

  .approach-hero-content {
    flex-direction: column;
    text-align: left;
  }

  .approach-hero-left {
    width: 100%;
  }

  .approach-hero-right {
    width: 100%;
    min-height: 300px;
  }

  .atrium-placeholder {
    inset: 0;
  }

  .understanding,
  .measurement,
  .principles,
  .frame,
  .refusal {
    padding: 60px 32px;
  }

  .understanding-grid,
  .refusal-grid {
    grid-template-columns: 1fr;
  }

  .understanding-copy,
  .quote-block,
  .refusal-heading {
    padding-left: 24px;
    border-left: 1px solid rgba(7, 19, 42, 0.16);
  }

  .refusal-heading,
  .quote-dark {
    border-left-color: rgba(255, 255, 255, 0.2);
  }

  .principles-grid,
  .frame-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-card {
    min-height: auto;
  }

  .frame-steps article:not(:last-child)::after {
    display: none;
  }

  .measurement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .measurement-heading,
  .measurement .quote-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .approach-hero-left h1 {
    font-size: clamp(2rem, 11vw, 2.55rem);
  }

  .understanding,
  .measurement,
  .principles,
  .frame,
  .refusal {
    padding: 48px 20px;
  }

  .understanding-title {
    grid-template-columns: 1fr;
  }

  .principles-grid,
  .frame-steps,
  .measurement-grid {
    grid-template-columns: 1fr;
  }

  .principle-card h3 {
    min-height: 0;
  }

  .measure-item {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 19, 42, 0.16);
  }

  .measure-item:last-of-type {
    border-bottom: 0;
  }
}

/* === FOOTER === */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(90px, 1fr);
  gap: 40px;
  align-items: center;
  padding-block: 24px 18px;
}

.footer-brand .brand-name {
  font-size: 32px;
}

.footer-brand .brand-subtitle {
  max-width: 170px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(22px, 4vw, 62px);
}

.footer-nav a {
  color: var(--muted-light);
}

.footer-nav a:hover,
.text-link:hover,
.social-links a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.social-links svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: currentColor;
}

.social-links a {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 11px;
  color: rgba(174, 184, 198, 0.55);
  font-size: 11px;
}

.footer-bottom a {
  margin-left: 26px;
  color: inherit;
  text-decoration: none;
}

.approach-footer {
  background:
    linear-gradient(90deg,
      rgba(7, 19, 42, 0.98),
      rgba(7, 19, 42, 0.9) 54%,
      rgba(7, 19, 42, 0.55)),
    url("images/about_hero_image.webp") right center / cover no-repeat;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.belief-card.animate-ready,
.outcome-card.animate-ready,
.process-step.animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

.belief-card.animate-in,
.outcome-card.animate-in,
.process-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for child items */
.beliefs-grid.animate-ready .belief-card:nth-child(1),
.standard-right.animate-ready .outcome-card:nth-child(1),
.process-timeline.animate-ready .process-step:nth-child(2) {
  transition-delay: 0.1s;
}

.beliefs-grid.animate-ready .belief-card:nth-child(2),
.standard-right.animate-ready .outcome-card:nth-child(2),
.process-timeline.animate-ready .process-step:nth-child(3) {
  transition-delay: 0.2s;
}

.beliefs-grid.animate-ready .belief-card:nth-child(3),
.standard-right.animate-ready .outcome-card:nth-child(3),
.process-timeline.animate-ready .process-step:nth-child(4) {
  transition-delay: 0.3s;
}

.standard-right.animate-ready .outcome-card:nth-child(4),
.process-timeline.animate-ready .process-step:nth-child(5) {
  transition-delay: 0.4s;
}

/* ============================================
   INSIGHTS PAGE – HERO
   ============================================ */
.insights-hero-page {
  background-color: var(--bg-dark) !important;
}

.insights-hero-page .about-hero-image::before {
  background: linear-gradient(90deg,
      #07132a 0%,
      rgba(0, 10, 26, 0.88) 12%,
      rgba(0, 10, 26, 0.55) 24%,
      rgba(0, 10, 26, 0.18) 40%,
      rgba(0, 10, 26, 0) 62%) !important;
}

.insights-hero {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  margin-top: 76px;
}

.insights-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 420px;
}

.insights-hero-text {
  flex: 0 0 50%;
  padding: 3rem 3rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.insights-hero-text h1 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -1.5px;
}

.green-underline {
  color: var(--green);
  text-decoration-color: var(--green);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.green-text {
  color: var(--green) !important;
  font-weight: 500;
}

.insights-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
}

.insights-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insights-hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   INSIGHTS PAGE – FEATURED PRINCIPLE
   ============================================ */
.featured-principle {
  background: var(--bg-dark);
}

.featured-principle-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-darker);
}

.featured-principle-image {
  overflow: hidden;
}

.featured-principle-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.featured-principle-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-principle-text h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.4px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-read-essay {
  margin-left: auto;
  background: transparent;
  color: #6fae76;
  border: 1px solid #6fae76;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.btn-read-essay:hover {
  background: var(--green);
  border-color: var(--green);
}

.green-separator {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin-bottom: 1.5rem;
  border-radius: 2px;
  margin-top: 15px;
}

/* ============================================
   INSIGHTS PAGE – BROWSE THE JOURNAL
   ============================================ */
.browse-journal {
  background: var(--bg-dark);
  padding: 1rem 0;
}

.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.browse-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  transition: border-color 0.25s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.browse-card:hover {
  border-color: rgba(111, 174, 118, 0.3);
}

.browse-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
}

.browse-icon img {
  height: 40px;
}

.browse-content {
  flex: 1;
}

.browse-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.browse-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.explore-link-green {
  color: var(--green);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s ease;
}

.explore-link-green:hover {
  gap: 0.7rem;
}

/* ============================================
   INSIGHTS PAGE – FEATURED COLLECTION
   ============================================ */
.featured-collection {
  background: var(--bg-dark);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.collection-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow: visible;
  transition: border-color 0.25s ease;
  position: relative;
}

.collection-card:hover {
  border-color: rgba(111, 174, 118, 0.3);
}

.collection-image {
  height: 180px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.9rem;
  margin-top: -18px;
  margin-left: 1.5rem;
  position: relative;
  z-index: 5;
}

.collection-icon img {
  height: 44px;
}

.collection-content {
  padding: 1.5rem;
  padding-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.collection-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.collection-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ============================================
   INSIGHTS PAGE – EXECUTIVE BRIEF
   ============================================ */
.executive-brief {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background:
    linear-gradient(rgb(7 19 42 / 58%), rgb(7 19 42 / 48%)),
    url(images/insights_line_waves_bg.webp) center / cover no-repeat;
}

.executive-brief .container {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.executive-brief-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.executive-brief-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 2rem;
}

.brief-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-read-brief {
  background: var(--green);
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s ease;
}

.btn-read-brief:hover {
  background: var(--green-hover);
}

.brief-action-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease;
}

.brief-action-link:hover {
  color: var(--green);
}

.brief-pdf-mockup {
  background: #f5f5f0;
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.brief-visual {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  justify-content: flex-end;
}

.brief-visual img {
  max-width: 100%;
}

.brief-coffee {
  flex-shrink: 0;
}

.coffee-img {
  width: 140px;
  height: auto;
  border-radius: 6px;
  display: block;
}

.brief-pdf-inner {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 2rem;
}

.brief-pdf-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.brief-pdf-date {
  display: block;
  font-size: 0.7rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.brief-pdf-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.brief-pdf-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(0);
}

/* ============================================
   INSIGHTS PAGE – FIELD NOTES BY INDUSTRY
   ============================================ */
.field-notes-industry {
  background: var(--bg-dark);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.industry-card {
  padding: 1.5rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: #081522;
}

.industry-card:last-child {
  border: 1px solid var(--border-subtle);
}

.industry-icon img {
  height: 44px;
}

.industry-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.industry-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.read-more-link {
  color: var(--green);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.25s ease;
}

.read-more-link:hover {
  gap: 0.6rem;
}

/* ============================================
   INSIGHTS PAGE – WORDS WORTH CARRYING
   ============================================ */
.words-section {
  background: var(--bg-light);
  padding: 1rem 0;
  color: var(--text-dark);
  background-size: cover;
  background:
    linear-gradient(rgb(7 19 42), rgb(7 19 42 / 83%)),
    url(images/insights_dot_bg.webp) center / cover no-repeat;
}

.words-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2rem;
}

.words-quote {
  flex: 1;
}

.quote-icon-green {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.words-quote blockquote p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.explore-link-dark {
  color: var(--green);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
  white-space: nowrap;
}

.explore-link-dark:hover {
  color: var(--green);
  gap: 0.8rem;
}

/* ============================================
   INSIGHTS PAGE – THINKING TOGETHER
   ============================================ */
.thinking-together {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.thinking-together-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 35vw;
  height: 100%;
}

.thinking-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thinking-together-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, var(--bg-dark) 100%);
  pointer-events: none;
}

.thinking-together-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 280px;
  padding: 0 2rem 0 23vw;
}

.thinking-together-content {
  padding: 1rem 3rem 1rem 0;
}

.thinking-together-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  justify-content: center;
}

.btn-continue {
  background: var(--green);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.25s ease;
  text-align: center;
}

.btn-continue:hover {
  background: var(--green-hover);
}

.btn-subscribe {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-subscribe:hover {
  background: rgba(111, 174, 118, 0.1);
}

.subscribe-sub {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.lets_build {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.lets_build_inner {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 280px;
  padding: 0 23vw 0 0;
}

.lets_build_inner_content {
  padding: 1rem 3rem 1rem 2rem;
  z-index: 999;
}

.lets_build_inner_content .section-label {
  margin-bottom: 15px;
}

.lets_build_inner_content_p {
  max-width: 500px;
  margin: 15px 0;
}

.lets_build-left {
  position: absolute;
  top: 0;
  right: 0;
  width: 35vw;
  height: 100%;
}

.lets_build-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, transparent 0%, var(--bg-dark) 100%);
  pointer-events: none;
}

.lets_build-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lets_build_inner_content.animate-ready.animate-in .btn {
  margin-left: 0;
  margin-right: 15px;
  background: var(--green);
  color: #fff;
}

a.explore_solution {
  color: #fff;
  text-decoration: none;
  font-family: "Inter";
  font-size: 14px;
}

a.explore_solution svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   INSIGHTS RESPONSIVE – TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-card {
    border: 1px solid var(--border-subtle);
  }

  .industry-card:nth-child(3n) {
    border: 1px solid var(--border-subtle);
  }

  .industry-card:nth-last-child(-n + 3) {
    border: 1px solid var(--border-subtle);
  }

  .executive-brief-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brief-pdf-mockup {
    margin: 0 auto;
  }

  .brief-visual {
    justify-content: center;
  }

  .thinking-together-inner {
    grid-template-columns: 1fr 1fr;
    padding-left: 2rem;
  }
}

/* ============================================
   INSIGHTS RESPONSIVE – TABLET (≤820px)
   ============================================ */
@media (max-width: 820px) {

  /* Hero mobile */
  .insights-hero-content {
    min-height: auto;
    display: block;
  }

  .insights-hero-text {
    width: 100%;
    padding: 4rem 1.5rem;
  }

  .insights-hero-text h1 {
    font-size: 1.8rem;
  }

  .insights-hero-image {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .insights-hero-image::before {
    display: none;
  }

  /* Featured principle mobile */
  .featured-principle-wrapper {
    grid-template-columns: 1fr;
  }

  .featured-principle-image img {
    min-height: 280px;
  }

  .featured-principle-text h2 {
    font-size: 1.6rem;
  }

  .featured-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .btn-read-essay {
    margin-left: 0;
  }

  /* Browse mobile */
  .browse-grid {
    grid-template-columns: 1fr;
  }

  .browse-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  /* Collection mobile */
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-image {
    height: 200px;
  }

  /* Industry mobile */
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .industry-card {
    border: 1px solid var(--border-subtle);
  }

  .industry-card:nth-child(2n) {
    border: 1px solid var(--border-subtle);
  }

  .industry-card:nth-last-child(-n + 2) {
    border: 1px solid var(--border-subtle);
  }

  /* Words mobile */
  .words-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .words-quote blockquote p {
    font-size: 1.2rem;
  }

  /* Thinking together mobile */
  .thinking-together-inner {
    grid-template-columns: 1fr;
  }

  .thinking-together-content {
    padding: 3rem 1.5rem;
  }

  .thinking-together-actions {
    padding: 0 1.5rem 3rem;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 999;
  }
}

/* ============================================
   INSIGHTS RESPONSIVE – SMALL (≤420px)
   ============================================ */
@media (max-width: 420px) {
  .insights-hero-text {
    padding: 3rem 1rem;
  }

  .insights-hero-text h1 {
    font-size: 1.5rem;
  }

  .featured-principle-text h2 {
    font-size: 1.4rem;
  }

  .executive-brief-text h2 {
    font-size: 1.4rem;
  }

  .brief-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    border: 1px solid var(--border-subtle);
  }

  .industry-card:last-child {
    border: 1px solid var(--border-subtle);
  }

  .thinking-together-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 1.2rem;
  }

  .thinking-together-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
  }
}

/* ANIMATIONS */

.fade-enter-active {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.fade-leave-active {
  display: none;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}