:root {
      --bg: #050505;
      --surface: #111214;
      --surface-strong: #17191c;
      --border: #2a2d31;
      --text: #f2f2f0;
      --muted: #9ba0a6;
      --accent: #d6d8db;
      --accent-2: #898f96;
      --accent-3: #5f656c;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
      --radius-lg: 24px;
      --radius-md: 18px;
      --container: 1200px;
      --spotlight-x: -320px;
      --spotlight-y: -320px;
      --spotlight-size: 220px;
    }

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

    body {
      margin: 0;
      font-family: "Outfit", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(214, 216, 219, 0.09), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(95, 101, 108, 0.14), transparent 26%),
        linear-gradient(180deg, #060606 0%, #080808 30%, #111214 100%);
      color: var(--text);
      overflow-x: hidden;
    }

    .dotted-surface {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.82;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.45;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
      mix-blend-mode: soft-light;
      z-index: 20;
    }

    .site-header,
    main,
    .footer {
      position: relative;
    }

    main,
    .footer {
      z-index: 1;
    }

    a { color: inherit; text-decoration: none; }
    button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
    img { max-width: 100%; height: auto; }

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

    .section {
      position: relative;
      padding: 110px 0;
    }

    main > .section:not(.hero) {
      content-visibility: auto;
      contain-intrinsic-size: 1px 900px;
    }

    .section-title {
      max-width: 680px;
      margin-bottom: 24px;
    }

    .features-hero {
      display: grid;
      gap: 28px;
      align-items: stretch;
      margin-bottom: 28px;
    }

    .features-hero .section-title {
      margin-bottom: 0;
    }

    .about-hero {
      display: grid;
      gap: 28px;
      align-items: start;
      margin-bottom: 28px;
    }

    .about-hero .section-title {
      margin-bottom: 0;
    }

    .about-hero .workflow-scene.workflow-media-panel {
      min-height: 0;
      height: clamp(320px, 31vw, 430px);
      align-self: start;
    }

    .about-hero .workflow-media-image {
      min-height: 0;
      height: 100%;
    }

    .projects-hero {
      display: grid;
      gap: 28px;
      align-items: start;
      margin-bottom: 28px;
    }

    .projects-hero .section-title {
      margin-bottom: 0;
    }

    .testimonials-hero {
      display: grid;
      gap: 28px;
      align-items: start;
      margin-bottom: 28px;
    }

    .testimonials-hero .section-title {
      margin-bottom: 0;
    }

    .marquee-band {
      padding-top: 10px;
      padding-bottom: 14px;
    }

    .marquee-shell {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(15, 16, 18, 0.98), rgba(8, 8, 10, 0.98));
      box-shadow: var(--shadow);
      padding: 14px 0;
      isolation: isolate;
    }

    .marquee-shell::before,
    .marquee-shell::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 88px;
      z-index: 2;
      pointer-events: none;
    }

    .marquee-shell::before {
      left: 0;
      background: linear-gradient(90deg, rgba(8, 8, 10, 0.98), transparent);
    }

    .marquee-shell::after {
      right: 0;
      background: linear-gradient(270deg, rgba(8, 8, 10, 0.98), transparent);
    }

    .marquee {
      --gap: 10px;
      display: flex;
      overflow: hidden;
      gap: var(--gap);
      user-select: none;
    }

    .marquee-track {
      display: flex;
      align-items: center;
      gap: var(--gap);
      flex-shrink: 0;
      min-width: max-content;
      padding-right: var(--gap);
      animation: marqueeRightToLeft 34s linear infinite;
      will-change: transform;
    }

    .marquee:hover .marquee-track {
      animation-play-state: paused;
    }

    .marquee-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(20, 22, 26, 0.96), rgba(11, 12, 15, 0.96)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.74),
          rgba(216, 216, 216, 0.2) 22%,
          rgba(255, 255, 255, 0.08) 40%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      color: #f5f2ec;
      font-family: "DM Mono", monospace;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .capability-visual {
      position: relative;
      min-height: 100%;
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .features-hero .capability-visual {
      margin-top: 0;
      align-self: stretch;
      height: 100%;
    }

    .capability-visual .terminal-card {
      height: 100%;
      min-height: 100%;
    }

    .capability-gif-panel {
      min-height: 100%;
      height: 100%;
      padding: 0;
      cursor: default;
      isolation: isolate;
    }

    .capability-gif-image {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      display: block;
      filter: grayscale(1) contrast(1.08) brightness(0.86);
    }

    .capability-gif-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7, 8, 10, 0.08), rgba(7, 8, 10, 0.68) 78%, rgba(7, 8, 10, 0.9) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
        radial-gradient(circle at top right, rgba(214, 216, 219, 0.18), transparent 22%);
      pointer-events: none;
    }

    .capability-gif-copy {
      position: absolute;
      inset: auto 22px 22px 22px;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .capability-gif-copy span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 12, 16, 0.74);
      color: #f5f2ec;
      font-family: "DM Mono", monospace;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }

    .capability-visual .float-tag,
    .capability-visual .pulse-card {
      position: static;
      width: 100%;
      animation: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(214, 216, 219, 0.16);
      background: rgba(214, 216, 219, 0.08);
      color: var(--accent);
      font-family: "DM Mono", monospace;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-copy .eyebrow {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .hero-eyebrow-effect {
      overflow: hidden;
    }

    .hero-eyebrow-effect .hero-eyebrow-word {
      display: inline-block;
      white-space: nowrap;
      margin-right: 0.34em;
      opacity: 0;
      filter: blur(10px);
      transform: translateY(12px);
      transition:
        opacity 520ms cubic-bezier(0.25, 0.1, 0.25, 1),
        filter 520ms cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 520ms cubic-bezier(0.25, 0.1, 0.25, 1);
      transition-delay: calc(var(--word-index) * 90ms + 120ms);
    }

    .hero-eyebrow-effect .hero-eyebrow-word:last-child {
      margin-right: 0;
    }

    .hero-eyebrow-effect.is-visible-text .hero-eyebrow-word {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
    }

    h1, h2, h3, h4 {
      margin: 0;
      font-family: "Syne", sans-serif;
      line-height: 0.96;
      letter-spacing: -0.04em;
    }

    h1 { font-size: clamp(3rem, 8vw, 6.2rem); }

    h2 {
      font-size: clamp(2.4rem, 5vw, 4.4rem);
      margin-top: 24px;
    }

    .shiny-text {
      background: linear-gradient(
        90deg,
        rgba(128, 128, 128, 0.95) 0%,
        rgba(245, 245, 245, 0.98) 24%,
        rgba(150, 150, 150, 0.96) 44%,
        rgba(255, 255, 255, 1) 52%,
        rgba(140, 140, 140, 0.96) 62%,
        rgba(245, 245, 245, 0.98) 78%,
        rgba(120, 120, 120, 0.95) 100%
      );
      background-size: 220% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      animation: shimmerText 6.2s ease-in-out infinite;
      text-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
    }

    .hero-title-motion {
      display: inline-block;
      animation:
        shimmerText 5.8s ease-in-out infinite,
        heroTitleFloat 7.5s ease-in-out infinite;
      filter: drop-shadow(0 12px 24px rgba(255, 255, 255, 0.06));
    }

    h3 {
      font-size: 1.35rem;
      line-height: 1.1;
    }

    p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 1.02rem;
    }

    .lead {
      max-width: 640px;
      margin-top: 26px;
      font-size: 1.12rem;
    }

    .stagger-text {
      color: #f4f1ea;
      opacity: 0;
      transform: translateY(14px);
      will-change: transform, opacity;
      transition:
        transform 520ms cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 520ms cubic-bezier(0.25, 0.1, 0.25, 1);
    }

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

    @media (prefers-reduced-motion: reduce) {
      .stagger-text,
      .shiny-text,
      .reveal,
      .pulse-track span,
      .float-tag {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
      }
    }

    main section:not(#contact) p,
    main section:not(#contact) .testimonial-quote,
    main section:not(#contact) .project-feature-list li,
    main section:not(#contact) .project-badge,
    main section:not(#contact) .faq-item button span:first-child,
    main section:not(#contact) .person p,
    main section:not(#contact) .float-tag small,
    main section:not(#contact) .pulse-card small,
    main section:not(#contact) .muted-note {
      color: #ebe7df;
    }

    main section:not(#contact) .lead {
      color: #f2eee7;
    }

    main section:not(#contact) h3,
    main section:not(#contact) .project-stat strong,
    main section:not(#contact) .person strong,
    main section:not(#contact) .float-tag strong,
    main section:not(#contact) .pulse-card strong {
      color: #fcfaf6;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
      border-bottom: 1px solid transparent;
    }

    .site-header.scrolled {
      background: rgba(5, 5, 5, 0.76);
      border-color: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(20px);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 0;
      flex-wrap: nowrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: "DM Mono", monospace;
      font-size: clamp(0.78rem, 1.8vw, 0.95rem);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      min-width: 0;
    }

    .brand-logo {
      display: block;
      height: clamp(34px, 4.4vw, 52px);
      width: auto;
    }

    .brand.footer-brand .brand-logo {
      height: clamp(28px, 3.4vw, 40px);
      width: auto;
    }

    .header-launch-strip {
      width: auto;
      max-width: 560px;
      flex: 0 1 560px;
      min-height: 72px;
      padding: 12px 14px 12px 18px;
      border-radius: 22px;
      margin-left: auto;
    }

    .header-launch-strip .launch-strip-copy small {
      font-size: 0.68rem;
    }

    .header-launch-strip .launch-strip-copy strong {
      font-size: 1.02rem;
    }

    .header-launch-strip .launch-strip-countdown {
      gap: 10px;
    }

    .header-launch-strip .launch-strip-unit {
      min-width: 72px;
      min-height: 58px;
      padding: 10px 10px 8px;
      border-radius: 16px;
    }

    .header-launch-strip .launch-strip-unit strong {
      font-size: 1.16rem;
      margin-bottom: 2px;
    }

    .header-launch-strip .launch-strip-unit span {
      font-size: 0.56rem;
    }

    .header-nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
      margin-right: 0;
      flex-wrap: wrap;
    }

    .header-nav-link {
      min-height: 44px;
      padding: 10px 16px;
      border-radius: 14px;
      font-family: "DM Mono", monospace;
      font-size: 0.74rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
      color: #f4f1ea;
      transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        filter 220ms ease;
    }

    .header-nav-link:hover {
      transform: translateY(-2px);
      box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      filter: brightness(1.05);
    }

    .hero-actions,
    .hero-metrics,
    .footer-links,
    .footer-socials {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
      font-weight: 500;
      white-space: nowrap;
    }

    .button:hover,
    .button:focus-visible { transform: translateY(-2px); }

    .button.primary {
      background: var(--accent);
      color: #090909;
      box-shadow: 0 12px 30px rgba(214, 216, 219, 0.16);
    }

    .button.outline {
      background:
        linear-gradient(180deg, rgba(17, 18, 20, 0.88), rgba(11, 12, 14, 0.88)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.22) 24%,
          rgba(255, 255, 255, 0.1) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      border-color: transparent;
      color: var(--text);
    }

    .button.ghost {
      background:
        linear-gradient(180deg, rgba(214, 216, 219, 0.08), rgba(214, 216, 219, 0.04)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.22) 24%,
          rgba(255, 255, 255, 0.1) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      border-color: transparent;
      color: var(--accent);
    }
    .hero {
      padding-top: 10px;
      overflow: hidden;
    }

    .hero-layout,
    .grid-3,
    .grid-2,
    .social-card,
    .footer-shell {
      display: grid;
      gap: 20px;
    }

    .hero-layout {
      position: relative;
      gap: 48px;
      align-items: end;
    }

    .grid-bg {
      position: absolute;
      inset: 40px 0 auto;
      height: 72%;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), transparent 78%);
      opacity: 0.28;
      pointer-events: none;
    }

    .orb {
      position: absolute;
      border-radius: 999px;
      filter: blur(32px);
      opacity: 0.32;
      pointer-events: none;
    }

    .orb.cyan {
      width: 320px;
      height: 320px;
      top: 40px;
      left: -70px;
      background: radial-gradient(circle, rgba(214, 216, 219, 0.22), transparent 70%);
    }

    .orb.purple {
      width: 280px;
      height: 280px;
      top: 120px;
      right: 28%;
      background: radial-gradient(circle, rgba(137, 143, 150, 0.24), transparent 68%);
    }

    .orb.green {
      width: 260px;
      height: 260px;
      bottom: 20px;
      right: -30px;
      background: radial-gradient(circle, rgba(95, 101, 108, 0.22), transparent 70%);
    }

    .hero-copy,
    .hero-visual { position: relative; z-index: 1; }

    .hero-visual {
      min-height: 580px;
      display: grid;
      gap: 18px;
      align-content: start;
      margin-top: 0;
      padding-top: 0;
    }

    .hero-side-copy {
      width: 100%;
      max-width: none;
      margin-top: 2px;
      text-align: justify;
      text-justify: inter-word;
    }

    .hero-side-copy.hero-side-text-effect {
      position: relative;
      opacity: 1;
      transform: none;
      transition: filter 260ms ease, text-shadow 260ms ease, transform 260ms ease;
      cursor: default;
      overflow: hidden;
    }

    .hero-side-copy.hero-side-text-effect::after {
      content: "";
      position: absolute;
      inset: -8% -18%;
      background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, 0.02) 38%,
        rgba(255, 255, 255, 0.16) 50%,
        rgba(255, 255, 255, 0.03) 62%,
        transparent 80%
      );
      opacity: 0;
      transform: translateX(-44%);
      transition: opacity 280ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }

    .hero-side-copy .hero-side-word {
      display: inline-block;
      white-space: nowrap;
      opacity: 0;
      filter: blur(10px);
      transform: translateY(14px);
      transition:
        opacity 560ms cubic-bezier(0.25, 0.1, 0.25, 1),
        filter 560ms cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 560ms cubic-bezier(0.25, 0.1, 0.25, 1),
        color 260ms ease,
        text-shadow 260ms ease,
        opacity 260ms ease;
      transition-delay: calc(var(--word-index) * 48ms + 120ms);
    }

    .hero-side-copy.is-visible-text .hero-side-word {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
      color: rgba(244, 241, 234, 0.92);
    }

    .hero-side-copy.hero-side-text-effect:hover .hero-side-word {
      color: #fffefb;
      text-shadow:
        0 0 14px rgba(255, 255, 255, 0.18),
        0 0 30px rgba(255, 255, 255, 0.08);
      transform: translateY(-1px);
    }

    .hero-side-copy.hero-side-text-effect:hover .hero-side-word:nth-child(odd) {
      color: #f2eee6;
    }

    .hero-side-copy.hero-side-text-effect:hover {
      filter: saturate(1.08) brightness(1.05);
      transform: translateY(-2px);
    }

    .hero-side-copy.hero-side-text-effect:hover::after {
      opacity: 1;
      transform: translateX(44%);
    }

    .launch-strip {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 22px 24px;
      border-radius: 24px;
      border: 1px solid transparent;
      background:
        linear-gradient(180deg, rgba(19, 20, 23, 0.98), rgba(11, 12, 14, 0.98)) padding-box,
        radial-gradient(
          calc(var(--spotlight-size) * 1.1) calc(var(--spotlight-size) * 1.1) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.84),
          rgba(216, 216, 216, 0.24) 24%,
          rgba(255, 255, 255, 0.08) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      box-shadow: var(--shadow);
      overflow: hidden;
      margin-top: -6px;
      animation: launchStripFloat 6.8s ease-in-out infinite;
    }

    .launch-strip::before {
      content: "";
      position: absolute;
      inset: -20% auto auto -10%;
      width: 220px;
      height: 220px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
      pointer-events: none;
      opacity: 0.55;
      animation: launchStripGlow 7.4s ease-in-out infinite;
    }

    .launch-strip::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.06) 50%, transparent 80%);
      transform: translateX(-120%);
      pointer-events: none;
      animation: launchStripSweep 9s ease-in-out infinite;
    }

    .launch-strip-copy {
      display: grid;
      gap: 6px;
    }

    .launch-strip-copy small {
      color: #d9d5cd;
      font-family: "DM Mono", monospace;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .launch-strip-copy strong {
      color: #fcfaf6;
      font-size: 1.12rem;
      line-height: 1.1;
      font-family: "Outfit", sans-serif;
      font-weight: 600;
    }

    .launch-strip-countdown {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
      color: #fffdf8;
      font-family: "DM Mono", monospace;
    }

    .launch-strip-unit {
      min-width: 72px;
      padding: 12px 14px;
      border-radius: 16px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
      transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease;
    }

    .launch-strip-unit::before {
      content: "";
      position: absolute;
      inset: -30% auto auto -30%;
      width: 80px;
      height: 80px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
      opacity: 0.55;
      pointer-events: none;
      animation: countdownGlow 5.6s ease-in-out infinite;
    }

    .launch-strip-unit::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 52%);
      opacity: 0;
      transition: opacity 220ms ease;
      pointer-events: none;
    }

    .launch-strip-unit:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, 0.16);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 26px rgba(0, 0, 0, 0.22);
      background: rgba(255, 255, 255, 0.06);
    }

    .launch-strip-unit:hover::before {
      opacity: 0.78;
      transform: scale(1.14);
    }

    .launch-strip-unit:hover::after {
      opacity: 1;
    }

    .launch-strip-unit:hover strong {
      text-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
    }

    .shader-panel {
      position: relative;
      min-height: 420px;
      border-radius: 30px;
      overflow: hidden;
      background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 34%),
        linear-gradient(180deg, rgba(14, 15, 18, 0.58), rgba(8, 9, 11, 0.18));
      border: 1px solid rgba(255, 255, 255, 0.06);
      isolation: isolate;
      display: grid;
      place-items: center;
    }

    .shader-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
      pointer-events: none;
      opacity: 0.7;
      z-index: 1;
    }

    .shader-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    .shader-copy {
      position: relative;
      z-index: 2;
      max-width: 78%;
      text-align: center;
      font-family: "Syne", sans-serif;
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      line-height: 1.04;
      letter-spacing: -0.04em;
      color: #f5f2ec;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
    }

    .launch-strip-unit strong {
      display: block;
      font-size: 1.08rem;
      color: #fffdf8;
      margin-bottom: 4px;
      transform-origin: center;
    }

    .launch-strip-unit strong.is-ticking {
      animation: countdownTick 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .launch-strip-unit span {
      display: block;
      font-size: 0.56rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #c8c2b8;
    }

    .metric {
      min-width: 170px;
      padding: 18px 20px;
      border-radius: var(--radius-md);
      border: 1px solid transparent;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.22) 24%,
          rgba(255, 255, 255, 0.08) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      backdrop-filter: blur(10px);
    }

    .metric strong {
      display: block;
      color: var(--text);
      font-family: "Syne", sans-serif;
      font-size: 1.8rem;
      margin-bottom: 6px;
    }

    .terminal-card {
      position: relative;
      padding: 20px;
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(24, 26, 29, 0.98), rgba(13, 14, 16, 0.95)) padding-box,
        radial-gradient(
          calc(var(--spotlight-size) * 1.15) calc(var(--spotlight-size) * 1.15) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.8),
          rgba(216, 216, 216, 0.22) 24%,
          rgba(255, 255, 255, 0.08) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      border: 1px solid transparent;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .terminal-shader-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 0 !important;
      opacity: 0.34;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .terminal-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .dots { display: flex; gap: 8px; }
    .dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.14);
    }
    .dots span:first-child { background: #cfd2d6; }
    .dots span:nth-child(2) { background: #989ea5; }
    .dots span:nth-child(3) { background: #666c73; }

    .terminal-title {
      color: #95a8c8;
      font-family: "DM Mono", monospace;
      font-size: 0.83rem;
    }

    pre {
      margin: 0;
      padding: 22px 0 8px;
      color: #b2c8ea;
      font-family: "DM Mono", monospace;
      font-size: 0.88rem;
      line-height: 1.8;
      overflow-x: auto;
    }

    .token-key { color: #d7dbe0; }
    .token-fn { color: #bcc2c8; }
    .token-str { color: #e8dcc4; }
    .token-num { color: #aeb5bc; }
    .token-cm { color: #67707a; }

    .float-tag,
    .pulse-card {
      position: absolute;
      border-radius: 18px;
      border: 1px solid transparent;
      background:
        linear-gradient(180deg, rgba(17, 18, 20, 0.84), rgba(17, 18, 20, 0.84)) padding-box,
        radial-gradient(
          180px 180px at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.2) 28%,
          rgba(255, 255, 255, 0.08) 48%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
      backdrop-filter: blur(16px);
    }

    .float-tag {
      padding: 14px 16px;
      min-width: 180px;
      animation: float 7s ease-in-out infinite;
    }

    .float-tag small,
    .pulse-card small,
    .muted-note {
      display: block;
      color: #7f91b4;
      font-family: "DM Mono", monospace;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
    }

    .float-tag strong,
    .pulse-card strong {
      display: block;
      color: var(--text);
      font-size: 1.1rem;
      margin-top: 6px;
    }

    .tag-top { top: -24px; right: -12px; animation-delay: -2s; }
    .tag-bottom { bottom: 82px; left: -24px; animation-delay: -4s; }

    .pulse-card {
      right: 40px;
      bottom: -28px;
      padding: 18px;
      width: min(86%, 290px);
    }

    .pulse-track {
      margin-top: 14px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
      overflow: hidden;
    }

    .pulse-track span {
      display: block;
      width: 72%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent), var(--accent-3));
      animation: pulseWidth 4.6s ease-in-out infinite;
    }

    .social-card,
    .feature-card,
    .step-card,
    .testimonial-card,
    .faq-item,
    .about-card,
    .project-panel,
    .project-gallery,
    .project-stats,
    .project-feature-list li,
    .coming-soon-card,
    .cta-panel {
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(17, 18, 20, 0.98), rgba(11, 12, 14, 0.98)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.22) 24%,
          rgba(255, 255, 255, 0.08) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      border: 1px solid transparent;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .metric,
    .terminal-card,
    .float-tag,
    .pulse-card,
    .logo-chip,
    .button.outline,
    .button.ghost,
    .social-card,
    .feature-card,
    .step-card,
    .testimonial-card,
    .faq-item,
    .about-card,
    .project-panel,
    .project-gallery,
    .project-stats,
    .project-feature-list li,
    .coming-soon-card,
    .cta-panel,
    .project-cover,
    .project-gallery img,
    .project-side-image {
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .metric::after,
    .terminal-card::after,
    .float-tag::after,
    .pulse-card::after,
    .logo-chip::after,
    .button.outline::after,
    .button.ghost::after,
    .social-card::after,
    .feature-card::after,
    .step-card::after,
    .testimonial-card::after,
    .faq-item::after,
    .about-card::after,
    .project-panel::after,
    .project-gallery::after,
    .project-stats::after,
    .project-feature-list li::after,
    .coming-soon-card::after,
    .cta-panel::after,
    .project-cover::after,
    .project-side-image::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background:
        radial-gradient(
          calc(var(--spotlight-size) * 0.95) calc(var(--spotlight-size) * 0.95) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.95),
          rgba(255, 255, 255, 0.3) 18%,
          rgba(216, 216, 216, 0.16) 34%,
          rgba(255, 255, 255, 0.06) 52%,
          transparent 72%
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask-composite: exclude;
      pointer-events: none;
      opacity: 0.95;
      z-index: 2;
    }

    .metric > *,
    .terminal-card > *,
    .float-tag > *,
    .pulse-card > *,
    .logo-chip > *,
    .button.outline > *,
    .button.ghost > *,
    .social-card > *,
    .feature-card > *,
    .step-card > *,
    .testimonial-card > *,
    .faq-item > *,
    .about-card > *,
    .project-panel > *,
    .project-gallery > *,
    .project-stats > *,
    .project-feature-list li > *,
    .coming-soon-card > *,
    .cta-panel > * {
      position: relative;
      z-index: 1;
    }

    .social-card,
    .feature-card,
    .step-card,
    .testimonial-card,
    .faq-item,
    .about-card,
    .project-panel,
    .project-gallery,
    .project-stats,
    .coming-soon-card { padding: 26px; }

    .project-stack {
      display: grid;
      gap: 24px;
    }

    .dreamshare-panel .project-layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .dreamshare-intro {
      display: grid;
      gap: 24px;
      align-items: center;
    }

    .dreamshare-copy {
      display: grid;
      gap: 18px;
      max-width: 640px;
    }

    .dreamshare-copy p {
      max-width: 560px;
    }

    .dreamshare-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .dreamshare-highlights span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      font-family: "DM Mono", monospace;
      font-size: 0.74rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #f6f2eb;
      background:
        linear-gradient(180deg, rgba(214, 216, 219, 0.08), rgba(214, 216, 219, 0.04)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.22) 24%,
          rgba(255, 255, 255, 0.1) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      border: 1px solid transparent;
      background-attachment: scroll, fixed;
    }

    .project-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      gap: 26px;
    }

    .project-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(214, 216, 219, 0.08), transparent 30%),
        linear-gradient(135deg, rgba(95, 101, 108, 0.08), transparent 48%);
      pointer-events: none;
    }

    .project-panel > * {
      position: relative;
      z-index: 1;
    }

    .project-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
    }

    .project-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(214, 216, 219, 0.08);
      border: 1px solid rgba(214, 216, 219, 0.14);
      color: var(--accent);
      font-family: "DM Mono", monospace;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .project-header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-left: auto;
    }

    .play-store-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 52px;
      padding: 8px 14px 8px 12px;
      border-radius: 16px;
      color: #f7f4ee;
      text-decoration: none;
      background:
        linear-gradient(180deg, rgba(18, 19, 22, 0.96), rgba(10, 10, 12, 0.96)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.22) 24%,
          rgba(255, 255, 255, 0.1) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      border: 1px solid transparent;
      background-attachment: scroll, fixed;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .play-store-badge svg {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
    }

    .play-store-badge-copy {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 2px;
      text-align: left;
    }

    .play-store-badge-copy small {
      font-family: "DM Mono", monospace;
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      line-height: 1;
      color: #d9d5cd;
    }

    .play-store-badge-copy strong {
      font-size: 0.98rem;
      line-height: 1;
      color: #fffdf8;
      font-family: "Outfit", sans-serif;
      font-weight: 700;
    }

    .project-layout {
      display: grid;
      gap: 24px;
      align-items: start;
    }

    .project-artwork {
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .project-cover {
      width: 100%;
      border-radius: 20px;
      border: 1px solid transparent;
      box-shadow: var(--shadow);
      object-fit: contain;
      background:
        linear-gradient(180deg, rgba(23, 25, 28, 0.98), rgba(10, 10, 10, 0.96)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.2) 24%,
          rgba(255, 255, 255, 0.08) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      padding: 14px;
      max-height: 420px;
    }

    .project-cover.vitalab-cover {
      object-position: center;
      padding: 18px;
    }

    .project-gallery {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-carousel {
      display: grid;
      gap: 16px;
    }

    .story-carousel-shell {
      position: relative;
      border-radius: 28px;
      padding: 22px 18px 18px;
      background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(15, 16, 18, 0.98), rgba(8, 8, 10, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
    }

    .story-carousel-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(190px, 24%);
      gap: 18px;
      overflow-x: auto;
      padding: 4px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-behavior: smooth;
    }

    .story-carousel-track::-webkit-scrollbar {
      display: none;
    }

    .story-slide {
      position: relative;
      scroll-snap-align: start;
      overflow: hidden;
      border-radius: 22px;
      min-height: 392px;
      background:
        linear-gradient(180deg, rgba(23, 25, 28, 0.96), rgba(10, 10, 10, 0.96)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.2) 24%,
          rgba(255, 255, 255, 0.08) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      border: 1px solid transparent;
      isolation: isolate;
      transform: translateZ(0);
      transition: transform 220ms ease, opacity 220ms ease;
    }

    .story-slide:hover {
      transform: translateY(-4px);
    }

    .story-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background:
        radial-gradient(
          calc(var(--spotlight-size) * 0.95) calc(var(--spotlight-size) * 0.95) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.95),
          rgba(255, 255, 255, 0.3) 18%,
          rgba(216, 216, 216, 0.16) 34%,
          rgba(255, 255, 255, 0.06) 52%,
          transparent 72%
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask-composite: exclude;
      pointer-events: none;
      opacity: 0.95;
      z-index: 2;
    }

    .story-slide img {
      width: 100%;
      height: 100%;
      min-height: 392px;
      object-fit: cover;
      display: block;
      transition: opacity 180ms ease;
    }


    .story-slide:hover img {
      opacity: 0.92;
    }

    .story-carousel-controls {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }

    .story-carousel-button {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      display: inline-grid;
      place-items: center;
      color: var(--text);
      background:
        linear-gradient(180deg, rgba(17, 18, 20, 0.88), rgba(11, 12, 14, 0.88)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.22) 24%,
          rgba(255, 255, 255, 0.1) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      border: 1px solid transparent;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .story-carousel-button[disabled] {
      opacity: 0.42;
      cursor: default;
    }

    .project-gallery img,
    .project-side-image {
      width: 100%;
      border-radius: 18px;
      border: 1px solid transparent;
      background:
        linear-gradient(180deg, rgba(23, 25, 28, 0.96), rgba(10, 10, 10, 0.96)) padding-box,
        radial-gradient(
          var(--spotlight-size) var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.72),
          rgba(216, 216, 216, 0.2) 24%,
          rgba(255, 255, 255, 0.08) 42%,
          rgba(255, 255, 255, 0.03) 64%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
    }

    .project-gallery img {
      aspect-ratio: 9 / 19;
      object-fit: cover;
    }

    .project-side-image {
      object-fit: contain;
      aspect-ratio: auto;
      box-shadow: var(--shadow);
      padding: 28px;
      max-height: 520px;
    }

    .project-copy {
      display: grid;
      gap: 18px;
    }

    .project-copy h3 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
    }

    .project-copy p {
      max-width: 720px;
    }

    .project-stats {
      display: grid;
      gap: 14px;
    }

    .project-stat strong {
      display: block;
      color: var(--text);
      font-family: "Syne", sans-serif;
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .project-feature-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .project-feature-list li {
      padding: 18px 20px;
      color: #cad6ea;
    }

    .logo-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .logo-chip {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 70px;
      border-radius: 18px;
      color: #8fa2c1;
      border: 1px solid transparent;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)) padding-box,
        radial-gradient(
          180px 180px at var(--spotlight-x) var(--spotlight-y),
          rgba(255, 255, 255, 0.7),
          rgba(216, 216, 216, 0.18) 28%,
          rgba(255, 255, 255, 0.06) 48%,
          transparent 74%
        ) border-box;
      background-attachment: scroll, fixed;
      font-family: "DM Mono", monospace;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.78rem;
    }
    .feature-card {
      min-height: 250px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      cursor: default;
      transition:
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 260ms ease,
        background 260ms ease,
        filter 260ms ease;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: -20% auto auto -32%;
      width: 72%;
      height: 180%;
      background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(255, 255, 255, 0.02) 38%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.03) 62%,
        transparent 80%
      );
      transform: translateX(-120%) rotate(10deg);
      opacity: 0;
      transition:
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 260ms ease;
      pointer-events: none;
      z-index: 0;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
      filter: brightness(1.03);
    }

    .feature-card:hover::before {
      transform: translateX(205%) rotate(10deg);
      opacity: 1;
    }

    .feature-icon,
    .step-number {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, rgba(214, 216, 219, 0.14), rgba(95, 101, 108, 0.12));
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 1.5rem;
    }

    .step-number,
    .coming-badge {
      transition:
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 260ms ease,
        background 260ms ease,
        color 260ms ease;
    }

    .feature-icon {
      color: #f2efe8;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
      transition:
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 260ms ease,
        background 260ms ease,
        color 260ms ease;
    }

    .feature-icon svg {
      width: 24px;
      height: 24px;
      display: block;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0.94;
    }

    .feature-card:hover .feature-icon {
      transform: translateY(-3px) scale(1.04);
      color: #fffdf8;
      background: linear-gradient(145deg, rgba(236, 239, 242, 0.2), rgba(95, 101, 108, 0.18));
      box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 18px rgba(255, 255, 255, 0.08);
    }

    .feature-card:hover h3 {
      color: #fffdf8;
    }

    .step-card:hover .step-number,
    .coming-soon-card:hover .coming-badge {
      transform: translateY(-3px) scale(1.04);
      box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 18px rgba(255, 255, 255, 0.08);
    }

    .step-card:hover h3,
    .about-card:hover h3,
    .coming-soon-card:hover h3 {
      color: #fffdf8;
    }

    .step-card {
      position: relative;
      overflow: hidden;
      transition:
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 260ms ease,
        filter 260ms ease;
    }

    .step-card::before,
    .about-card::before,
    .coming-soon-card::before {
      content: "";
      position: absolute;
      inset: -20% auto auto -32%;
      width: 72%;
      height: 180%;
      background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(255, 255, 255, 0.02) 38%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.03) 62%,
        transparent 80%
      );
      transform: translateX(-120%) rotate(10deg);
      opacity: 0;
      transition:
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 260ms ease;
      pointer-events: none;
      z-index: 0;
    }

    .step-card:hover,
    .about-card:hover,
    .coming-soon-card:hover {
      transform: translateY(-8px);
      box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
      filter: brightness(1.03);
    }

    .step-card:hover::before,
    .about-card:hover::before,
    .coming-soon-card:hover::before {
      transform: translateX(205%) rotate(10deg);
      opacity: 1;
    }

    .workflow-scene {
      position: relative;
      min-height: 420px;
      margin: 0 0 24px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(12, 13, 16, 0.98), rgba(8, 8, 10, 0.98)) padding-box,
        radial-gradient(
          280px 280px at var(--scene-x, 50%) var(--scene-y, 50%),
          rgba(255, 255, 255, 0.18),
          rgba(255, 255, 255, 0.06) 28%,
          transparent 66%
        ) border-box;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .workflow-scene.workflow-media-panel {
      background: #0b0c0f;
    }

    .workflow-media-image {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      display: block;
      filter: grayscale(1) contrast(1.08) brightness(0.88);
    }

    .workflow-media-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(9, 10, 12, 0.14), rgba(9, 10, 12, 0.72) 78%, rgba(9, 10, 12, 0.9) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%);
      pointer-events: none;
      z-index: 1;
    }

    .workflow-media-copy {
      position: absolute;
      inset: auto 22px 22px 22px;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .workflow-media-copy span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(10, 12, 16, 0.74);
      color: #f5f2ec;
      font-family: "DM Mono", monospace;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }

    .workflow-scene::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.08), transparent 24%),
        radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.05), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 45%);
      pointer-events: none;
      z-index: 0;
    }

    .workflow-spotlight {
      position: absolute;
      inset: -18%;
      background: radial-gradient(
        circle at var(--scene-x, 50%) var(--scene-y, 50%),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.08) 18%,
        rgba(255, 255, 255, 0.02) 34%,
        transparent 56%
      );
      filter: blur(22px);
      opacity: 0.9;
      pointer-events: none;
      z-index: 1;
      transition: opacity 220ms ease;
    }

    .workflow-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), transparent 88%);
      opacity: 0.32;
      z-index: 0;
    }

    .workflow-orbit {
      position: absolute;
      inset: 50% auto auto 50%;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      transform: translate(-50%, -50%);
      z-index: 1;
    }

    .workflow-orbit.orbit-a {
      width: 180px;
      height: 180px;
      animation: orbitSpin 14s linear infinite;
    }

    .workflow-orbit.orbit-b {
      width: 280px;
      height: 280px;
      border-color: rgba(255, 255, 255, 0.08);
      animation: orbitSpinReverse 18s linear infinite;
    }

    .workflow-orbit.orbit-c {
      width: 380px;
      height: 380px;
      border-color: rgba(255, 255, 255, 0.05);
      animation: orbitSpin 24s linear infinite;
    }

    .workflow-core {
      position: absolute;
      inset: 50% auto auto 50%;
      width: 132px;
      height: 132px;
      border-radius: 36px;
      transform: translate(-50%, -50%) rotate(8deg);
      background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.92), rgba(236, 236, 236, 0.18) 28%, transparent 54%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(80, 84, 90, 0.08));
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow:
        0 0 60px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      z-index: 2;
      animation: coreFloat 6.6s ease-in-out infinite;
    }

    .workflow-node {
      position: absolute;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.96), rgba(214, 216, 219, 0.24) 55%, rgba(255, 255, 255, 0.06) 72%);
      box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
      z-index: 2;
    }

    .workflow-node.node-a {
      top: 24%;
      left: 24%;
      animation: nodePulse 5.2s ease-in-out infinite;
    }

    .workflow-node.node-b {
      top: 18%;
      right: 22%;
      animation: nodePulse 4.8s ease-in-out infinite 0.8s;
    }

    .workflow-node.node-c {
      bottom: 22%;
      left: 20%;
      animation: nodePulse 5.8s ease-in-out infinite 1.2s;
    }

    .workflow-node.node-d {
      right: 24%;
      bottom: 18%;
      animation: nodePulse 5.4s ease-in-out infinite 0.4s;
    }

    .workflow-path {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0.7;
    }

    .workflow-path path {
      stroke: rgba(245, 245, 245, 0.22);
      stroke-width: 1.2;
      fill: none;
      stroke-dasharray: 8 12;
      animation: pathDrift 12s linear infinite;
    }

    .apps-scene {
      position: relative;
      min-height: 420px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(12, 13, 16, 0.98), rgba(8, 8, 10, 0.98));
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .apps-scene::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 36%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 24%);
      pointer-events: none;
      z-index: 0;
    }

    .apps-scene-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), transparent 92%);
      opacity: 0.24;
      z-index: 0;
    }

    .apps-scene-glow {
      position: absolute;
      inset: 10% auto auto 14%;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
      filter: blur(26px);
      opacity: 0.7;
      z-index: 0;
    }

    .apps-device-stack {
      position: absolute;
      inset: 50% auto auto 50%;
      width: min(82%, 440px);
      height: 76%;
      transform: translate(-50%, -50%);
      z-index: 1;
    }

    .apps-device {
      position: absolute;
      width: 170px;
      aspect-ratio: 10 / 18.5;
      border-radius: 30px;
      background:
        linear-gradient(180deg, rgba(18, 19, 22, 0.98), rgba(10, 11, 14, 0.98)) padding-box,
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)) border-box;
      border: 1px solid transparent;
      box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      overflow: hidden;
    }

    .apps-device::before {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
        radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.12), transparent 28%);
    }

    .apps-device::after {
      content: "";
      position: absolute;
      top: 12px;
      left: 50%;
      width: 42%;
      height: 12px;
      border-radius: 999px;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.08);
    }

    .apps-device.device-a {
      left: 6%;
      top: 20%;
      transform: rotate(-14deg);
      animation: deviceFloatA 8.5s ease-in-out infinite;
    }

    .apps-device.device-b {
      left: 34%;
      top: 6%;
      width: 184px;
      transform: rotate(-3deg);
      z-index: 2;
      animation: deviceFloatB 7.6s ease-in-out infinite;
    }

    .apps-device.device-c {
      right: 8%;
      top: 24%;
      transform: rotate(12deg);
      animation: deviceFloatC 9s ease-in-out infinite;
    }

    .apps-device-screen {
      position: absolute;
      inset: 24px 16px 16px;
      border-radius: 20px;
      overflow: hidden;
      background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(34, 36, 42, 0.98), rgba(16, 17, 21, 0.98));
    }

    .apps-device-screen.screen-a {
      background:
        radial-gradient(circle at 65% 18%, rgba(196, 164, 255, 0.26), transparent 24%),
        linear-gradient(180deg, rgba(50, 38, 74, 0.96), rgba(21, 18, 32, 0.98));
    }

    .apps-device-screen.screen-b {
      background:
        radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.18), transparent 20%),
        linear-gradient(180deg, rgba(56, 58, 66, 0.96), rgba(18, 19, 23, 0.98));
    }

    .apps-device-screen.screen-c {
      background:
        radial-gradient(circle at 72% 22%, rgba(155, 196, 255, 0.24), transparent 22%),
        linear-gradient(180deg, rgba(25, 37, 58, 0.96), rgba(12, 16, 24, 0.98));
    }

    .apps-device-ui {
      position: absolute;
      inset: 18px 14px 14px;
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .apps-pill {
      height: 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
    }

    .apps-pill.short {
      width: 42%;
    }

    .apps-pill.mid {
      width: 66%;
    }

    .apps-card-line {
      height: 54px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .apps-float-card {
      position: absolute;
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(18, 19, 22, 0.94), rgba(10, 11, 14, 0.94)) padding-box,
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)) border-box;
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
      z-index: 3;
      backdrop-filter: blur(14px);
    }

    .apps-float-card small {
      display: block;
      font-family: "DM Mono", monospace;
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      color: #b9c0c8;
      text-transform: uppercase;
    }

    .apps-float-card strong {
      display: block;
      margin-top: 6px;
      color: #fffdf8;
      font-size: 0.98rem;
    }

    .apps-float-card.card-a {
      top: 16%;
      right: 10%;
      animation: float 7.2s ease-in-out infinite;
    }

    .apps-float-card.card-b {
      left: 12%;
      bottom: 14%;
      animation: float 8.1s ease-in-out infinite -1.8s;
    }

    .celestial-panel {
      position: relative;
      min-height: 360px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(12, 13, 16, 0.98), rgba(8, 8, 10, 0.98));
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .testimonial-media-panel {
      background: #0b0c0f;
    }

    .celestial-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 34%),
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.05), transparent 20%);
      pointer-events: none;
      z-index: 1;
    }

    .celestial-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    .testimonial-media-image {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
      display: block;
      filter: grayscale(1) contrast(1.08) brightness(0.9);
    }

    .testimonial-media-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(8, 9, 11, 0.08), rgba(8, 9, 11, 0.48) 68%, rgba(8, 9, 11, 0.72) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 38%);
      pointer-events: none;
      z-index: 1;
    }

    .step-card::after {
      content: "";
      position: absolute;
      inset: auto -30% -45% auto;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(214, 216, 219, 0.08), transparent 65%);
      pointer-events: none;
    }

    .step-meta { margin-top: 18px; }

    @keyframes orbitSpin {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @keyframes orbitSpinReverse {
      from { transform: translate(-50%, -50%) rotate(360deg); }
      to { transform: translate(-50%, -50%) rotate(0deg); }
    }

    @keyframes coreFloat {
      0%, 100% { transform: translate(-50%, -50%) rotate(8deg) translateY(0); }
      50% { transform: translate(-50%, -50%) rotate(2deg) translateY(-8px); }
    }

    @keyframes nodePulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.7;
      }
      50% {
        transform: scale(1.18);
        opacity: 1;
      }
    }

    @keyframes pathDrift {
      from { stroke-dashoffset: 0; }
      to { stroke-dashoffset: -180; }
    }

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

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

    @keyframes deviceFloatC {
      0%, 100% { transform: rotate(12deg) translateY(0); }
      50% { transform: rotate(8deg) translateY(-9px); }
    }

    @keyframes marqueeRightToLeft {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(calc(-100% - var(--gap)));
      }
    }

    .testimonial-card {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .testimonial-quote {
      color: #d6deeb;
      font-size: 1.03rem;
      line-height: 1.8;
    }

    .person {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .avatar {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: linear-gradient(145deg, rgba(214, 216, 219, 0.28), rgba(95, 101, 108, 0.2));
      display: grid;
      place-items: center;
      font-family: "Syne", sans-serif;
      color: #090909;
      font-weight: 800;
    }

    .person strong {
      display: block;
      color: var(--text);
    }

    .coming-soon-card {
      position: relative;
      padding: 34px;
      overflow: hidden;
    }

    .coming-soon-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(130deg, rgba(214, 216, 219, 0.1), transparent 30%),
        radial-gradient(circle at top right, rgba(95, 101, 108, 0.1), transparent 30%);
      pointer-events: none;
    }

    .coming-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      margin-bottom: 20px;
      border-radius: 999px;
      background: rgba(214, 216, 219, 0.08);
      color: #e1e3e6;
      border: 1px solid rgba(214, 216, 219, 0.14);
      font-family: "DM Mono", monospace;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .about-card {
      display: grid;
      gap: 18px;
      min-height: 100%;
    }

    .faq-list {
      display: grid;
      gap: 16px;
      margin-top: 40px;
    }

    .faq-item {
      transition:
        transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 240ms ease,
        filter 240ms ease;
      cursor: pointer;
    }

    .faq-item::before {
      content: "";
      position: absolute;
      inset: -20% auto auto -32%;
      width: 72%;
      height: 180%;
      background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(255, 255, 255, 0.02) 38%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.03) 62%,
        transparent 80%
      );
      transform: translateX(-120%) rotate(10deg);
      opacity: 0;
      transition:
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 260ms ease;
      pointer-events: none;
      z-index: 0;
    }

    .faq-item:hover {
      transform: translateY(-4px);
      box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
      filter: brightness(1.03);
    }

    .faq-item:hover::before {
      transform: translateX(205%) rotate(10deg);
      opacity: 1;
    }

    .faq-item button {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0;
      color: var(--text);
      text-align: left;
      font-size: 1.03rem;
      font-weight: 500;
      transition: color 220ms ease;
    }

    .faq-item button span:last-child {
      font-size: 1.7rem;
      color: var(--accent);
      transition:
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
        color 220ms ease,
        text-shadow 220ms ease;
    }

    .faq-item:hover button span:first-child {
      color: #fffdf8;
    }

    .faq-item:hover button span:last-child {
      color: #fffdf8;
      transform: scale(1.08) rotate(10deg);
      text-shadow: 0 0 12px rgba(255, 255, 255, 0.16);
    }

    .faq-item.active button span:last-child { transform: rotate(45deg); }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 240ms ease, margin-top 240ms ease;
      margin-top: 0;
    }

    .faq-answer > div { overflow: hidden; }
    .faq-item.active .faq-answer { grid-template-rows: 1fr; margin-top: 16px; }

    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 40px;
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(214, 216, 219, 0.08), rgba(95, 101, 108, 0.12)),
        rgba(17, 18, 20, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      inset: auto -8% -36% auto;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(214, 216, 219, 0.12), transparent 72%);
      filter: blur(12px);
      pointer-events: none;
    }

    .footer {
      padding: 32px 0 48px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-top,
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links a,
    .footer-socials a { color: #97a7c1; }

    .footer-socials a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(255, 255, 255, 0.025);
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 650ms ease, transform 650ms ease;
    }

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

    .reveal-delay-1 { transition-delay: 80ms; }
    .reveal-delay-2 { transition-delay: 140ms; }
    .reveal-delay-3 { transition-delay: 200ms; }
    .reveal-delay-4 { transition-delay: 260ms; }
    .reveal-delay-5 { transition-delay: 320ms; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes pulseWidth {
      0%, 100% { width: 72%; }
      50% { width: 88%; }
    }

    @keyframes shimmerText {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes heroTitleFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    @keyframes countdownGlow {
      0%, 100% { transform: scale(0.9); opacity: 0.28; }
      50% { transform: scale(1.18); opacity: 0.56; }
    }

    @keyframes countdownTick {
      0% { transform: translateY(0) scale(1); filter: brightness(1); }
      35% { transform: translateY(-2px) scale(1.08); filter: brightness(1.18); }
      100% { transform: translateY(0) scale(1); filter: brightness(1); }
    }

    @keyframes launchStripFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    @keyframes launchStripGlow {
      0%, 100% { transform: scale(0.9); opacity: 0.28; }
      50% { transform: scale(1.2); opacity: 0.52; }
    }

    @keyframes launchStripSweep {
      0%, 100% { transform: translateX(-120%); opacity: 0; }
      20% { opacity: 0; }
      48% { opacity: 1; }
      62% { opacity: 0; }
      100% { transform: translateX(140%); opacity: 0; }
    }

    @media (min-width: 768px) {
      .container { width: min(calc(100% - 64px), var(--container)); }
      .hero-layout,
      .features-hero,
      .social-card,
      .cta-panel,
      .project-layout { grid-template-columns: 1.05fr 0.95fr; }
      .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .logo-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
      .project-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .project-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .story-carousel-track { grid-auto-columns: minmax(190px, 24%); }
      .dreamshare-intro { grid-template-columns: 1.1fr 0.9fr; }
    }

    @media (min-width: 1024px) {
      .hero-layout { grid-template-columns: 1.05fr 0.95fr; }
      .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .about-hero { grid-template-columns: 1.05fr 0.95fr; }
      .projects-hero { grid-template-columns: 1.05fr 0.95fr; }
      .testimonials-hero { grid-template-columns: 1.05fr 0.95fr; }
    }

    @media (max-width: 1180px) {
      .nav-shell {
        flex-wrap: wrap;
        align-items: flex-start;
      }

      .header-nav-actions {
        order: 2;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
      }

      .header-launch-strip {
        order: 3;
        flex: 1 1 100%;
        width: 100%;
        max-width: none;
        margin-left: 0;
      }
    }

    @media (max-width: 767px) {
      .section { padding: 88px 0; }

      .features-hero {
        align-items: start;
      }

      .capability-gif-image {
        min-height: 320px;
      }

      .about-hero .workflow-scene.workflow-media-panel {
        height: auto;
      }

      .capability-gif-copy {
        inset: auto 16px 16px 16px;
      }

      .features-hero .capability-visual {
        margin-top: 0;
        align-self: auto;
      }

      .hero-layout {
        align-items: start;
        gap: 28px;
      }

      .brand {
        max-width: 100%;
      }

      .nav-shell {
        flex-wrap: wrap;
        gap: 14px;
      }

      .header-nav-actions {
        width: 100%;
        margin: 0;
        gap: 8px;
      }

      .header-nav-link {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        justify-content: center;
      }

      .header-launch-strip {
        width: 100%;
        min-height: auto;
        padding: 12px;
        border-radius: 20px;
      }

      .hero-visual {
        min-height: auto;
        margin-top: 0;
        padding-top: 0;
      }

      .hero-side-copy {
        max-width: none;
        margin-top: 0;
      }

      .launch-strip {
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
      }

      .launch-strip-countdown {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
      }

      .launch-strip-unit {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
      }

      .tag-top,
      .tag-bottom,
      .pulse-card {
        position: static;
        margin-top: 16px;
        width: 100%;
      }

      .capability-visual .float-tag,
      .capability-visual .pulse-card {
        margin-top: 0;
      }

      .shader-panel {
        min-height: 320px;
      }

      .project-cover,
      .project-side-image {
        max-height: none;
      }

      .story-slide,
      .story-slide img {
        min-height: 320px;
      }

      .story-carousel-track {
        grid-auto-columns: minmax(190px, 76%);
      }

      .cta-panel {
        padding: 28px 24px;
        border-radius: 24px;
      }

      .faq-item button {
        align-items: flex-start;
        font-size: 0.98rem;
      }

      .faq-item button span:last-child {
        line-height: 1;
        margin-top: 2px;
      }

      .footer-top,
      .footer-bottom {
        align-items: flex-start;
      }
    }

    @media (max-width: 540px) {
      .container {
        width: min(calc(100% - 24px), var(--container));
      }

      h1 {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
      }

      .brand {
        gap: 10px;
      }

      .brand-logo {
        height: 30px;
      }

      .header-nav-link {
        padding: 10px 12px;
        font-size: 0.68rem;
      }

      .launch-strip-copy strong {
        font-size: 1rem;
      }

      .launch-strip-countdown {
        gap: 10px;
      }

      .launch-strip-unit {
        padding: 10px 8px;
      }

      .launch-strip-unit strong {
        font-size: 1rem;
      }

      .shader-panel {
        min-height: 280px;
        border-radius: 24px;
      }

      .shader-copy {
        max-width: 86%;
      }

      .project-gallery {
        grid-template-columns: 1fr;
      }

      .story-carousel-track {
        grid-auto-columns: 86%;
      }

      .story-slide,
      .story-slide img {
        min-height: 280px;
      }
    }








