:root {
      --ink: #0b1220;
      --text: #1f2937;
      --muted: #475569;
      --blue: #0a63ff;
      --action: #0b1220;
      --action-2: #1e293b;
      --sky: #9fb3d1;
      --paper: #ffffff;
      --soft: #f6f7f9;
      --line: #e1e6ef;
      --navy: #050b16;
      --radius: 24px;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
    }
    * { box-sizing: border-box; min-width: 0; }
    html, body {
      margin: 0;
      max-width: 100%;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 12% 8%, rgba(10,99,255,.075), transparent 30%),
        radial-gradient(circle at 86% 22%, rgba(148,163,184,.25), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #eef4fb 48%, #f8fbff 100%);
      color: var(--ink);
    }
    body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; }
    h1, h2, h3, p, a, button, input, textarea, select, span, li { overflow-wrap: anywhere; }
    a { color: inherit; text-decoration: none; }

    .brand {
      display: inline-flex;
      align-items: baseline;
      gap: 0;
      border: 0;
      background: transparent;
      padding: 0;
      color: var(--ink);
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -.055em;
      line-height: 1;
      position: relative;
    }
    .brand .x { color: var(--blue); font-size: 1.30em; font-weight: 480; transform: translateY(.04em); text-shadow: 0 0 28px rgba(10,99,255,.22); }
    .brand::after {
      content: "";
      position: absolute;
      left: 0;
      right: -4px;
      bottom: -9px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, rgba(10,99,255,.68), transparent);
      opacity: 0;
      transform: scaleX(.35);
      transition: opacity .25s ease, transform .25s ease;
    }
    .brand:hover::after { opacity: 1; transform: scaleX(1); }

    .intro {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: grid;
      place-items: center;
      background:
        linear-gradient(135deg, rgba(15,23,42,.045), transparent 36%),
        radial-gradient(circle at 50% 41%, rgba(226,232,240,.46), transparent 30%),
        #fff;
      transition: opacity .5s ease, visibility .5s ease;
    }
    .intro.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .intro-inner { text-align: center; transform: translateY(-2vh); padding: 30px; }
    .intro-logo { display: inline-flex; align-items: baseline; position: relative; font-size: clamp(68px, 11vw, 112px); font-weight: 800; letter-spacing: -.072em; filter: drop-shadow(0 26px 50px rgba(10,99,255,.10)); }
    .intro-logo::after {
      content: "";
      position: absolute;
      left: 6%;
      right: 1%;
      bottom: -13px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, rgba(10,99,255,.9), rgba(10,99,255,.36), transparent);
      opacity: 0;
      transform: scaleX(.08);
      transform-origin: left center;
      animation: introLine .85s cubic-bezier(.2,.8,.2,1) .82s forwards;
      box-shadow: 0 0 18px rgba(10,99,255,.38);
    }
    .intro-logo .name { opacity: 0; transform: translateX(-18px); animation: introName .7s ease .18s forwards; }
    .intro-logo .x { opacity: 0; color: var(--blue); font-size: 1.18em; font-weight: 430; transform: translateX(-4px) scale(.96); animation: introX .58s ease .5s forwards; text-shadow: 0 0 34px rgba(10,99,255,.26); }
    .intro p { margin: 18px 0 24px; color: var(--muted); font-size: 17px; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 80;
      background: rgba(255,255,255,.88);
      border-bottom: 1px solid rgba(17,24,39,.08);
      backdrop-filter: blur(18px) saturate(180%);
      transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
    }
    .site-header.scrolled {
      background: rgba(255,255,255,.92);
      border-color: rgba(15,23,42,.10);
      box-shadow: 0 14px 34px rgba(15,23,42,.07);
    }
    .nav-wrap {
      max-width: 1220px;
      min-height: 58px;
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-wrap > * { flex-shrink: 0; }
    .nav-wrap .nav { flex-shrink: 1; }
    .nav { display: flex; align-items: center; gap: 20px; }
    .nav-item { position: relative; padding: 16px 0; }
    .nav-button {
      border: 0;
      background: transparent;
      padding: 4px 0;
      color: var(--ink);
      font-size: 12px;
      font-weight: 750;
      letter-spacing: .055em;
      text-transform: uppercase;
      opacity: .78;
    }
    .nav-button:hover, .nav-button.active { color: var(--ink); opacity: 1; }
    .nav-button.active { box-shadow: inset 0 -2px 0 var(--ink); }
    .dropdown {
      position: absolute;
      left: -14px;
      top: calc(100% - 10px);
      width: 284px;
      padding: 10px;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 18px;
      background: rgba(255,255,255,.98);
      box-shadow: 0 24px 70px rgba(15,23,42,.14);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(8px);
      transition: .18s ease;
    }
    .nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown {
      opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
    }
    .dropdown button {
      width: 100%;
      border: 0;
      border-radius: 12px;
      background: transparent;
      padding: 12px;
      text-align: left;
      color: var(--ink);
      font-size: 13px;
      font-weight: 650;
    }
    .dropdown button:hover { background: var(--soft); color: var(--ink); }
    .menu-toggle {
      display: none;
      min-height: 42px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      padding: 9px 16px;
      color: var(--ink);
      box-shadow: 0 10px 24px rgba(37,99,216,.08);
    }
    .header-actions { display: flex; align-items: center; gap: 12px; }
    .site-search { position: relative; width: 210px; }
    .site-search input {
      height: 36px;
      margin: 0;
      border: 1px solid rgba(15,23,42,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.82);
      padding: 8px 14px;
      font-size: 13px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
    }
    .search-results {
      position: absolute;
      right: 0;
      top: calc(100% + 10px);
      z-index: 160;
      width: 300px;
      display: none;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 18px;
      background: rgba(255,255,255,.98);
      box-shadow: 0 24px 70px rgba(15,23,42,.14);
      padding: 8px;
      max-height: min(420px, calc(100vh - 92px));
      overflow-y: auto;
    }
    .search-results.open { display: grid; gap: 4px; }
    .search-results button {
      border: 0;
      border-radius: 12px;
      background: transparent;
      padding: 10px 12px;
      text-align: left;
      color: var(--ink);
      font-size: 13px;
      font-weight: 650;
    }
    .search-results button span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 500; line-height: 1.3; }
    .search-results button:hover { background: var(--soft); }
    .search-results button:disabled { cursor: default; color: var(--muted); }
    .search-results .hint { color: var(--muted); font-size: 12px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }

    .container, .hero-grid { max-width: 1220px; margin: 0 auto; }
    .hero {
      position: relative;
      overflow: hidden;
      min-height: auto;
      display: flex;
      align-items: center;
      padding: 58px 28px 52px;
      background:
        radial-gradient(circle at 78% 18%, rgba(10,99,255,.07), transparent 28%),
        linear-gradient(135deg, rgba(219,234,254,.42), transparent 36%),
        linear-gradient(180deg, #fff 0%, #eef4fb 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .18;
      background-image: linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px);
      background-size: 72px 72px;
      pointer-events: none;
      mask-image: linear-gradient(180deg, #000, transparent 84%);
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 470px;
      gap: 70px;
      align-items: center;
    }
    .eyebrow { margin: 0 0 16px; color: #3f4f67; font-size: 12px; font-weight: 840; letter-spacing: .11em; text-transform: uppercase; }
    h1, h2, h3 { color: var(--ink); letter-spacing: -.05em; }
    h1, h2 { text-wrap: balance; }
    h1 { margin: 0; max-width: 860px; font-size: clamp(48px, 5.15vw, 74px); line-height: 1.04; font-weight: 720; }
    h2 { margin: 0; font-size: clamp(34px, 3.5vw, 54px); line-height: 1.1; font-weight: 700; }
    .brand-word { display: inline-flex; align-items: baseline; color: var(--ink); white-space: nowrap; text-shadow: 0 18px 60px rgba(10,99,255,.12); }
    .brand-word .x { color: var(--blue); font-weight: 560; text-shadow: 0 0 34px rgba(10,99,255,.30); }
    .hero-copy { max-width: 700px; margin: 24px 0 0; color: var(--text); font-size: 21px; line-height: 1.58; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .hero-actions .btn { max-width: 100%; }
    .trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .trust-row span { border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.74); padding: 9px 12px; color: var(--text); font-size: 13px; font-weight: 650; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      border: 1px solid var(--action);
      border-radius: 999px;
      background: linear-gradient(135deg, var(--action), var(--action-2));
      color: #fff;
      padding: 12px 22px;
      font-size: 14px;
      font-weight: 750;
      box-shadow: 0 16px 34px rgba(15,23,42,.16);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      text-align: center;
      white-space: normal;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(15,23,42,.20); }
    .btn:active { transform: translateY(0) scale(.985); }
    .btn.secondary { background: #fff; color: var(--ink); border-color: #d8e0ec; box-shadow: none; }
    .btn.secondary:hover { background: var(--soft); }

    .hero-panel {
      min-height: 460px;
      display: grid;
      align-content: center;
      border: 1px solid rgba(37,99,216,.14);
      border-radius: 34px;
      background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(244,249,255,.84));
      box-shadow: 0 36px 105px rgba(15,23,42,.10);
      padding: 34px;
    }
    .brand-stage {
      min-height: 480px;
      display: grid;
      align-content: center;
      gap: 22px;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 34px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.88), rgba(247,251,255,.72));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 34px 95px rgba(15,23,42,.08);
      padding: 34px;
      position: relative;
      overflow: hidden;
    }
    .brand-stage::before {
      content: "";
      position: absolute;
      inset: 24px;
      border: 1px solid rgba(15,23,42,.08);
      border-radius: 26px;
      background-image: linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px);
      background-size: 34px 34px;
      pointer-events: none;
    }
    .brand-stage-logo { position: relative; z-index: 1; display: flex; align-items: baseline; font-size: clamp(48px, 5.2vw, 74px); font-weight: 800; letter-spacing: -.075em; }
    .brand-stage-logo .x { color: var(--blue); font-weight: 520; text-shadow: 0 0 34px rgba(10,99,255,.30); }
    .brand-stage p { position: relative; z-index: 1; max-width: 340px; color: var(--text); font-size: 18px; line-height: 1.55; }
    .signal-row { position: relative; z-index: 1; display: grid; gap: 10px; margin-top: 6px; }
    .signal-row span { height: 8px; border-radius: 999px; background: linear-gradient(90deg, rgba(11,18,32,.72), rgba(100,116,139,.28), transparent); animation: signalMove 3.8s ease-in-out infinite; }
    .signal-row span:nth-child(2) { width: 76%; animation-delay: .2s; }
    .signal-row span:nth-child(3) { width: 58%; animation-delay: .4s; }
    .pipeline-title { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-bottom: 22px; }
    .pipeline-title h3 { margin: 0; font-size: 34px; line-height: 1.05; }
    .pulse { width: 54px; height: 54px; border-radius: 50%; background: radial-gradient(circle, #fff, #0f172a); box-shadow: 0 0 0 10px rgba(15,23,42,.06), 0 0 34px rgba(15,23,42,.16); animation: pulse 2.8s ease-in-out infinite; }
    .pipeline { display: grid; gap: 12px; }
    .pipe-step { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 18px; }
    .pipe-step b { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--soft); color: var(--ink); }
    .pipe-step strong { display: block; margin-bottom: 4px; color: var(--ink); }
    .pipe-step span { color: var(--muted); font-size: 14px; line-height: 1.45; }

    #app { animation: pageIn .42s ease both; }
    #app.route-leaving { animation: pageOut .16s ease both; }
    .section, .detail-page {
      padding: 24px 28px;
    }
    .home-tight { padding-top: 18px; padding-bottom: 18px; }
    .home-next { padding-top: 28px; }
    .section.soft, .detail-page {
      background:
        radial-gradient(circle at 12% 10%, rgba(10,99,255,.055), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(148,163,184,.16), transparent 24%),
        linear-gradient(180deg, #f5f9ff 0%, #eaf1f9 100%);
    }
    .section-head, .detail-hero { max-width: 1120px; margin-bottom: 16px; }
    .detail-hero h2 { max-width: 1120px; }
    .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
    .section-head p, .detail-hero p { color: var(--text); font-size: 18px; line-height: 1.65; font-weight: 450; }
    @media (min-width: 1024px) {
      .detail-hero h2, .section-head.center h2 { font-size: clamp(34px, 3vw, 46px); white-space: nowrap; }
    }
    .grid, .services-grid, .process, .role-grid, .audience-grid, .story-layout, .contact-grid, .jobs, .outcome-grid { display: grid; gap: 16px; }
    .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
    .section-head.center + .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(100%, 980px); margin-left: auto; margin-right: auto; }
    .process { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
    .outcome-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
    .role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .audience-grid, .story-layout, .contact-grid, .jobs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .card, .service-card, .process-step, .role-tile, .audience-card, .story-copy, .contact-card, .job-card, .outcome-card {
      border: 1px solid rgba(15,23,42,.09);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.88));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 18px 48px rgba(15,23,42,.052);
      padding: 26px;
    }
    .service-card, .process-step, .audience-card, .job-card {
      min-height: 0;
      display: grid;
      align-content: start;
      gap: 14px;
    }
    .service-card, .process-step, .role-tile, .audience-card, .job-card, .outcome-card {
      transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease, background .26s ease;
    }
    .service-card:hover, .process-step:hover, .role-tile:hover, .audience-card:hover, .job-card:hover, .outcome-card:hover {
      transform: translateY(-5px);
      border-color: rgba(15,23,42,.18);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 24px 60px rgba(15,23,42,.08);
    }
    .service-card small { display: inline-flex; margin-bottom: 4px; color: #44546a; font-size: 11px; font-weight: 840; letter-spacing: .08em; text-transform: uppercase; }
    .service-card h3, .process-step h3, .audience-card h3, .job-card h3, .contact-card h3, .outcome-card h3 { margin: 0; font-size: 24px; font-weight: 700; letter-spacing: -.035em; }
    .service-card p, .process-step p, .audience-card p, .story-copy p, .contact-card p, .job-card p, .role-tile, .audience-card li, .outcome-card p { margin: 0; color: var(--text); line-height: 1.48; font-weight: 430; }
    .industry-grid { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); align-items: stretch; }
    .industry-card { position: relative; min-height: 260px; overflow: hidden; cursor: pointer; grid-template-rows: auto auto 1fr; }
    .industry-card::after {
      content: "";
      position: absolute;
      right: -44px;
      top: -44px;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(10,99,255,.085), transparent 68%);
      pointer-events: none;
    }
    .industry-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0), rgba(226,232,240,.18));
      opacity: 0;
      transition: opacity .26s ease;
      pointer-events: none;
    }
    .industry-card:hover::before { opacity: 1; }
    .industry-top { display: flex; align-items: center; justify-content: flex-start; gap: 14px; position: relative; z-index: 1; }
    .industry-top small { margin: 0; min-height: 28px; align-items: center; border: 1px solid rgba(15,23,42,.09); border-radius: 999px; background: rgba(255,255,255,.72); padding: 6px 10px; }
    .industry-card h3 { position: relative; z-index: 1; min-height: 58px; display: flex; align-items: flex-start; }
    .industry-card p { position: relative; z-index: 1; }
    .industry-icon {
      width: 54px;
      height: 54px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,246,255,.78));
      color: var(--ink);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 16px 36px rgba(15,23,42,.075);
      transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    }
    .industry-card:hover .industry-icon { transform: translateY(-2px) scale(1.035); border-color: rgba(15,23,42,.18); box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 20px 44px rgba(15,23,42,.10); }
    .industry-icon svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.85; fill: none; stroke-linecap: round; stroke-linejoin: round; }
    .process-step span { color: #44546a; font-size: 12px; font-weight: 850; letter-spacing: .08em; }
    .process-step h3 { margin-top: 4px; min-height: 0; }
    .job-id {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      min-height: 28px;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 999px;
      background: rgba(255,255,255,.80);
      padding: 5px 10px;
      color: #334155;
      font-size: 11px;
      font-weight: 850;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .job-card .btn {
      width: fit-content;
      min-width: 156px;
      justify-self: start;
      padding: 12px 18px;
      gap: 8px;
    }
    .job-card .btn::after {
      content: "→";
      font-size: 15px;
      line-height: 1;
      transform: translateY(-1px);
    }
    .job-details { display: grid; gap: 8px; margin-top: 2px; }
    .job-details strong { color: #334155; font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
    .job-details p { font-size: 14px; line-height: 1.55; }
    .job-list { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
    .job-list li { position: relative; padding-left: 18px; color: var(--text); font-size: 13px; line-height: 1.45; }
    .job-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; border-radius: 50%; background: var(--ink); opacity: .76; }
    .job-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
    .job-stack span { border: 1px solid rgba(15,23,42,.10); border-radius: 999px; background: rgba(255,255,255,.72); padding: 7px 10px; color: #334155; font-size: 12px; font-weight: 760; }
    .career-tools { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin: 0 0 22px; }
    .career-page .detail-hero { max-width: 1120px; display: block; margin-bottom: 18px; }
    .career-page .detail-hero .eyebrow { margin-bottom: 10px; }
    .career-page .detail-hero h2 { margin-top: 0; }
    .filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
    .filter-chip {
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 999px;
      background: rgba(255,255,255,.82);
      padding: 10px 13px;
      color: #334155;
      font-size: 12px;
      font-weight: 850;
      box-shadow: 0 10px 24px rgba(15,23,42,.035);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .filter-chip:hover { transform: translateY(-1px); border-color: rgba(10,99,255,.24); background: #fff; }
    .filter-chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
    .job-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 2px; }
    .job-actions .btn { margin: 0; }
    .job-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 22px; align-items: start; }
    .job-detail-card {
      border: 1px solid rgba(15,23,42,.09);
      border-radius: 26px;
      background: rgba(255,255,255,.88);
      box-shadow: 0 22px 70px rgba(15,23,42,.07);
      padding: 26px;
    }
    .job-detail-card h3 { margin: 0 0 12px; color: var(--ink); font-size: 22px; letter-spacing: -.035em; }
    .job-detail-card p { margin: 0; color: var(--text); line-height: 1.7; }
    .job-detail-card + .job-detail-card { margin-top: 16px; }
    .job-detail-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
    .job-detail-list li { position: relative; padding-left: 22px; color: var(--text); line-height: 1.58; }
    .job-detail-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); opacity: .76; }
    .job-side-card { position: sticky; top: 92px; display: grid; gap: 12px; }
    .job-side-card .btn { width: 100%; }
    .outcome-card { min-height: 205px; display: grid; grid-template-rows: auto 1fr; align-content: start; gap: 14px; }
    .outcome-card h3 { position: relative; min-height: 64px; padding-top: 18px; font-size: 22px; line-height: 1.22; }
    .outcome-card p { margin: 0; }
    .outcome-card h3::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 42px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #0f172a, #94a3b8);
    }

    .dark-panel, .roles-intro, .story-aside, .cta, .dark-card {
      border-radius: var(--radius);
      border: 1px solid rgba(15,23,42,.09);
      background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,250,252,.90)),
        radial-gradient(circle at 90% 10%, rgba(10,99,255,.06), transparent 30%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 26px 72px rgba(15,23,42,.07);
      color: var(--ink);
      padding: 30px;
    }
    .home-feature {
      background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.86)),
        radial-gradient(circle at 86% 16%, rgba(15,23,42,.045), transparent 30%);
      color: var(--ink);
      border: 1px solid rgba(15,23,42,.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 26px 72px rgba(15,23,42,.07);
      min-height: 360px;
    }
    .home-feature h2, .home-feature .eyebrow { color: var(--ink); }
    .home-feature h2 { text-shadow: none; }
    .home-feature p { color: var(--text); font-weight: 500; }
    .home-feature .showcase-list span {
      border-color: rgba(15,23,42,.10);
      background: rgba(255,255,255,.80);
      color: var(--ink);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    }
    .dark-panel h2, .roles-intro h2, .story-aside p, .cta h2, .dark-card h3 { color: var(--ink); }
    .cta h2 { max-width: 900px; font-size: clamp(30px, 3vw, 46px); line-height: 1.08; }
    .dark-panel p, .roles-intro p, .cta p, .dark-card p, .dark-card li { color: var(--text); }
    .cta { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; align-items: start; }
    .cta .btn { justify-self: start; align-self: center; white-space: nowrap; }
    .dark-panel { display: grid; grid-template-columns: 1fr .95fr; gap: 24px; align-items: center; min-height: 0; }
    .showcase-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .showcase-list span { display: flex; align-items: center; min-height: 72px; border: 1px solid rgba(15,23,42,.10); border-radius: 14px; background: rgba(255,255,255,.82); padding: 16px; color: var(--ink); font-weight: 680; box-shadow: inset 0 1px 0 rgba(255,255,255,.92); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
    .showcase-list span:hover { transform: translateY(-3px); border-color: rgba(15,23,42,.18); box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 18px 38px rgba(15,23,42,.08); }
    .roles-layout { display: grid; grid-template-columns: 420px 1fr; gap: 22px; }
    .role-tile { display: flex; align-items: center; min-height: 76px; font-weight: 750; color: var(--ink); }
    .role-group-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .role-group-card {
      min-height: 0;
      display: grid;
      align-content: start;
      gap: 12px;
      border: 1px solid rgba(15,23,42,.09);
      border-radius: 22px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,250,252,.86)),
        radial-gradient(circle at 100% 0%, rgba(10,99,255,.055), transparent 32%);
      padding: 24px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 18px 48px rgba(15,23,42,.055);
      transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    }
    .role-group-card:hover {
      transform: translateY(-4px);
      border-color: rgba(15,23,42,.16);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 24px 58px rgba(15,23,42,.075);
    }
    .role-group-card h3 {
      margin: 0;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.18;
      letter-spacing: -.035em;
    }
    .role-group-card p {
      margin: 0;
      color: var(--text);
      font-size: 14px;
      line-height: 1.55;
    }
    .role-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
    .role-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 999px;
      background: rgba(255,255,255,.76);
      padding: 6px 10px;
      color: #334155;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.2;
    }
    .story-layout { align-items: stretch; margin-bottom: 16px; }
    .story-copy, .story-aside { min-height: 300px; }
    .story-copy { display: grid; align-content: center; gap: 18px; }
    .story-copy p { margin: 0; }
    .story-aside { display: grid; align-content: center; min-height: 100%; }
    .story-aside h3 { margin: 0 0 18px; font-size: 26px; line-height: 1.2; letter-spacing: -.04em; }
    .help-steps { display: grid; gap: 12px; }
    .help-step {
      border: 1px solid rgba(15,23,42,.09);
      border-radius: 18px;
      background: rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    }
    .help-step strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 16px; letter-spacing: -.025em; }
    .help-step span { display: block; color: var(--text); font-size: 14px; line-height: 1.5; }
    .detail-page .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
    .detail-page .service-card { min-height: 190px; }
    .capability-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      overflow: hidden;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      background: rgba(15,23,42,.10);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 24px 64px rgba(15,23,42,.07);
    }
    .capability-strip div {
      min-height: 150px;
      display: grid;
      align-content: center;
      gap: 8px;
      background: rgba(255,255,255,.86);
      padding: 26px;
    }
    .capability-strip strong {
      color: var(--ink);
      font-size: 21px;
      letter-spacing: -.035em;
    }
    .capability-strip span {
      color: var(--text);
      font-size: 14px;
      line-height: 1.5;
    }
    .tech-panel {
      display: grid;
      grid-template-columns: minmax(260px, .7fr) 1fr;
      gap: 24px;
      align-items: stretch;
      margin-top: 22px;
      border: 1px solid rgba(15,23,42,.09);
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 12% 0%, rgba(10,99,255,.055), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,251,255,.88));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 24px 64px rgba(15,23,42,.06);
      overflow: hidden;
    }
    .tech-intro {
      padding: 30px;
      border-right: 1px solid rgba(15,23,42,.08);
      display: grid;
      align-content: center;
      gap: 12px;
    }
    .tech-intro h3 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.05;
      letter-spacing: -.055em;
    }
    .tech-intro p {
      margin: 0;
      color: var(--text);
      line-height: 1.62;
      font-weight: 450;
    }
    .tech-cloud {
      padding: 22px;
      display: grid;
      gap: 13px;
      align-content: center;
      overflow: hidden;
    }
    .tech-lane {
      display: grid;
      grid-template-columns: 96px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
    }
    .tech-lane-label {
      min-height: 62px;
      display: flex;
      align-items: center;
      padding-left: 4px;
      padding-right: 12px;
      border-right: 1px solid rgba(15,23,42,.08);
      background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
      color: #334155;
      font-size: 11px;
      font-weight: 850;
      letter-spacing: .075em;
      text-transform: uppercase;
    }
    .tech-marquee {
      overflow: hidden;
      min-width: 0;
      -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
      mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
    }
    .tech-track {
      width: max-content;
      display: flex;
      gap: 10px;
      animation: techFlow 32s linear infinite;
      will-change: transform;
      transform: translateX(0);
    }
    .tech-pill {
      width: 162px;
      min-height: 62px;
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1px solid rgba(15,23,42,.09);
      border-radius: 18px;
      background: rgba(255,255,255,.82);
      padding: 12px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.94);
      transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
    }
    .tech-lane:nth-child(2) .tech-track { animation-duration: 38s; }
    .tech-lane:nth-child(3) .tech-track { animation-duration: 44s; }
    .tech-lane:nth-child(4) .tech-track { animation-duration: 36s; }
    .tech-cloud:hover .tech-track { animation-play-state: paused; }
    .tech-pill:hover {
      transform: translateY(-3px);
      border-color: rgba(15,23,42,.18);
      background: #fff;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 16px 36px rgba(15,23,42,.07);
    }
    .tech-symbol {
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 13px;
      background:
        linear-gradient(145deg, #fff, #edf4fb);
      color: var(--ink);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: -.04em;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
    }
    .tech-symbol img {
      width: 22px;
      height: 22px;
      display: block;
      object-fit: contain;
    }
    .tech-name {
      display: grid;
      gap: 2px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 760;
      line-height: 1.2;
    }
    .tech-name small {
      color: var(--muted);
      font-size: 11px;
      font-weight: 650;
      letter-spacing: .035em;
      text-transform: uppercase;
    }
    @keyframes techFlow {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .detail-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
    .detail-list span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 999px;
      background: rgba(255,255,255,.78);
      padding: 8px 13px;
      color: var(--text);
      font-size: 13px;
      font-weight: 650;
      line-height: 1.25;
    }
    .contact-intent-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; }
    .intent-card { border: 1px solid rgba(15,23,42,.09); border-radius: 20px; background: #fff; padding: 18px; box-shadow: 0 16px 40px rgba(15,23,42,.045); }
    .intent-card strong { display: block; margin-bottom: 8px; font-size: 18px; letter-spacing: -.025em; }
    .intent-card span { color: var(--muted); font-size: 14px; line-height: 1.55; }
    .contact-grid .contact-card:first-child { align-self: start; }
    .contact-grid .contact-card > h3 { margin-bottom: 16px; }
    .contact-grid .contact-card > p + p { margin-top: 12px; }
    .contact-page { padding-top: 26px; }
    .contact-page .detail-hero { margin-bottom: 18px; }
    .contact-page .detail-hero h2 { font-size: clamp(34px, 3vw, 48px); }
    .contact-page .contact-card { padding: 24px; }
    .contact-card form .btn { width: 100%; }
    .contact-guide { display: grid; gap: 12px; margin: 20px 0 18px; }
    .contact-guide div { border-top: 1px solid rgba(15,23,42,.10); padding-top: 12px; color: var(--text); font-size: 14px; line-height: 1.55; }
    .contact-guide strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 14px; }

    .career-page { padding-top: 34px; }
    .career-page .detail-hero { margin-bottom: 14px; }
    .career-page .detail-hero .eyebrow { margin-bottom: 6px; line-height: 1.1; }
    input, textarea { width: 100%; max-width: 100%; border: 1px solid #d7dee9; border-radius: 16px; background: #fff; padding: 15px 16px; margin-bottom: 12px; color: var(--ink); }
    select { width: 100%; max-width: 100%; border: 1px solid #d7dee9; border-radius: 16px; background: #fff; padding: 15px 16px; margin-bottom: 12px; color: var(--ink); }
    textarea { min-height: 150px; resize: vertical; }
    .application-page .detail-hero { margin-bottom: 30px; }
    .application-layout { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
    .apply-job-preview {
      grid-column: 1 / -1;
      border: 1px solid rgba(15,23,42,.09);
      border-radius: 26px;
      background:
        radial-gradient(circle at 94% 8%, rgba(10,99,255,.065), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.88));
      box-shadow: 0 22px 70px rgba(15,23,42,.06);
      padding: 24px;
    }
    .apply-job-preview h3 { margin: 10px 0 10px; color: var(--ink); font-size: clamp(24px, 3vw, 36px); line-height: 1.05; letter-spacing: -.055em; }
    .apply-job-preview p { max-width: 900px; margin: 0; color: var(--text); line-height: 1.62; }
    .apply-job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
    .apply-job-meta span { border: 1px solid rgba(10,99,255,.14); border-radius: 999px; background: rgba(238,245,255,.72); padding: 8px 12px; color: #24364f; font-size: 12px; font-weight: 780; }
    .application-form, .condition-card, .legal-card {
      border: 1px solid rgba(15,23,42,.09);
      border-radius: 26px;
      background: rgba(255,255,255,.88);
      box-shadow: 0 22px 70px rgba(15,23,42,.07);
      padding: 24px;
    }
    .application-form { display: grid; gap: 18px; }
    .form-section { border: 1px solid rgba(15,23,42,.08); border-radius: 20px; background: linear-gradient(145deg, #fff, rgba(247,250,255,.88)); padding: 18px; }
    .form-section h3, .condition-card h3, .legal-card h3 { margin: 0 0 14px; color: var(--ink); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
    .form-section h3 span {
      display: inline-flex;
      width: 26px;
      height: 26px;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
      border-radius: 50%;
      background: rgba(15,23,42,.08);
      color: var(--ink);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
    }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .form-grid .full, .application-form .full { grid-column: 1 / -1; }
    .file-box { position: relative; display: grid; gap: 8px; border: 1px dashed rgba(10,99,255,.24); border-radius: 16px; background: rgba(238,245,255,.74); padding: 16px; color: #334155; font-size: 13px; font-weight: 720; cursor: pointer; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
    .file-box:hover { border-color: rgba(10,99,255,.38); background: rgba(238,245,255,.95); box-shadow: inset 0 1px 0 rgba(255,255,255,.92); }
    .file-box span, .field-note { color: var(--muted); font-size: 12px; line-height: 1.45; font-weight: 600; }
    .file-box input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
    .file-action { width: fit-content; border: 1px solid rgba(15,23,42,.12); border-radius: 999px; background: #fff; padding: 8px 12px; color: var(--ink) !important; font-size: 12px !important; font-weight: 850 !important; }
    .file-name { color: #334155 !important; font-size: 13px !important; font-weight: 760 !important; }
    .submit-confirmations { display: grid; gap: 10px; margin: 14px 0 0; border: 1px solid rgba(15,23,42,.08); border-radius: 18px; background: rgba(255,255,255,.74); padding: 14px; }
    .submit-confirmations strong { color: var(--ink); font-size: 14px; letter-spacing: -.02em; }
    .submit-confirmations a { color: var(--ink); font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
    .checkbox-line { display: flex; align-items: flex-start; gap: 12px; color: #344154; font-size: 13px; line-height: 1.45; font-weight: 650; }
    .checkbox-line input { flex: 0 0 20px; width: 20px; height: 20px; min-width: 20px; margin: 2px 0 0; accent-color: var(--ink); }
    .checkbox-line span { display: block; min-width: 0; }
    .btn:disabled { cursor: not-allowed; opacity: .48; box-shadow: none; transform: none; }
    .condition-card { position: sticky; top: 92px; }
    .condition-card ul, .legal-card ul { margin: 0; padding-left: 18px; color: #344154; line-height: 1.7; }
    .condition-card li + li, .legal-card li + li { margin-top: 8px; }
    .condition-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; color: #344154; line-height: 1.55; }
    .condition-list li { position: relative; padding-left: 30px; }
    .condition-list li + li { margin-top: 0; }
    .condition-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 1px;
      display: inline-flex;
      width: 19px;
      height: 19px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(10,99,255,.10);
      color: var(--blue);
      font-size: 12px;
      font-weight: 900;
    }
    .legal-grid { display: grid; gap: 18px; }
    .legal-sections { display: grid; gap: 12px; }
    .legal-section {
      border: 1px solid rgba(15,23,42,.08);
      border-radius: 18px;
      background: rgba(255,255,255,.66);
      padding: 15px 16px;
    }
    .legal-section h4 { margin: 0 0 10px; color: var(--ink); font-size: 16px; letter-spacing: -.02em; }
    .legal-section p { margin: 0; color: #344154; line-height: 1.7; }
    .legal-section p + p { margin-top: 10px; }
    .legal-sections.numbered { counter-reset: legal-section; }
    .legal-sections.numbered .legal-section h4::before {
      counter-increment: legal-section;
      content: counter(legal-section, decimal-leading-zero) " ";
      color: var(--blue);
      font-size: 12px;
      letter-spacing: .08em;
      margin-right: 8px;
    }
    .legal-sections.dotted .legal-section h4::before {
      content: ".";
      color: var(--blue);
      font-size: 18px;
      line-height: 0;
      margin-right: 8px;
      position: relative;
      top: -2px;
    }
    .legal-contact {
      border: 1px solid rgba(10,99,255,.14);
      border-radius: 18px;
      background: rgba(238,245,255,.70);
      padding: 16px 18px;
      color: #24364f;
      line-height: 1.6;
      font-size: 14px;
    }
    .legal-contact a { color: var(--ink); font-weight: 800; }
    .notice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .notice-link {
      display: block;
      border: 1px solid rgba(15,23,42,.09);
      border-radius: 18px;
      background: linear-gradient(145deg, #fff, rgba(247,250,255,.86));
      padding: 18px;
      color: var(--ink);
      text-decoration: none;
      box-shadow: 0 16px 40px rgba(15,23,42,.045);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .notice-link:hover { transform: translateY(-2px); border-color: rgba(10,99,255,.22); box-shadow: 0 20px 50px rgba(15,23,42,.075); }
    .notice-link strong { display: block; margin-bottom: 8px; font-size: 17px; letter-spacing: -.025em; }
    .notice-link span { display: block; color: var(--muted); font-size: 13px; line-height: 1.55; }
    .job-summary { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
    .job-summary span { border: 1px solid rgba(10,99,255,.16); border-radius: 999px; background: rgba(238,245,255,.76); padding: 8px 12px; color: #24364f; font-size: 12px; font-weight: 780; }

    .site-footer {
      background:
        radial-gradient(circle at 88% 18%, rgba(10,99,255,.06), transparent 26%),
        linear-gradient(180deg, #ffffff, #eaf1f9);
      color: var(--ink);
      padding: 0 28px;
      border-top: 1px solid rgba(15,23,42,.08);
    }
    .footer-wrap { max-width: 1220px; margin: 0 auto; }
    .footer-top { min-height: 0; display: grid; grid-template-columns: minmax(240px, 1.05fr) minmax(120px, .42fr) minmax(155px, .5fr) minmax(150px, .48fr) minmax(135px, .44fr) minmax(215px, .62fr); gap: 24px; align-items: start; justify-content: space-between; padding: 28px 0 24px; }
    .footer-bottom { border-top: 1px solid rgba(15,23,42,.08); padding: 14px 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .site-footer .brand { color: var(--ink); }
    .site-footer .brand span:first-child { color: var(--ink); }
    .site-footer .brand .x { color: var(--blue); text-shadow: 0 0 28px rgba(57,196,255,.32); }
    .footer-brand p { max-width: 390px; }
    .footer-brand p, .footer-bottom small, .footer-links a, .footer-contact p { color: #334155; font-size: 13px; line-height: 1.65; font-weight: 500; }
    .footer-brand p, .footer-contact p { margin: 0; }
    .footer-links, .footer-contact { display: grid; gap: 8px; align-content: start; justify-items: start; text-align: left; }
    .footer-links a { display: block; transition: color .18s ease, transform .18s ease; }
    .footer-links a:hover, .footer-contact a:hover { color: var(--ink); transform: translateX(1px); }
    .footer-contact { justify-self: start; width: 100%; min-width: 250px; }
    .footer-contact p { width: 100%; }
    .footer-links h4, .footer-contact h4 { margin: 0 0 8px; color: var(--ink); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(15,23,42,.12);
      border-radius: 999px;
      color: var(--ink);
      background: rgba(255,255,255,.78);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .social-link svg { width: 16px; height: 16px; fill: currentColor; }
    .social-link:hover { transform: translateY(-1px); background: #fff; border-color: rgba(15,23,42,.22); }
    .social-link[data-social="linkedin"] { color: #0A66C2; }
    .social-link[data-social="x"] { color: #111827; }
    .social-link[data-social="facebook"] { color: #1877F2; }
    .social-link[data-social="instagram"] { color: #E4405F; }
    .social-link[data-social="youtube"] { color: #FF0000; }
    .social-link[data-social="linkedin"]:hover { background: rgba(10,102,194,.08); border-color: rgba(10,102,194,.24); }
    .social-link[data-social="x"]:hover { background: rgba(17,24,39,.07); border-color: rgba(17,24,39,.22); }
    .social-link[data-social="facebook"]:hover { background: rgba(24,119,242,.08); border-color: rgba(24,119,242,.24); }
    .social-link[data-social="instagram"]:hover { background: rgba(228,64,95,.08); border-color: rgba(228,64,95,.24); }
    .social-link[data-social="youtube"]:hover { background: rgba(255,0,0,.08); border-color: rgba(255,0,0,.24); }
    .social-row { display: grid; grid-template-columns: repeat(4, 36px); gap: 9px; margin-top: 6px; align-items: center; }
    .contact-card .social-link { color: var(--ink); border-color: rgba(15,23,42,.12); background: #fff; box-shadow: 0 10px 24px rgba(15,23,42,.06); }
    .contact-card .social-link:hover { background: var(--soft); }
    .chat-launcher {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 90;
      min-height: 44px;
      min-width: auto;
      border: 1px solid rgba(15,23,42,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.90);
      color: var(--ink);
      padding: 10px 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 760;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 18px 44px rgba(15,23,42,.16);
      backdrop-filter: blur(18px) saturate(180%);
      white-space: nowrap;
    }
    .chat-launcher .mobile-label { display: none; }
    .chat-launcher::before { display: none; }
    .chat-launcher::after {
      content: "";
      position: absolute;
      inset: -6px;
      z-index: -1;
      border-radius: inherit;
      border: 1px solid rgba(11,18,32,.14);
      opacity: .5;
      animation: talkPulse 2.8s ease-in-out infinite;
    }
    .chat-launcher:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 22px 54px rgba(15,23,42,.20); }
    body.near-footer .chat-launcher { opacity: 0; transform: translateY(74px); pointer-events: none; }
    body.no-floating .chat-launcher { display: none; }
    .chat-launcher .mini-brand { display: inline-flex; align-items: baseline; letter-spacing: -.045em; font-weight: 820; white-space: nowrap; margin-left: 2px; }
    .chat-launcher .mini-brand .x { color: var(--blue); font-size: 1.24em; font-weight: 500; transform: translateY(.04em); }
    .chat-panel {
      position: fixed;
      right: 24px;
      bottom: 92px;
      z-index: 90;
      width: min(360px, calc(100vw - 32px));
      display: none;
      border: 1px solid rgba(15,23,42,.12);
      border-radius: 26px;
      background: rgba(255,255,255,.96);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 30px 90px rgba(15,23,42,.20);
      backdrop-filter: blur(18px) saturate(180%);
      overflow: hidden;
    }
    .chat-panel.open { display: block; animation: panelIn .18s ease; }
    .chat-head { display: flex; align-items: start; justify-content: space-between; gap: 12px; padding: 20px 20px 16px; border-bottom: 1px solid rgba(15,23,42,.08); background: linear-gradient(180deg, rgba(248,251,255,.86), rgba(255,255,255,.62)); }
    .chat-head strong { display: block; color: var(--ink); font-size: 19px; letter-spacing: -.035em; }
    .chat-head span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.4; }
    .chat-close { width: 32px; height: 32px; border: 1px solid rgba(15,23,42,.10); border-radius: 999px; background: #fff; color: var(--muted); font-size: 20px; line-height: 1; }
    .chat-body { padding: 18px 20px 20px; }
    .chat-body input, .chat-body textarea { border-color: #d8e0ec; border-radius: 14px; padding: 13px 15px; }
    .chat-body textarea { min-height: 96px; }
    .chat-note { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
    .apply-panel {
      position: fixed;
      inset: 0;
      z-index: 110;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 22px;
      background: rgba(8,17,31,.42);
      backdrop-filter: blur(14px);
    }
    .apply-panel.open { display: flex; animation: panelIn .18s ease; }
    .apply-card {
      width: min(780px, 100%);
      max-height: min(86vh, 820px);
      overflow: auto;
      border: 1px solid rgba(15,23,42,.12);
      border-radius: 28px;
      background: rgba(255,255,255,.96);
      box-shadow: 0 34px 100px rgba(15,23,42,.28);
    }
    .apply-head {
      position: sticky;
      top: 0;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      padding: 22px 24px;
      border-bottom: 1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(14px);
    }
    .apply-head strong { display: block; color: var(--ink); font-size: 22px; letter-spacing: -.04em; }
    .apply-head span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.4; }
    .apply-close { width: 34px; height: 34px; border: 1px solid rgba(15,23,42,.10); border-radius: 999px; background: #fff; color: var(--muted); font-size: 22px; line-height: 1; }
    .apply-job-pill {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-top: 8px;
      border: 1px solid rgba(10,99,255,.16);
      border-radius: 999px;
      background: rgba(238,245,255,.78);
      padding: 7px 10px;
      color: #24364f;
      font-size: 12px;
      font-weight: 760;
    }
    .apply-job-pill b { color: var(--ink); }
    .apply-form { display: grid; gap: 16px; padding: 18px 24px 0; }
    .apply-section {
      border: 1px solid rgba(15,23,42,.08);
      border-radius: 20px;
      background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(247,250,255,.82));
      padding: 16px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
    }
    .apply-section h3 {
      margin: 0 0 12px;
      color: var(--ink);
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .apply-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .apply-form input, .apply-form textarea { margin-bottom: 0; }
    .apply-form textarea, .apply-form .full { grid-column: 1 / -1; }
    .apply-file {
      display: grid;
      gap: 9px;
      border: 1px dashed rgba(10,99,255,.24);
      border-radius: 16px;
      background: rgba(238,245,255,.72);
      padding: 14px 16px;
      color: #334155;
      font-size: 13px;
      font-weight: 720;
    }
    .apply-file span { color: var(--muted); font-size: 12px; font-weight: 600; }
    .apply-file input { padding: 0; border: 0; background: transparent; color: var(--ink); font-size: 13px; }
    .apply-privacy {
      margin: 10px 0 0;
      color: #64748b;
      font-size: 12px;
      line-height: 1.45;
    }
    .apply-trust { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
    .apply-submit {
      display: grid;
      gap: 8px;
      padding: 14px 24px 22px;
      border-top: 1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.76);
    }
    .apply-submit .btn { width: 100%; }
    .status-notice {
      max-width: 1220px;
      margin: 0 auto 24px;
      border: 1px solid rgba(15,23,42,.12);
      border-radius: 16px;
      background: rgba(255,255,255,.9);
      padding: 14px 16px;
      color: var(--ink);
      box-shadow: 0 14px 36px rgba(15,23,42,.07);
      font-size: 14px;
      font-weight: 650;
    }
    .scroll-control {
      position: fixed;
      right: 24px;
      bottom: 86px;
      z-index: 88;
      display: grid;
      padding: 7px;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 999px;
      background: rgba(255,255,255,.68);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 18px 45px rgba(15,23,42,.12);
      backdrop-filter: blur(18px) saturate(180%);
      transition: opacity .22s ease, transform .22s ease;
    }
    .scroll-control.hidden { opacity: 0; pointer-events: none; transform: translateY(8px) scale(.96); }
    .scroll-control button {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 999px;
      background: rgba(255,255,255,.82);
      color: var(--ink);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .scroll-control button:hover { transform: translateY(-1px); background: #fff; border-color: rgba(15,23,42,.20); }
    .scroll-control svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
    .reveal { opacity: 1; transform: translateY(0); transition: opacity .28s ease, transform .28s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @keyframes introName { to { opacity: 1; transform: translateX(0); } }
    @keyframes introX { to { opacity: 1; transform: translateX(0) scale(1); } }
    @keyframes introLine { to { opacity: 1; transform: scaleX(1); } }
    @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
    @keyframes signalMove { 0%, 100% { opacity: .38; transform: translateX(0); } 50% { opacity: 1; transform: translateX(12px); } }
    @keyframes panelIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
    @keyframes pageIn { from { opacity: 0; transform: translateY(12px); filter: blur(2px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
    @keyframes pageOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(6px); } }
    @keyframes talkPulse { 0%, 100% { opacity: .22; transform: scale(.98); } 50% { opacity: .62; transform: scale(1.08); } }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
      }
      .tech-track { transform: none !important; }
    }

    @media (max-width: 980px) {
      .nav-wrap { min-height: 58px; gap: 12px; }
      .menu-toggle { display: inline-flex; }
      .nav { display: none; position: absolute; left: 0; right: 0; top: 58px; padding: 14px 24px 20px; background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(17,24,39,.08); }
      .nav.open { display: grid; gap: 8px; }
      .nav-item { padding: 0; }
      .nav-button { width: 100%; padding: 12px; text-align: left; }
      .dropdown { position: static; display: none; width: 100%; margin-top: 6px; opacity: 1; visibility: visible; pointer-events: auto; transform: none; box-shadow: none; }
      .nav-item.open .dropdown { display: block; }
      .hero { min-height: auto; padding: 44px 20px 40px; }
      .hero-grid, .services-grid, .process, .outcome-grid, .role-grid, .audience-grid, .story-layout, .contact-grid, .jobs, .roles-layout, .dark-panel, .showcase-list, .detail-page .services-grid, .contact-intent-grid, .footer-top, .job-detail-layout { grid-template-columns: 1fr; }
      .cta { grid-template-columns: 1fr; align-items: start; }
      .career-page .detail-hero { display: block; }
      .career-page .detail-hero .hero-actions { margin-top: 18px; justify-content: flex-start; }
      .role-group-grid { grid-template-columns: 1fr; }
      h1 { font-size: clamp(42px, 11vw, 62px); }
      h2 { font-size: clamp(34px, 9vw, 50px); }
      .hero-panel { min-height: auto; }
      .hero-copy { font-size: 18px; }
      .brand-stage { min-height: auto; }
      .brand-stage-logo { font-size: clamp(44px, 12vw, 70px); }
      .pipeline-title h3 { font-size: 28px; }
      .story-copy, .story-aside { min-height: auto; }
      .outcome-card h3 { min-height: auto; }
      .service-card, .process-step, .audience-card, .job-card, .detail-page .service-card { min-height: auto; }
      .role-group-card { min-height: auto; }
      .section, .detail-page { padding: 24px 20px; }
      .home-tight { padding-top: 18px; padding-bottom: 18px; }
      .home-next { padding-top: 34px; }
      .capability-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .tech-panel { grid-template-columns: 1fr; }
      .tech-intro { border-right: 0; border-bottom: 1px solid rgba(15,23,42,.08); }
      .tech-cloud { -webkit-mask-image: none; mask-image: none; }
      .tech-lane { grid-template-columns: 1fr; gap: 8px; }
      .tech-track { flex-wrap: wrap; width: 100%; animation: none; }
      .tech-pill.is-clone { display: none; }
      .tech-pill { width: calc(50% - 5px); min-height: 58px; }
      .site-footer { padding: 0 20px; }
      .footer-top { gap: 24px; padding: 30px 0; }
      .footer-bottom { display: grid; justify-content: start; }
      .footer-brand p { max-width: 330px; }
      .site-search { display: block; width: min(36vw, 180px); }
      .footer-contact { min-width: 0; }
      .social-row { grid-template-columns: repeat(4, 36px); }
    }

    @media (max-width: 640px) {
      body { padding-bottom: 82px; }
      .nav-wrap { padding: 0 18px; }
      .brand { font-size: 22px; }
      .header-actions { gap: 8px; }
      .site-search { width: min(31vw, 120px); }
      .site-search input { padding: 8px 11px; font-size: 12px; }
      .search-results { position: fixed; left: 14px; right: 14px; top: 64px; width: auto; max-height: 52vh; }
      .menu-toggle { padding: 9px 13px; }
      .intro-logo { font-size: clamp(58px, 17vw, 88px); }
      .card, .service-card, .process-step, .role-tile, .role-group-card, .audience-card, .story-copy, .contact-card, .job-card, .outcome-card, .roles-intro, .cta, .dark-panel, .intent-card { border-radius: 20px; padding: 24px; }
      .hero { padding: 30px 18px 28px; }
      .section, .detail-page { padding: 18px 18px; }
      .home-tight { padding-top: 16px; padding-bottom: 16px; }
      .home-next { padding-top: 28px; }
      h1 { font-size: clamp(34px, 10.5vw, 46px); line-height: 1.05; }
      h2 { font-size: clamp(30px, 9vw, 44px); line-height: 1.1; }
      .hero-copy, .section-head p, .detail-hero p { font-size: 16px; line-height: 1.65; }
      .trust-row span { max-width: 100%; }
      .brand-stage { display: none; }
      .showcase-list span, .role-tile { min-height: 62px; }
      .outcome-card { min-height: auto; }
      .detail-list span { width: 100%; border-radius: 14px; }
      .capability-strip { grid-template-columns: 1fr; }
      .capability-strip div { min-height: auto; padding: 22px; }
      .tech-intro, .tech-cloud { padding: 20px; }
      .tech-intro h3 { font-size: 30px; }
      .tech-intro p { font-size: 14px; line-height: 1.55; }
      .tech-cloud { -webkit-mask-image: none; mask-image: none; }
      .tech-lane { grid-template-columns: 1fr; gap: 8px; }
      .tech-track { flex-wrap: wrap; width: 100%; animation: none; }
      .tech-pill.is-clone { display: none; }
      .tech-pill { width: calc(50% - 5px); min-height: 56px; padding: 10px; }
      .tech-symbol { width: 34px; height: 34px; flex-basis: 34px; }
      .tech-symbol img { width: 21px; height: 21px; }
      .tech-name { font-size: 13px; }
      .footer-bottom { gap: 8px; }
      .chat-launcher { right: 12px; bottom: 12px; min-width: 88px; min-height: 38px; padding: 8px 12px; }
      .chat-launcher .desktop-label { display: none; }
      .chat-launcher .mobile-label { display: inline; }
      .chat-launcher::after { inset: -3px; opacity: .28; animation-duration: 3.4s; }
      .chat-launcher::before { display: none; }
      .chat-panel { left: 14px; right: 14px; bottom: 68px; width: auto; max-height: calc(100vh - 92px); overflow-y: auto; }
      .scroll-control { right: 14px; bottom: 66px; transform: none; padding: 6px; }
      .scroll-control.hidden { transform: translateY(8px) scale(.96); }
      .scroll-control button { width: 34px; height: 34px; }
      .social-row { grid-template-columns: repeat(4, 34px); gap: 8px; }
      .social-link { width: 34px; height: 34px; }
      .apply-form { padding: 14px 14px 0; }
      .apply-grid { grid-template-columns: 1fr; }
      .apply-submit { padding: 12px 14px 16px; }
      .apply-head { padding: 18px; }
      .application-layout, .form-grid { grid-template-columns: 1fr; }
      .job-actions, .hero-actions { align-items: stretch; flex-direction: column; }
      .job-actions .btn, .hero-actions .btn, .application-form .btn, .contact-card .btn { width: 100%; }
      .application-form [data-consent-submit] { min-height: 54px; position: relative; z-index: 2; touch-action: manipulation; }
      .application-form .form-section:last-child { padding-bottom: 20px; }
      .application-form .checkbox-line { gap: 10px; }
      .submit-confirmations, .file-box { overflow: hidden; }
      .checkbox-line { gap: 11px; font-size: 12.5px; line-height: 1.5; }
      .checkbox-line input { flex-basis: 22px; width: 22px; height: 22px; min-width: 22px; margin-top: 1px; }
      .condition-card, .job-side-card { position: static; }
      .notice-grid { grid-template-columns: 1fr; }
    }
