*, *::before, *::after { box-sizing: border-box; }
      html { scroll-behavior: smooth; }

      body {
        margin: 0;
        font-family: var(--font-sans);
        background: var(--bg-primary);
        color: var(--text-primary);
        transition: background 0.3s ease, color 0.3s ease;
      }

      /* ============ HERO ============ */
      .hero {
        padding: 12rem 2rem 8rem;
        max-width: 900px;
        margin: 0 auto; 
        position: relative;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(ellipse 80% 60% at 45% 0%, rgba(var(--accent-primary-rgb), 0.10), transparent 62%),
          radial-gradient(ellipse 70% 50% at 85% 20%, rgba(var(--accent-warm-rgb), 0.06), transparent 60%);
        pointer-events: none;
        opacity: 0.9;
      }

      .hero-label {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent-primary);
        margin-bottom: 1.5rem;
        position: relative;
      }

      .hero h1 {
        font-family: var(--font-serif);
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 400;
        line-height: 1.1;
        margin: 0 0 2rem;
        letter-spacing: -0.02em;
        max-width: 700px;
        position: relative;
      }

      .hero-lead {
        font-size: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.6;
        max-width: 600px;
        position: relative;
      }

      .hero-jump {
        margin-top: 2.25rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        position: relative;
      }

      .jump-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.5rem 0.75rem;
        border-radius: 999px;
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, 0.02);
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 650;
        line-height: 1;
        transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
      }

      .jump-pill svg {
        width: 16px;
        height: 16px;
        stroke: var(--text-muted);
        stroke-width: 2;
        fill: none;
      }

      .jump-pill:hover {
        border-color: rgba(var(--accent-primary-rgb), 0.35);
        background: rgba(var(--accent-primary-rgb), 0.05);
        color: var(--text-primary);
        transform: translateY(-1px);
      }

      .hero-actions {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
        position: relative;
      }

      .hero-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.85rem 1.1rem;
        border-radius: 999px;
        font-size: 0.95rem;
        font-weight: 750;
        text-decoration: none;
        line-height: 1;
        border: 1px solid var(--stroke);
        transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease, background-position 0.6s ease;
        user-select: none;
        isolation: isolate;
      }

      .hero-cta svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        position: relative;
        z-index: 2;
      }

      .hero-cta span {
        position: relative;
        z-index: 2;
      }

      .hero-cta.primary {
        color: #0b1220;
        background: linear-gradient(90deg, var(--accent-primary) 0%, rgba(var(--accent-warm-rgb), 0.85) 50%, var(--accent-primary) 100%);
        background-size: 200% 100%;
        background-position: 100% 0%;
        border-color: rgba(255, 255, 255, 0.18);
      }

      .hero-cta.primary:hover {
        background-position: 0% 0%;
      }

      [data-theme="light"] .hero-cta.primary {
        background: linear-gradient(90deg, #017155 0%, rgba(var(--accent-warm-rgb), 0.9) 50%, #017155 100%);
        background-size: 200% 100%;
        background-position: 100% 0%;
        color: #fff;
      }

      [data-theme="light"] .hero-cta.primary:hover {
        background-position: 0% 0%;
      }

      .hero-cta.secondary {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.02);
      }

      .hero-cta.tertiary {
        color: var(--text-secondary);
        background: transparent;
      }

      .hero-cta:hover,
      .hero-cta:focus-visible {
        transform: translateY(-1px);
        filter: brightness(1.02);
        border-color: rgba(var(--accent-primary-rgb), 0.35);
        outline: none;
      }

      @media (prefers-reduced-motion: reduce) {
        .jump-pill,
        .hero-cta { transition: none; }
        .hero-cta:hover,
        .jump-pill:hover { transform: none; }
      }

      /* ============ SECTION CONTAINER ============ */
      .section {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      /* ============ MISSION SECTION ============ */
      .mission-section {
        padding: 6rem 0;
        border-top: 1px solid var(--stroke);
      }

      .mission-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: start;
      }

      .mission-content {
        max-width: 480px;
      }

	      .section-title {
	        font-family: var(--font-serif);
	        font-size: clamp(1.75rem, 4vw, 2.25rem);
	        font-weight: 400;
        margin: 0 0 1.5rem;
        line-height: 1.2;
      }

      .section-text {
        font-size: 1rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin: 0 0 1.25rem;
      }

      .section-text:last-child {
        margin-bottom: 0;
      }

      .mission-quote {
        position: relative;
        padding-top: 2rem;
      }

      .mission-quote::before {
        content: "“";
        position: absolute;
        top: 0;
        left: 0;
        font-family: var(--font-serif);
        font-size: 6rem;
        line-height: 1;
        color: var(--accent-primary);
        opacity: 0.2;
      }

      .mission-quote blockquote {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-style: italic;
        color: var(--text-primary);
        margin: 0;
        line-height: 1.5;
        padding-left: 0;
      }

      .mission-quote cite {
        display: block;
        margin-top: 1.5rem;
        font-size: 0.85rem;
        font-style: normal;
        color: var(--text-muted);
      }

      .mid-cta {
        margin-top: 3rem;
        border-radius: 16px;
        border: 1px solid var(--stroke);
        background:
          radial-gradient(900px 260px at 15% 0%, rgba(var(--accent-primary-rgb), 0.10), transparent 60%),
          rgba(255, 255, 255, 0.02);
        padding: 1.25rem 1.25rem 1.15rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .mid-cta-title {
        margin: 0;
        font-size: 1rem;
        font-weight: 750;
        letter-spacing: -0.01em;
      }

      .mid-cta-subtitle {
        margin: 0.25rem 0 0;
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.55;
        max-width: 52ch;
      }

      .mid-cta-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        align-items: center;
      }

      /* ============ PROOF BLOCKS ============ */
      .proof-card {
        border-radius: 16px;
        border: 1px solid var(--stroke);
        background: var(--bg-secondary);
        overflow: hidden;
      }

      .proof-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid var(--stroke);
        background: rgba(255, 255, 255, 0.03);
      }

      [data-theme="light"] .proof-card-header {
        background: rgba(0, 0, 0, 0.03);
      }

      .proof-card-title {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        margin: 0;
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--text-secondary);
      }

      .proof-card-title svg {
        width: 16px;
        height: 16px;
        stroke: var(--text-muted);
        stroke-width: 2;
        fill: none;
      }

      .proof-chip {
        font-size: 0.72rem;
        color: var(--text-muted);
        border: 1px solid var(--stroke);
        border-radius: 999px;
        padding: 0.22rem 0.5rem;
        background: rgba(255, 255, 255, 0.02);
        white-space: nowrap;
      }

      .example-body {
        padding: 1rem;
        display: grid;
        gap: 0.85rem;
      }

      .example-subject {
        font-size: 1.05rem;
        font-weight: 800;
        letter-spacing: -0.01em;
        color: var(--text-primary);
        margin: 0;
        line-height: 1.25;
      }

      .example-subtitle {
        margin: 0;
        color: var(--text-secondary);
        font-size: 0.92rem;
        line-height: 1.55;
      }

      .example-meta {
        display: grid;
        gap: 0.55rem;
      }

      .example-meta-row {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 1rem;
        border: 1px solid var(--stroke);
        border-radius: 12px;
        padding: 0.65rem 0.75rem;
        background: rgba(255, 255, 255, 0.02);
      }

      [data-theme="light"] .example-meta-row {
        background: rgba(35, 26, 20, 0.02);
      }

      .example-meta-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-weight: 700;
        white-space: nowrap;
      }

      .example-meta-value {
        font-size: 0.85rem;
        color: var(--text-primary);
        font-weight: 650;
        text-align: right;
      }

      .example-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        padding-top: 0.25rem;
      }

      .example-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 750;
        line-height: 1;
        white-space: nowrap;
        user-select: none;
        padding: 0.65rem 0.8rem;
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, 0.02);
        color: var(--text-primary);
        transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease, background-position 0.6s ease;
        isolation: isolate;
      }

      .example-btn span {
        position: relative;
        z-index: 2;
      }

      .example-btn svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        position: relative;
        z-index: 2;
      }

      [data-theme="light"] .example-btn {
        background: rgba(35, 26, 20, 0.02);
      }

      .example-btn.primary {
        color: #0b1220;
        background: linear-gradient(90deg, var(--accent-primary) 0%, rgba(var(--accent-warm-rgb), 0.85) 50%, var(--accent-primary) 100%);
        background-size: 200% 100%;
        background-position: 100% 0%;
        border-color: rgba(255, 255, 255, 0.18);
      }

      .example-btn.primary:hover {
        background-position: 0% 0%;
      }

      [data-theme="light"] .example-btn.primary {
        background: linear-gradient(90deg, #017155 0%, rgba(var(--accent-warm-rgb), 0.9) 50%, #017155 100%);
        background-size: 200% 100%;
        background-position: 100% 0%;
        color: #ffffff;
        border-color: rgba(0, 0, 0, 0.08);
        transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease, background-position 0.4s ease;
      }

      [data-theme="light"] .example-btn.primary:hover {
        background-position: 0% 0%;
      }

      /* Moving gradient for global btn-primary inside about.html */
      .btn-primary {
        background: linear-gradient(90deg, var(--accent-primary) 0%, rgba(var(--accent-warm-rgb), 0.85) 50%, var(--accent-primary) 100%) !important;
        background-size: 200% 100% !important;
        background-position: 100% 0% !important;
        transition: transform 0.2s ease, background-position 0.6s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
        isolation: isolate;
      }

      .btn-primary:hover {
        background-position: 0% 0% !important;
      }

      .btn-primary span {
        position: relative;
        z-index: 2;
      }

      [data-theme="light"] .btn-primary {
        background: linear-gradient(90deg, #017155 0%, rgba(var(--accent-warm-rgb), 0.9) 50%, #017155 100%) !important;
        background-size: 200% 100% !important;
        background-position: 100% 0% !important;
        transition: transform 0.2s ease, background-position 0.4s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
      }

      .example-btn[aria-disabled="true"] {
        pointer-events: none;
        opacity: 0.9;
      }

      .method-body {
        padding: 1rem;
        display: grid;
        gap: 0.85rem;
      }

      .method-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 0.55rem;
        color: var(--text-secondary);
        font-size: 0.9rem;
        line-height: 1.55;
      }

      .method-list li {
        display: flex;
        gap: 0.6rem;
        align-items: flex-start;
      }

      .method-list svg {
        width: 16px;
        height: 16px;
        stroke: var(--text-muted);
        stroke-width: 2;
        fill: none;
        flex: 0 0 auto;
        margin-top: 0.1rem;
      }

      /* ============ ACCORDIONS ============ */
      .accordion-group {
        margin-top: 1.75rem;
        border: 1px solid var(--stroke);
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.01);
      }

      [data-theme="light"] .accordion-group {
        background: var(--bg-secondary);
      }

      .accordion {
        border-bottom: 1px solid var(--stroke);
      }

      .accordion:last-child {
        border-bottom: none;
      }

      .accordion summary {
        list-style: none;
        cursor: pointer;
        padding: 1rem 1.05rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        color: var(--text-primary);
        font-weight: 750;
        letter-spacing: -0.01em;
        background: rgba(255, 255, 255, 0.02);
      }

      [data-theme="light"] .accordion summary {
        background: rgba(35, 26, 20, 0.02);
      }

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

      .accordion summary:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.12) inset;
      }

      .accordion .chev {
        width: 18px;
        height: 18px;
        border-radius: 8px;
        border: 1px solid var(--stroke);
        display: grid;
        place-items: center;
        color: var(--text-muted);
        flex: 0 0 auto;
        background: rgba(255, 255, 255, 0.02);
        transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
      }

      .accordion[open] .chev {
        transform: rotate(180deg);
        color: var(--accent-primary);
        background: rgba(var(--accent-primary-rgb), 0.06);
      }

      .accordion .chev svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
      }

      .accordion .accordion-body {
        padding: 1rem 1.05rem 1.15rem;
        color: var(--text-secondary);
        line-height: var(--leading-body);
        background: rgba(255, 255, 255, 0.01);
      }

      [data-theme="light"] .accordion .accordion-body {
        background: transparent;
      }

      .accordion .accordion-body p {
        margin: 0 0 0.9rem;
      }

      .accordion .accordion-body p:last-child {
        margin-bottom: 0;
      }

      .accordion .accordion-body ul {
        margin: 0.75rem 0 0;
        padding-left: 1.1rem;
      }

      /* ============ TRUST MODULE ============ */
      .trust-section {
        padding: 6rem 0;
        border-top: 1px solid var(--stroke);
      }

      .trust-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .trust-header .section-text {
        max-width: 58ch;
        margin: 0 auto;
      }

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

      .trust-card {
        border-radius: 16px;
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, 0.02);
        padding: 1.25rem 1.2rem 1.15rem;
        display: grid;
        gap: 0.6rem;
      }

      .trust-card-title {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        margin: 0;
        font-size: 0.95rem;
        font-weight: 800;
        letter-spacing: -0.01em;
      }

      .trust-card-title svg {
        width: 18px;
        height: 18px;
        stroke: var(--accent-primary);
        stroke-width: 2;
        fill: none;
      }

      .trust-card-desc {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.6;
      }

      #mission,
      #how,
      #story,
      #trust,
      #team,
      #values {
        scroll-margin-top: 84px;
      }

      /* ============ STORY SECTION - Handcrafted Editorial Design ============ */
      .story-section {
        padding: 10rem 0 8rem;
        position: relative;
        overflow: hidden;
        background: var(--bg-primary);
      }

      /* Editorial paper texture overlay */
      .story-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: 
          repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(var(--accent-primary-rgb), 0.015) 100px, rgba(var(--accent-primary-rgb), 0.015) 101px),
          repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(var(--accent-primary-rgb), 0.01) 100px, rgba(var(--accent-primary-rgb), 0.01) 101px);
        pointer-events: none;
        opacity: 0.7;
      }

      /* Decorative side element - like a magazine margin note */
      .story-section::after {
        content: "Why we built this";
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: rotate(-90deg) translateX(-50%);
        transform-origin: left center;
        font-family: var(--font-serif);
        font-size: 0.7rem;
        font-weight: 400;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--accent-primary);
        opacity: 0.3;
        white-space: nowrap;
      }

      .story-content {
        min-width: 0;
        position: relative;
        z-index: 1;
      }

      /* Asymmetric intro - left-aligned, editorial feel */
      .story-intro {
        max-width: 900px;
        margin: 0 0 6rem;
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 3rem;
        align-items: end;
      }

      .story-intro .section-eyebrow {
        display: block;
        margin-bottom: 1.5rem;
        position: relative;
        padding-left: 3rem;
      }

      .story-intro .section-eyebrow::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 2rem;
        height: 2px;
        background: var(--accent-primary);
      }

      /* Large chapter number - magazine style */
      .story-chapter-num {
        font-family: var(--font-serif);
        font-size: clamp(8rem, 15vw, 14rem);
        font-weight: 400;
        line-height: 0.75;
        color: transparent;
        -webkit-text-stroke: 1.5px rgba(var(--accent-primary-rgb), 0.2);
        letter-spacing: -0.04em;
        user-select: none;
      }

      .story-intro-text {
        padding-bottom: 1rem;
      }

      .story-headline {
        font-family: var(--font-serif);
        font-size: clamp(2.2rem, 5vw, 3.75rem);
        font-weight: 400;
        line-height: 1.1;
        margin: 0 0 1.75rem;
        letter-spacing: -0.03em;
        max-width: 600px;
      }

      .story-headline .accent {
        color: var(--accent-primary);
        font-style: italic;
        position: relative;
        display: inline-block;
      }

      /* Hand-drawn underline effect */
      .story-headline .accent::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.05em;
        height: 0.15em;
        background: linear-gradient(90deg, 
          transparent 0%, 
          rgba(var(--accent-primary-rgb), 0.3) 5%, 
          rgba(var(--accent-primary-rgb), 0.3) 95%, 
          transparent 100%
        );
        transform: skewX(-12deg) scaleY(0.8);
        border-radius: 2px;
      }

	      .story-lede {
	        font-size: 1.15rem;
	        color: var(--text-secondary);
	        line-height: 1.75;
	        margin: 0;
	        max-width: 520px;
	        position: relative;
	      }

	      .story-lede-stack {
	        display: grid;
	        gap: 1.15rem;
	        max-width: 560px;
	      }

	      .story-lede-continued {
	        font-size: 1.05rem;
	        color: var(--text-secondary);
	        line-height: 1.75;
	        margin: 0;
	        max-width: 560px;
	      }

	      .story-lede-callout {
	        margin: 0;
	        padding-left: 1.25rem;
	        border-left: 3px solid rgba(var(--accent-primary-rgb), 0.55);
	        color: var(--text-primary);
	        font-weight: 600;
	        line-height: 1.7;
	        max-width: 560px;
	      }

	      .story-lede-tags {
	        list-style: none;
	        padding: 0;
	        margin: 0.25rem 0 0;
	        display: flex;
	        flex-wrap: wrap;
	        gap: 0.6rem;
	      }

	      .story-lede-tags li {
	        display: inline-flex;
	        align-items: center;
	        gap: 0.5rem;
	        padding: 0.45rem 0.7rem;
	        border-radius: 999px;
	        border: 1px solid var(--stroke);
	        background: rgba(255, 255, 255, 0.02);
	        color: var(--text-secondary);
	        font-size: 0.82rem;
	        font-weight: 600;
	        letter-spacing: -0.01em;
	      }

	      .story-tag-icon {
	        font-family: var(--font-serif);
	        color: var(--accent-primary);
	        opacity: 0.9;
	        line-height: 1;
	      }

	      /* Editorial pull quote marker */
	      .story-lede::first-letter {
	        font-family: var(--font-serif);
	        font-size: 3.5rem;
	        float: left;
        line-height: 0.8;
        margin-right: 0.75rem;
        margin-top: 0.15rem;
        color: var(--accent-primary);
        font-weight: 400;
      }

      /* ============ Quote Block - Editorial Pull Quote ============ */
      .story-quote-block {
        max-width: 900px;
        margin: 0 auto 5rem;
        padding: 4rem 0;
        position: relative;
      }

      .story-quote-block::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
        border-radius: 2px;
      }

      .story-pullquote {
        font-family: var(--font-serif);
        font-size: clamp(1.5rem, 3.5vw, 2.25rem);
        font-weight: 400;
        line-height: 1.45;
        color: var(--text-primary);
        margin: 0;
        text-align: center;
        position: relative;
        padding: 0 2rem;
      }

      .quote-mark {
        font-family: var(--font-serif);
        font-size: 6rem;
        line-height: 0;
        color: var(--accent-primary);
        opacity: 0.15;
        position: absolute;
        top: 0.5rem;
        left: -1rem;
      }

      .story-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2.5rem;
      }

      .author-line {
        width: 40px;
        height: 2px;
        background: var(--stroke-strong);
      }

      .author-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
      }

      .author-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: -0.01em;
      }

      .author-role {
        font-size: 0.85rem;
        color: var(--accent-primary);
        font-weight: 500;
      }

      .author-location {
        font-size: 0.8rem;
        color: var(--text-muted);
      }

      /* ============ Story Origin - Editorial Narrative Design ============ */
      .story-origin {
        max-width: 800px;
        margin: 0 auto 5rem;
        position: relative;
      }

      /* Marker with timeline accent */
      .origin-marker {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .marker-line {
        flex: 0 0 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-primary), transparent);
      }

      .marker-label {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--accent-primary);
        padding: 0.35rem 0.75rem;
        border: 1px solid rgba(var(--accent-primary-rgb), 0.3);
        border-radius: 4px;
        background: rgba(var(--accent-primary-rgb), 0.08);
      }

      /* Context badges */
      .origin-context {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
      }

      .context-badge {
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: var(--text-muted);
        padding: 0.4rem 0.65rem;
        border: 1px solid var(--stroke);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.02);
      }

      /* Narrative content */
      .origin-narrative {
        margin-bottom: 2.5rem;
      }

      .origin-headline {
        font-family: var(--font-serif);
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        font-weight: 400;
        line-height: 1.25;
        margin: 0 0 1rem;
        letter-spacing: -0.02em;
        color: var(--text-primary);
      }

      .origin-body {
        font-size: 1.1rem;
        line-height: 1.75;
        color: var(--text-secondary);
        margin: 0;
        max-width: 540px;
      }

      .origin-body em {
        color: var(--accent-primary);
        font-style: normal;
        font-weight: 600;
        position: relative;
      }

      .origin-body em::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: rgba(var(--accent-primary-rgb), 0.3);
        border-radius: 1px;
      }

      /* Pillars - Three columns with numbers */
      .origin-pillars {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--stroke);
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--stroke);
      }

      .pillar {
        background: var(--bg-secondary);
        padding: 1.5rem 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        position: relative;
        transition: background 0.2s ease;
      }

      .pillar:hover {
        background: rgba(var(--accent-primary-rgb), 0.04);
      }

      .pillar-num {
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 400;
        color: rgba(var(--accent-primary-rgb), 0.25);
        line-height: 1;
        letter-spacing: -0.03em;
      }

      .pillar-content {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
      }

      .pillar-content strong {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: -0.01em;
      }

      .pillar-content span {
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.45;
      }

      .pillar-content em {
        color: var(--accent-primary);
        font-style: normal;
        font-weight: 600;
      }

      /* ============ Manifesto Statement Block ============ */
      .story-manifesto-block {
        max-width: 720px;
        margin: 0 auto 6rem;
        padding: 3.5rem 2rem;
        text-align: center;
        position: relative;
      }

      /* Decorative elements */
      .manifesto-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .deco-line {
        width: 50px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--stroke-strong), transparent);
      }

      .deco-star {
        font-size: 1rem;
        color: var(--accent-primary);
        opacity: 0.6;
      }

      /* Main statement */
      .manifesto-statement {
        font-family: var(--font-serif);
        font-size: clamp(1.4rem, 3.5vw, 1.85rem);
        font-weight: 400;
        line-height: 1.5;
        color: var(--text-primary);
        margin: 0 0 2rem;
        letter-spacing: -0.015em;
      }

      .manifesto-emphasis {
        display: block;
        margin-top: 0.5rem;
        color: var(--accent-primary);
        font-style: italic;
        position: relative;
      }

      /* Signature line */
      .manifesto-signature {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
      }

      .sig-dash {
        width: 20px;
        height: 2px;
        background: var(--accent-primary);
        opacity: 0.5;
      }

      .sig-text {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-muted);
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .origin-pillars {
          grid-template-columns: 1fr;
        }

        .pillar {
          padding: 1.25rem;
          flex-direction: row;
          align-items: flex-start;
          gap: 1rem;
        }

        .pillar-num {
          font-size: 1.5rem;
          flex-shrink: 0;
          width: 2rem;
        }

        .story-manifesto-block {
          padding: 2.5rem 1rem;
        }

        .manifesto-statement {
          font-size: 1.25rem;
        }
      }

      @media (max-width: 480px) {
        .origin-headline {
          font-size: 1.35rem;
        }

        .origin-body {
          font-size: 1rem;
        }

        .context-badge {
          font-size: 0.68rem;
        }
      }

      /* Light theme adjustments */
      [data-theme="light"] .context-badge {
        background: rgba(0, 0, 0, 0.02);
      }

      [data-theme="light"] .pillar {
        background: #fff;
      }

      [data-theme="light"] .pillar:hover {
        background: rgba(1, 113, 85, 0.04);
      }

      [data-theme="light"] .pillar-num {
        color: rgba(1, 113, 85, 0.2);
      }

      [data-theme="light"] .pillar-content em {
        color: #047857;
      }

      [data-theme="light"] .origin-body em {
        color: #047857;
      }

      [data-theme="light"] .origin-body em::after {
        background: rgba(1, 113, 85, 0.25);
      }

      [data-theme="light"] .marker-label {
        background: rgba(1, 113, 85, 0.08);
        border-color: rgba(1, 113, 85, 0.25);
        color: #047857;
      }

      [data-theme="light"] .marker-line {
        background: linear-gradient(90deg, #047857, transparent);
      }

      [data-theme="light"] .manifesto-emphasis {
        color: #047857;
      }

      [data-theme="light"] .deco-star {
        color: #047857;
      }

      [data-theme="light"] .sig-dash {
        background: #047857;
      }

      /* ============ Contrast - Before/After Split ============ */
      .story-contrast {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
      }

      .contrast-side {
        padding: 3rem;
        position: relative;
      }

      .contrast-before {
        background: linear-gradient(135deg, rgba(200, 80, 80, 0.04), transparent 70%);
        border-radius: 32px 0 0 32px;
        border: 1px solid rgba(200, 80, 80, 0.15);
        border-right: none;
      }

      .contrast-after {
        background: linear-gradient(135deg, transparent 30%, rgba(var(--accent-primary-rgb), 0.06));
        border-radius: 0 32px 32px 0;
        border: 1px solid rgba(var(--accent-primary-rgb), 0.15);
        border-left: none;
      }

      .contrast-label {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .contrast-label-text {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        white-space: nowrap;
      }

      .contrast-before .contrast-label-text {
        color: #c85050;
      }

      .contrast-after .contrast-label-text {
        color: var(--accent-primary);
      }

      .contrast-label-line {
        flex: 1;
        height: 1px;
        background: var(--stroke);
      }

      .contrast-content {
        margin-bottom: 2.5rem;
      }

      .contrast-statement {
        font-family: var(--font-serif);
        font-size: clamp(1.4rem, 2.5vw, 1.9rem);
        font-weight: 400;
        line-height: 1.25;
        margin: 0;
        letter-spacing: -0.02em;
      }

      .contrast-before .contrast-statement {
        color: var(--text-primary);
      }

      .contrast-after .contrast-statement {
        color: var(--accent-primary);
      }

      .contrast-statement:last-child {
        color: var(--text-muted);
        font-style: italic;
      }

      .contrast-after .contrast-statement:last-child {
        color: var(--text-secondary);
      }

      /* Details list */
      .contrast-details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .contrast-detail {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.5;
      }

      .detail-icon {
        color: #c85050;
        font-weight: 600;
        flex-shrink: 0;
        opacity: 0.6;
      }

      /* Features grid */
      .contrast-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .feature-item {
        display: flex;
        flex-direction: column;
        padding: 1.25rem;
        background: var(--bg-secondary);
        border-radius: 16px;
        border: 1px solid var(--stroke);
        transition: all 0.25s ease;
      }

      .feature-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px -8px rgba(var(--accent-primary-rgb), 0.2);
        border-color: rgba(var(--accent-primary-rgb), 0.3);
      }

      .feature-item.featured {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.08), rgba(var(--accent-secondary-rgb), 0.04));
        border-color: rgba(var(--accent-primary-rgb), 0.2);
      }

      .feature-number {
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 400;
        color: var(--accent-primary);
        line-height: 1;
        margin-bottom: 0.35rem;
      }

      .feature-item.featured .feature-number {
        font-size: 2.5rem;
      }

      .feature-label {
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.4;
      }

      /* Divider */
      .contrast-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        position: relative;
        z-index: 2;
      }

      .contrast-divider::before {
        content: "";
        position: absolute;
        top: 3rem;
        bottom: 3rem;
        left: 50%;
        width: 2px;
        background: linear-gradient(180deg, transparent, var(--stroke-strong), transparent);
        transform: translateX(-50%);
      }

      .divider-text {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        font-weight: 400;
        color: var(--text-muted);
        background: var(--bg-primary);
        padding: 0.75rem 0.5rem;
        position: relative;
        z-index: 1;
      }

      /* Responsive contrast section */
      @media (max-width: 900px) {
        .story-contrast {
          grid-template-columns: 1fr;
          gap: 0;
        }

        .contrast-side {
          padding: 2.5rem 2rem;
        }

        .contrast-before {
          border-radius: 24px 24px 0 0;
          border: 1px solid rgba(200, 80, 80, 0.15);
          border-bottom: none;
        }

        .contrast-after {
          border-radius: 0 0 24px 24px;
          border: 1px solid rgba(var(--accent-primary-rgb), 0.15);
          border-top: none;
        }

        .contrast-divider {
          width: 100%;
          height: 60px;
          background: linear-gradient(180deg, rgba(200, 80, 80, 0.04), rgba(var(--accent-primary-rgb), 0.04));
        }

        .contrast-divider::before {
          top: 50%;
          bottom: auto;
          left: 2rem;
          right: 2rem;
          width: auto;
          height: 1px;
          background: var(--stroke);
          transform: translateY(-50%);
        }

        .contrast-features {
          grid-template-columns: 1fr;
        }

        .story-pullquote {
          font-size: 1.3rem;
          padding: 0 1rem;
        }

        .quote-mark {
          font-size: 4rem;
          left: -0.5rem;
        }

      }

	      @media (max-width: 600px) {
        .story-quote-block {
          padding: 3rem 0;
          margin-bottom: 3rem;
        }

	        .contrast-statement {
	          font-size: 1.25rem;
	        }

        .feature-number {
          font-size: 1.75rem;
        }

        .feature-item.featured .feature-number {
          font-size: 2rem;
        }
      }

      [data-theme="light"] .story-section::after {
        opacity: 0.2;
      }

      [data-theme="light"] .contrast-before {
        background: linear-gradient(135deg, rgba(200, 80, 80, 0.06), transparent 70%);
      }

      [data-theme="light"] .contrast-after {
        background: linear-gradient(135deg, transparent 30%, rgba(var(--accent-primary-rgb), 0.08));
      }

      [data-theme="light"] .feature-item {
        background: var(--bg-primary);
      }


      [data-theme="light"] .story-problem {
        background:
          radial-gradient(600px 300px at 80% 50%, rgba(220, 38, 38, 0.03), transparent 60%),
          var(--bg-tertiary);
      }

      [data-theme="light"] .story-solution {
        background:
          radial-gradient(600px 300px at 20% 50%, rgba(1, 113, 85, 0.04), transparent 60%),
          var(--bg-tertiary);
      }

      [data-theme="light"] .story-avatar {
        background:
          radial-gradient(circle at 30% 30%, rgba(1, 113, 85, 0.2), transparent 60%),
          radial-gradient(circle at 70% 70%, rgba(255, 141, 90, 0.15), transparent 60%),
          var(--bg-secondary);
      }

      [data-theme="light"] .story-timeline-icon {
        background: rgba(1, 113, 85, 0.08);
      }

      [data-theme="light"] .story-timeline-icon svg {
        stroke: #059669;
      }

      [data-theme="light"] .timeline-marker {
        border-color: #059669;
        box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
      }

      [data-theme="light"] .story-problem-icon {
        background: rgba(220, 38, 38, 0.08);
      }

      [data-theme="light"] .story-problem-icon svg {
        stroke: #dc2626;
      }

      [data-theme="light"] .story-problem-list li::before {
        color: #dc2626;
      }

      [data-theme="light"] .story-solution-icon {
        background: rgba(1, 113, 85, 0.08);
      }

      [data-theme="light"] .story-solution-icon svg {
        stroke: #059669;
      }

      [data-theme="light"] .story-solution-list li::before {
        color: #059669;
      }

      @media (max-width: 1024px) {
        .story-intro {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .story-chapter-num {
          font-size: 6rem;
          position: absolute;
          top: 0;
          right: 0;
          opacity: 0.5;
        }

        .story-intro-text {
          position: relative;
          z-index: 1;
        }

        .story-section::after {
          display: none;
        }
      }

      @media (max-width: 768px) {
        .story-section {
          padding: 5rem 0;
        }

        .story-chapter-num {
          font-size: 4rem;
        }

        .story-headline {
          font-size: 1.75rem;
        }

        .story-lede::first-letter {
          font-size: 2.5rem;
        }
      }

      /* Remove old story styles */
      .story-shell {
        margin-top: 2.25rem;
        display: grid;
        grid-template-columns: minmax(0, 680px) 420px;
        gap: 2rem;
        align-items: start;
      }

      .story-aside {
        display: grid;
        gap: 1rem;
        position: sticky;
        top: 96px;
      }


      /* ============ APPROACH SECTION — Editorial Bento Layout ============ */
      .approach-section {
        padding: 7rem 0;
        border-top: 1px solid var(--stroke);
        position: relative;
        overflow: hidden;
      }

      /* Organic blob decoration — simple shape, no gradient */
      .approach-blob {
        position: absolute;
        top: 15%;
        right: -8%;
        width: 35vw;
        height: 35vw;
        max-width: 400px;
        max-height: 400px;
        background: rgba(var(--accent-primary-rgb), 0.04);
        border-radius: 60% 40% 55% 45% / 55% 45% 50% 50%;
        pointer-events: none;
        animation: blob-morph 20s ease-in-out infinite;
      }

      @keyframes blob-morph {
        0%, 100% { border-radius: 60% 40% 55% 45% / 55% 45% 50% 50%; transform: rotate(0deg) scale(1); }
        25% { border-radius: 45% 55% 40% 60% / 50% 55% 45% 50%; }
        50% { border-radius: 55% 45% 60% 40% / 45% 50% 55% 50%; transform: rotate(5deg) scale(1.02); }
        75% { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
      }

      /* Header with marker */
      .approach-header {
        margin-bottom: 3.5rem;
        position: relative;
        z-index: 1;
      }

      .approach-label-wrap {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
      }

      .approach-marker {
        width: 8px;
        height: 8px;
        background: var(--accent-primary);
        border-radius: 50%;
        animation: marker-pulse 2.5s ease-in-out infinite;
      }

      @keyframes marker-pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.6; transform: scale(1.15); }
      }

      .approach-headline {
        font-family: var(--font-serif);
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        font-weight: 400;
        line-height: 1.1;
        margin: 0;
        letter-spacing: -0.025em;
      }

      .headline-line {
        display: block;
      }

      .headline-line.accent {
        color: var(--accent-primary);
        font-style: italic;
      }

      /* Bento grid layout */
      .approach-bento {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.25rem;
        position: relative;
        z-index: 1;
      }

      .bento-card {
        background: var(--bg-secondary);
        border: 1px solid var(--stroke);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        transition: transform 0.2s ease, border-color 0.2s ease;
      }

      .bento-card:hover {
        transform: translateY(-2px);
        border-color: rgba(var(--accent-primary-rgb), 0.3);
      }

      /* Manifesto card — large */
      .bento-manifesto {
        grid-column: 1;
        grid-row: 1 / 3;
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        background: var(--bg-secondary);
      }

      .manifesto-number {
        font-family: var(--font-serif);
        font-size: 4.5rem;
        font-weight: 400;
        color: rgba(var(--accent-primary-rgb), 0.15);
        line-height: 1;
        margin-bottom: -0.5rem;
        letter-spacing: -0.05em;
      }

      .manifesto-content {
        flex: 1;
      }

      .manifesto-content h3 {
        font-family: var(--font-serif);
        font-size: 1.6rem;
        font-weight: 400;
        margin: 0 0 1.25rem;
        letter-spacing: -0.015em;
      }

      .manifesto-content p {
        font-size: 1.05rem;
        line-height: 1.65;
        color: var(--text-secondary);
        margin: 0 0 1.25rem;
      }

      .manifesto-content em {
        color: var(--text-primary);
        font-style: italic;
      }

      .manifesto-aside {
        font-size: 0.9rem !important;
        padding-left: 1rem;
        border-left: 2px solid rgba(var(--accent-primary-rgb), 0.3);
        color: var(--text-muted) !important;
      }

      .manifesto-accent {
        display: none;
      }

      /* Stacked small cards */
      .bento-stack {
        grid-column: 2;
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }

      .bento-small {
        flex: 1;
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .bento-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(var(--accent-primary-rgb), 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .bento-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--accent-primary);
      }

      .bento-small-content {
        flex: 1;
      }

      .bento-small-content h4 {
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
        letter-spacing: -0.01em;
      }

      .bento-small-content p {
        font-size: 0.88rem;
        line-height: 1.55;
        color: var(--text-secondary);
        margin: 0;
      }

      .bento-tag {
        display: inline-block;
        padding: 0.3rem 0.7rem;
        background: rgba(var(--accent-primary-rgb), 0.08);
        color: var(--accent-primary);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        border-radius: 6px;
        width: fit-content;
      }

      /* Tech card — wide */
      .bento-tech {
        grid-column: 1 / -1;
        grid-row: 3;
        padding: 2.5rem;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2.5rem;
        align-items: center;
        background: var(--bg-secondary);
      }

      .tech-visual {
        width: 120px;
        height: 120px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .tech-orbit {
        position: absolute;
        inset: 0;
        border: 1px dashed rgba(var(--accent-primary-rgb), 0.25);
        border-radius: 50%;
        animation: orbit-spin 25s linear infinite;
      }

      @keyframes orbit-spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
      }

      .orbit-dot {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--accent-primary);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform-origin: center center;
        margin-top: -4px;
        margin-left: -4px;
      }

      /* Position dots evenly around the circle (120 degrees apart) */
      /* Container is 120px, so circle radius is 60px */
      /* Transform: rotate around center, then translate outward */
      /* Using translateX to move outward from center after rotation */
      .orbit-dot:nth-child(1) { 
        transform: rotate(0deg) translateX(60px);
      }
      .orbit-dot:nth-child(2) { 
        transform: rotate(120deg) translateX(60px);
      }
      .orbit-dot:nth-child(3) { 
        transform: rotate(240deg) translateX(60px);
      }

      .tech-core {
        width: 56px;
        height: 56px;
        background: rgba(var(--accent-primary-rgb), 0.1);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .tech-core svg {
        width: 28px;
        height: 28px;
        stroke: var(--accent-primary);
      }

      .tech-content {
        max-width: 600px;
      }

      .tech-label {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 0.35rem;
        display: block;
      }

      .tech-content h4 {
        font-family: var(--font-serif);
        font-size: 1.35rem;
        font-weight: 400;
        margin: 0 0 0.75rem;
        letter-spacing: -0.015em;
      }

      .tech-content > p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-secondary);
        margin: 0 0 1.5rem;
      }

      .tech-stats {
        display: flex;
        gap: 2.5rem;
      }

      .tech-stat {
        display: flex;
        flex-direction: column;
      }

      .stat-value {
        font-family: var(--font-serif);
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--accent-primary);
        line-height: 1.1;
      }

      .stat-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.03em;
      }

      /* Quote card */
      .bento-quote {
        grid-column: 1 / -1;
        padding: 2rem 2.5rem;
        background: transparent;
        border: none;
        position: relative;
      }

      .bento-quote blockquote {
        font-family: var(--font-serif);
        font-size: 1.2rem;
        font-style: italic;
        line-height: 1.6;
        color: var(--text-secondary);
        margin: 0;
        padding-left: 2rem;
        position: relative;
        max-width: 700px;
      }

      .quote-glyph {
        position: absolute;
        left: 0;
        top: -0.25rem;
        font-size: 3.5rem;
        font-family: var(--font-serif);
        color: rgba(var(--accent-primary-rgb), 0.25);
        line-height: 1;
      }

      /* ===== LIGHT THEME — Clean, professional, no shadows ===== */
      [data-theme="light"] .approach-section {
        background: var(--bg-primary);
      }

      [data-theme="light"] .approach-blob {
        background: rgba(1, 113, 85, 0.05);
      }

      [data-theme="light"] .bento-card {
        background: #fff;
        border-color: rgba(0, 0, 0, 0.08);
      }

      [data-theme="light"] .bento-card:hover {
        border-color: rgba(1, 113, 85, 0.25);
      }

      [data-theme="light"] .bento-manifesto,
      [data-theme="light"] .bento-tech,
      [data-theme="light"] .bento-small {
        background: #fff;
      }

      [data-theme="light"] .manifesto-number {
        color: rgba(1, 113, 85, 0.12);
      }

      [data-theme="light"] .manifesto-content h3,
      [data-theme="light"] .bento-small-content h4,
      [data-theme="light"] .tech-content h4 {
        color: #1a1a1a;
      }

      [data-theme="light"] .manifesto-content p,
      [data-theme="light"] .bento-small-content p,
      [data-theme="light"] .tech-content > p {
        color: #4a4a4a;
      }

      [data-theme="light"] .manifesto-aside {
        color: #6a6a6a !important;
        border-left-color: rgba(1, 113, 85, 0.25);
      }

      [data-theme="light"] .bento-icon {
        background: rgba(1, 113, 85, 0.08);
      }

      [data-theme="light"] .bento-icon svg {
        stroke: #047857;
      }

      [data-theme="light"] .bento-tag {
        background: rgba(1, 113, 85, 0.08);
        color: #047857;
      }

      [data-theme="light"] .tech-orbit {
        border-color: rgba(1, 113, 85, 0.2);
      }

      [data-theme="light"] .orbit-dot {
        background: #047857;
      }

      [data-theme="light"] .tech-core {
        background: rgba(1, 113, 85, 0.08);
      }

      [data-theme="light"] .tech-core svg {
        stroke: #047857;
      }

      [data-theme="light"] .tech-label {
        color: #6a6a6a;
      }

      [data-theme="light"] .stat-value {
        color: #047857;
      }

      [data-theme="light"] .stat-label {
        color: #6a6a6a;
      }

      [data-theme="light"] .bento-quote blockquote {
        color: #4a4a4a;
      }

      [data-theme="light"] .quote-glyph {
        color: rgba(1, 113, 85, 0.2);
      }

      [data-theme="light"] .headline-line.accent {
        color: #047857;
      }

      [data-theme="light"] .approach-marker {
        background: #047857;
      }

      /* ============ VALUES SECTION ============ */
      .values-section {
        padding: 6rem 0;
        border-top: 1px solid var(--stroke);
      }

      .values-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .values-header .section-title {
        margin-bottom: 1rem;
      }

      .values-header .section-text {
        max-width: 480px;
        margin: 0 auto;
      }

      .values-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }

      .value-item {
        text-align: center;
      }

      .value-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(var(--accent-primary-rgb), 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.25rem;
      }

      .value-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--accent-primary);
        stroke-width: 1.5;
        fill: none;
      }

      .value-item h3 {
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
      }

      .value-item p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.5;
      }

      [data-theme="light"] .value-icon {
        background: rgba(1, 113, 85, 0.06);
      }

      [data-theme="light"] .value-icon svg {
        stroke: #059669;
      }

      /* ============ CTA SECTION ============ */
      .cta-section {
        padding: 6rem 0;
        text-align: center;
      }

      .cta-title {
        font-family: var(--font-serif);
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        font-weight: 400;
        margin: 0 0 1rem;
      }

      .cta-text {
        font-size: 1rem;
        color: var(--text-secondary);
        margin: 0 0 2rem;
      }

      .cta-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
      }

	      /* ============ RESPONSIVE ============ */
	      @media (max-width: 1024px) {
        .mission-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
        }

        .mission-content {
          max-width: none;
        }

        .approach-bento {
          grid-template-columns: 1fr;
        }

        .bento-manifesto {
          grid-column: 1;
          grid-row: auto;
        }

        .bento-stack {
          grid-column: 1;
          grid-row: auto;
        }

        .bento-tech {
          grid-column: 1;
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .tech-visual {
          margin: 0 auto;
        }

        .tech-stats {
          justify-content: center;
        }

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

        .how-grid {
          grid-template-columns: 1fr;
        }

        .story-shell {
          grid-template-columns: 1fr;
        }

        .story-aside {
          position: static;
        }

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

      @media (max-width: 768px) {
        .hero { padding: 8rem 1.5rem 5rem; }
        .section { padding: 0 1.5rem; }

        .mission-section,
        .story-section,
        .approach-section,
        .values-section {
          padding: 4rem 0;
        }

        .approach-header,
        .values-header {
          margin-bottom: 2.5rem;
        }

        .approach-headline {
          font-size: clamp(1.8rem, 5vw, 2.5rem);
        }

        .manifesto-number {
          font-size: 3rem;
        }

        .bento-manifesto,
        .bento-small,
        .bento-tech {
          padding: 1.75rem;
        }

        .tech-stats {
          flex-wrap: wrap;
          gap: 1.5rem;
        }

        .bento-quote {
          padding: 1.5rem;
        }

        .bento-quote blockquote {
          font-size: 1.05rem;
        }

        .approach-blob {
          display: none;
        }

        .cta-links {
          flex-direction: column;
          align-items: center;
        }

        .cta-link {
          width: 100%;
          max-width: 280px;
          justify-content: center;
        }

        .mid-cta {
          padding: 1.1rem;
        }

        .mid-cta-actions {
          width: 100%;
        }

        .hero-actions {
          flex-direction: column;
          align-items: flex-start;
        }

        .hero-cta {
          width: 100%;
          justify-content: center;
        }

        .trust-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 480px) {
        .values-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .value-item {
          text-align: left;
          display: flex;
          gap: 1rem;
          align-items: flex-start;
        }

        .value-icon {
          margin: 0;
          flex-shrink: 0;
        }

        .value-item h3 {
          margin-bottom: 0.25rem;
        }
      }
