* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #ffffff;
      color: #171717;
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    /* HEADER */

    .site-header {
      background: #101010;
      border-bottom: 1px solid #292929;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .logo img {
      width: 155px;
      height: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .nav a {
      color: #ffffff;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: 0.2s ease;
    }

    .nav a:hover,
    .nav a.active {
      color: #f45145;
    }

    .nav .header-button {
      background: #f45145;
      color: #ffffff;
      padding: 13px 22px;
      border: 1px solid #f45145;
    }

    .nav .header-button:hover {
      background: #dc4036;
      border-color: #dc4036;
      color: #ffffff;
    }

    /* HERO */

    .about-hero {
      background:
        radial-gradient(
          circle at 83% 15%,
          rgba(244, 81, 69, 0.16),
          transparent 28%
        ),
        radial-gradient(
          circle at 10% 85%,
          rgba(244, 81, 69, 0.07),
          transparent 28%
        ),
        #181818;

      color: #ffffff;
      padding: 95px 0 90px;
    }

    .about-hero-inner {
      max-width: 860px;
    }

    .eyebrow {
      display: inline-block;
      padding: 7px 14px;
      background: rgba(244, 81, 69, 0.12);
      border: 1px solid rgba(244, 81, 69, 0.42);
      color: #ff675d;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 21px;
    }

    .about-hero h1 {
      font-size: clamp(42px, 5vw, 64px);
      line-height: 1.08;
      letter-spacing: -2px;
      margin-bottom: 20px;
    }

    .about-hero h1 span {
      color: #f45145;
    }

    .about-hero p {
      max-width: 760px;
      color: #c5c5c5;
      font-size: 18px;
    }

    /* STORY */

    .story-section {
      padding: 95px 0;
      background: #ffffff;
    }

    .story-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 75px;
      align-items: center;
    }

    .story-panel {
      background: #181818;
      padding: 45px;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .story-panel::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border: 1px solid rgba(244, 81, 69, 0.2);
      border-radius: 50%;
      right: -120px;
      bottom: -120px;
    }

    .story-stat {
      position: relative;
      z-index: 2;
      padding: 22px 0;
      border-bottom: 1px solid #303030;
    }

    .story-stat:first-child {
      padding-top: 0;
    }

    .story-stat:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .story-stat strong {
      display: block;
      color: #f45145;
      font-size: 30px;
      line-height: 1.1;
      margin-bottom: 5px;
    }

    .story-stat span {
      color: #b9b9b9;
      font-size: 14px;
    }

    .story-content > span {
      display: block;
      color: #f45145;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 10px;
    }

    .story-content h2 {
      font-size: clamp(32px, 4vw, 47px);
      line-height: 1.13;
      letter-spacing: -1.3px;
      margin-bottom: 20px;
    }

    .story-content p {
      color: #666666;
      font-size: 16px;
      margin-bottom: 17px;
    }

    /* APPROACH */

    .approach-section {
      padding: 95px 0;
      background: #f7f7f7;
    }

    .section-heading {
      max-width: 750px;
      margin: 0 auto 50px;
      text-align: center;
    }

    .section-heading > span {
      display: block;
      color: #f45145;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 9px;
    }

    .section-heading h2 {
      font-size: clamp(31px, 4vw, 45px);
      line-height: 1.15;
      letter-spacing: -1.2px;
      margin-bottom: 14px;
    }

    .section-heading p {
      color: #6b6b6b;
      font-size: 16px;
    }

    .approach-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .approach-card {
      background: #ffffff;
      border: 1px solid #e3e3e3;
      padding: 28px 25px;
      transition: 0.2s ease;
    }

    .approach-card:hover {
      border-color: #f45145;
      transform: translateY(-4px);
    }

    .approach-number {
      color: #f45145;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 17px;
    }

    .approach-card h3 {
      font-size: 18px;
      margin-bottom: 9px;
    }

    .approach-card p {
      color: #6d6d6d;
      font-size: 14px;
    }

    /* APPS */

    .apps-section {
      padding: 95px 0;
      background: #181818;
      color: #ffffff;
    }

    .apps-section .section-heading p {
      color: #b8b8b8;
    }

    .apps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .app-card {
      background: #202020;
      border: 1px solid #333333;
      padding: 30px;
      transition: 0.2s ease;
    }

    .app-card:hover {
      border-color: #f45145;
      transform: translateY(-4px);
    }

    .app-icon {
      width: 52px;
      height: 52px;
      background: #111111;
      color: #f45145;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .app-card h3 {
      font-size: 21px;
      margin-bottom: 10px;
    }

    .app-card p {
      color: #adadad;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .app-card a {
      color: #f45145;
      font-size: 13px;
      font-weight: 700;
    }

    /* MISSION */

    .mission-section {
      padding: 95px 0;
      background: #ffffff;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .mission-card {
      border: 1px solid #e4e4e4;
      padding: 36px;
    }

    .mission-card span {
      display: block;
      color: #f45145;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      margin-bottom: 9px;
    }

    .mission-card h3 {
      font-size: 26px;
      margin-bottom: 13px;
    }

    .mission-card p {
      color: #696969;
      font-size: 15px;
    }

    /* CTA */

    .cta-wrap {
      padding: 0 0 95px;
      background: #ffffff;
    }

    .cta {
      background: #f45145;
      color: #ffffff;
      text-align: center;
      padding: 60px 35px;
      position: relative;
      overflow: hidden;
    }

    .cta::before,
    .cta::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50%;
    }

    .cta::before {
      width: 300px;
      height: 300px;
      right: -130px;
      top: -180px;
    }

    .cta::after {
      width: 220px;
      height: 220px;
      left: -100px;
      bottom: -140px;
    }

    .cta h2,
    .cta p,
    .cta a {
      position: relative;
      z-index: 2;
    }

    .cta h2 {
      font-size: clamp(31px, 4vw, 46px);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .cta p {
      max-width: 670px;
      color: #fff0ee;
      margin: 0 auto 27px;
      font-size: 16px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 49px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .cta .button {
      background: #171717;
      border: 1px solid #171717;
      color: #ffffff;
    }

    .cta .button:hover {
      background: #ffffff;
      border-color: #ffffff;
      color: #171717;
    }

    /* FOOTER */

    .footer {
      background: #111111;
      color: #ffffff;
      padding: 55px 0 25px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 60px;
      margin-bottom: 45px;
    }

    .footer-brand {
      max-width: 390px;
    }

    .footer-brand img {
      width: 145px;
      margin-bottom: 20px;
    }

    .footer-brand p {
      color: #9e9e9e;
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, minmax(120px, 1fr));
      gap: 45px;
    }

    .footer-column h4 {
      font-size: 15px;
      margin-bottom: 15px;
    }

    .footer-column a {
      display: block;
      color: #a9a9a9;
      font-size: 14px;
      margin-bottom: 9px;
    }

    .footer-column a:hover {
      color: #f45145;
    }

    .footer-bottom {
      border-top: 1px solid #292929;
      padding-top: 23px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #777777;
      font-size: 13px;
    }

    /* EFFECTS & ANIMATIONS */

    @keyframes floatBlob {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-18px, 22px) scale(1.07); }
    }

    @keyframes drift {
      0% { transform: translateY(0) translateX(0); opacity: 0.35; }
      50% { opacity: 0.85; }
      100% { transform: translateY(-90px) translateX(12px); opacity: 0.35; }
    }

    @keyframes pulseDot {
      0% { box-shadow: 0 0 0 0 rgba(244, 81, 69, 0.55); }
      70% { box-shadow: 0 0 0 8px rgba(244, 81, 69, 0); }
      100% { box-shadow: 0 0 0 0 rgba(244, 81, 69, 0); }
    }

    @keyframes shineSweep {
      0% { left: -75%; }
      100% { left: 125%; }
    }

    @keyframes countRise {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    .approach-grid .approach-card:nth-child(2) { transition-delay: 0.1s; }
    .approach-grid .approach-card:nth-child(3) { transition-delay: 0.2s; }
    .approach-grid .approach-card:nth-child(4) { transition-delay: 0.3s; }

    .apps-grid .app-card:nth-child(2) { transition-delay: 0.1s; }
    .apps-grid .app-card:nth-child(3) { transition-delay: 0.2s; }

    .mission-grid .mission-card:nth-child(2) { transition-delay: 0.1s; }

    .story-panel .story-stat:nth-child(2) { transition-delay: 0.08s; }
    .story-panel .story-stat:nth-child(3) { transition-delay: 0.16s; }
    .story-panel .story-stat:nth-child(4) { transition-delay: 0.24s; }

    /* Header glass state on scroll */
    .site-header {
      transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    }

    .site-header.is-scrolled {
      background: rgba(16, 16, 16, 0.82);
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    .logo img {
      transition: transform 0.3s ease;
    }

    .logo:hover img {
      transform: scale(1.05) rotate(-1deg);
    }

    .nav a:not(.header-button) {
      position: relative;
      padding-bottom: 4px;
    }

    .nav a:not(.header-button)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: #f45145;
      transition: width 0.25s ease;
    }

    .nav a:not(.header-button):hover::after,
    .nav a.active::after {
      width: 100%;
    }

    /* Button shine sweep */
    .button {
      position: relative;
      overflow: hidden;
    }

    .button::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 45%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
      transform: skewX(-20deg);
    }

    .button:hover::after {
      animation: shineSweep 0.85s ease forwards;
    }

    /* Hero animated particles */
    .about-hero {
      position: relative;
      overflow: hidden;
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-particles span {
      position: absolute;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #f45145;
      opacity: 0.5;
      animation: drift 8s ease-in-out infinite;
    }

    .hero-particles span:nth-child(1) { left: 12%; top: 70%; animation-delay: 0s; }
    .hero-particles span:nth-child(2) { left: 24%; top: 30%; animation-delay: 1.2s; width: 3px; height: 3px; }
    .hero-particles span:nth-child(3) { left: 46%; top: 80%; animation-delay: 2.4s; }
    .hero-particles span:nth-child(4) { left: 63%; top: 22%; animation-delay: 0.6s; width: 4px; height: 4px; }
    .hero-particles span:nth-child(5) { left: 78%; top: 62%; animation-delay: 3s; }
    .hero-particles span:nth-child(6) { left: 90%; top: 35%; animation-delay: 1.8s; width: 3px; height: 3px; }

    .about-hero-inner {
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      position: relative;
    }

    .eyebrow::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #f45145;
      margin-right: 8px;
      animation: pulseDot 1.8s ease-out infinite;
    }

    /* Story panel */
    .story-panel::after {
      animation: floatBlob 12s ease-in-out infinite;
    }

    .story-stat {
      transition: transform 0.25s ease, padding-left 0.25s ease;
    }

    .story-stat:hover {
      padding-left: 8px;
    }

    .story-stat:hover strong {
      animation: countRise 0.3s ease;
    }

    /* Approach cards */
    .approach-card {
      position: relative;
      overflow: hidden;
    }

    .approach-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 3px;
      background: #f45145;
      transition: width 0.3s ease;
    }

    .approach-card:hover::before {
      width: 100%;
    }

    .approach-card:hover {
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    }

    .approach-number {
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .approach-card:hover .approach-number {
      transform: scale(1.15);
    }

    /* App cards */
    .app-icon {
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .app-card:hover .app-icon {
      transform: rotate(-6deg) scale(1.08);
      box-shadow: 0 10px 22px rgba(244, 81, 69, 0.35);
    }

    .app-card a {
      display: inline-flex;
      align-items: center;
      transition: 0.2s ease;
    }

    .app-card a:hover {
      gap: 4px;
      color: #ff675d;
    }

    /* Mission cards */
    .mission-card {
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .mission-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
      border-color: #f45145;
    }

    /* CTA circles animate */
    .cta::before {
      animation: floatBlob 13s ease-in-out infinite;
    }

    .cta::after {
      animation: floatBlob 16s ease-in-out infinite reverse;
    }

    /* Footer logo subtle hover */
    .footer-brand img {
      transition: transform 0.3s ease;
    }

    .footer-brand img:hover {
      transform: scale(1.04);
    }

    @media (prefers-reduced-motion: reduce) {
      .story-panel::after,
      .eyebrow::before,
      .cta::before,
      .cta::after,
      .reveal {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }


    /* RESPONSIVE */

    @media (max-width: 950px) {
      .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .approach-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .apps-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .header-inner {
        min-height: 72px;
      }

      .logo img {
        width: 125px;
      }

      .nav {
        gap: 10px;
      }

      .nav a:not(.header-button) {
        display: none;
      }

      .nav .header-button {
        padding: 10px 14px;
        font-size: 11px;
      }

      .about-hero {
        padding: 70px 0 66px;
      }

      .about-hero h1 {
        font-size: 41px;
      }

      .story-section,
      .approach-section,
      .apps-section,
      .mission-section {
        padding: 70px 0;
      }

      .story-panel {
        padding: 30px 24px;
      }

      .approach-grid,
      .mission-grid {
        grid-template-columns: 1fr;
      }

      .cta-wrap {
        padding-bottom: 70px;
      }

      .cta {
        padding: 48px 23px;
      }

      .footer-top,
      .footer-bottom {
        flex-direction: column;
      }

      .footer-links {
        grid-template-columns: repeat(2, 1fr);
      }
    }

