:root {
      --bg: #f5f7fb;
      --card: #ffffff;
      --ink: #101827;
      --muted: #667085;
      --line: #dfe7f1;
      --main: #2157ff;
      --main2: #0f2f8f;
      --soft: #eef3ff;
      --good: #0f9f6e;
      --warn: #f59f00;
      --danger: #e03131;
      --shadow: 0 18px 46px rgba(16, 24, 40, .11);
      --radius: 22px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(33,87,255,.14), transparent 30%),
        radial-gradient(circle at 100% 12%, rgba(15,159,110,.11), transparent 28%),
        var(--bg);
      line-height: 1.58;
    }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    .page {
      width: min(1040px, 100%);
      margin: 0 auto;
      padding: 18px 14px 70px;
    }
    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 8px 2px 18px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: -.03em;
    }
    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: white;
      background: linear-gradient(135deg, var(--main), #22c55e);
      box-shadow: 0 12px 26px rgba(33,87,255,.25);
    }
    .home-link {
      color: #344054;
      font-size: 14px;
      font-weight: 800;
      padding: 9px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.72);
    }
    .hero {
      background: linear-gradient(135deg, #132257, #2157ff 66%, #0fa36b);
      color: white;
      border-radius: 28px;
      padding: 28px 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto -70px -90px auto;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(255,255,255,.13);
    }
    .hero .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 14px;
    }
    h1 {
      margin: 0;
      font-size: clamp(34px, 9vw, 58px);
      line-height: 1.02;
      letter-spacing: -.065em;
    }
    .hero p {
      margin: 14px 0 0;
      max-width: 720px;
      color: rgba(255,255,255,.88);
      font-size: 17px;
      font-weight: 650;
    }
    .hero-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 22px;
      position: relative;
      z-index: 1;
    }
    .primary-btn, .secondary-btn, .ghost-btn {
      border: 0;
      border-radius: 18px;
      padding: 15px 14px;
      font-weight: 900;
      cursor: pointer;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .primary-btn:hover, .secondary-btn:hover, .ghost-btn:hover { transform: translateY(-1px); }
    .primary-btn {
      background: #fff;
      color: #102d8e;
      box-shadow: 0 12px 30px rgba(0,0,0,.16);
    }
    .secondary-btn {
      background: rgba(255,255,255,.14);
      color: #fff;
      border: 1px solid rgba(255,255,255,.28);
    }
    .is-hidden { display: none !important; }
    .section {
      margin-top: 16px;
      background: var(--card);
      border: 1px solid rgba(16,24,40,.06);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
    }
    .section-title {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }
    .section-title h2 {
      font-size: 22px;
      line-height: 1.2;
      margin: 0;
      letter-spacing: -.04em;
    }
    .section-title p {
      margin: 6px 0 0;
      color: var(--muted);
      font-weight: 600;
      font-size: 14px;
    }
    .mini-pill {
      flex: 0 0 auto;
      padding: 7px 10px;
      border-radius: 999px;
      background: var(--soft);
      color: var(--main2);
      font-size: 12px;
      font-weight: 900;
    }
    .question {
      margin: 16px 0 4px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fbfdff;
    }
    .q-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 950;
      letter-spacing: -.03em;
      margin-bottom: 10px;
    }
    .q-num {
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border-radius: 9px;
      color: white;
      background: var(--main);
      font-size: 13px;
    }
    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .chip {
      border: 1px solid #d5deee;
      background: white;
      color: #253044;
      border-radius: 999px;
      padding: 10px 13px;
      font-weight: 850;
      font-size: 14px;
      cursor: pointer;
      transition: .14s ease;
    }
    .chip.active {
      color: white;
      background: var(--main);
      border-color: var(--main);
      box-shadow: 0 8px 20px rgba(33,87,255,.21);
    }
    .toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: 14px;
      flex-wrap: wrap;
    }
    .ghost-btn {
      background: #f3f6fb;
      color: #344054;
      border: 1px solid var(--line);
      padding: 12px 14px;
      border-radius: 14px;
    }
    .hint {
      color: var(--muted);
      font-size: 13px;
      font-weight: 650;
    }
    .result-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px;
      border-radius: 18px;
      background: linear-gradient(135deg, #eef3ff, #f4fff9);
      margin-bottom: 12px;
    }
    .result-head strong {
      display: block;
      font-size: 18px;
      letter-spacing: -.035em;
    }
    .result-head span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 650;
    }
    .result-count {
      flex: 0 0 auto;
      width: 48px;
      height: 48px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      background: white;
      color: var(--main);
      font-size: 22px;
      font-weight: 1000;
      box-shadow: 0 8px 20px rgba(16,24,40,.07);
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .card {
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 15px;
      background: #fff;
      display: flex;
      flex-direction: column;
      min-height: 250px;
    }
    .card-top {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      align-items: flex-start;
    }
    .badge-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
    .badge {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 4px 8px;
      background: #f2f5f9;
      color: #475467;
      font-size: 11px;
      font-weight: 900;
    }
    .score {
      flex: 0 0 auto;
      padding: 5px 8px;
      border-radius: 999px;
      background: #ecfdf3;
      color: #067647;
      font-size: 11px;
      font-weight: 950;
    }
    .card h3 {
      margin: 0 0 8px;
      font-size: 19px;
      line-height: 1.25;
      letter-spacing: -.035em;
    }
    .card p { margin: 0; color: #475467; font-size: 14px; font-weight: 600; }
    .card .detail {
      margin-top: 12px;
      padding: 10px;
      border-radius: 14px;
      background: #f8fafc;
      color: #344054;
      font-size: 13px;
      font-weight: 650;
    }
    .detail b { color: #111827; }
    .card-actions { margin-top: auto; padding-top: 14px; display: grid; gap: 8px; }
    .go-btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      border-radius: 15px;
      padding: 12px 13px;
      background: var(--main);
      color: white;
      font-weight: 950;
      box-shadow: 0 10px 22px rgba(33,87,255,.2);
    }
    .source-link {
      text-align: center;
      font-size: 12px;
      font-weight: 800;
      color: var(--muted);
    }
    .seo-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 12px;
    }
    .info-box {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 15px;
      background: #fff;
    }
    .info-box h3 {
      margin: 0 0 8px;
      font-size: 18px;
      letter-spacing: -.035em;
    }
    .info-box p, .info-box li {
      color: #475467;
      font-weight: 600;
      font-size: 14px;
      margin: 0;
    }
    .info-box ul { margin: 8px 0 0; padding-left: 20px; }
    .notice {
      border: 1px solid #f8dfb0;
      background: #fff8e8;
      color: #7a4b00;
      padding: 13px 14px;
      border-radius: 16px;
      font-size: 13px;
      font-weight: 750;
      margin-top: 12px;
    }
    .footer-note {
      text-align: center;
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
      margin-top: 26px;
    }
    .find-btn {
      background: linear-gradient(135deg, var(--main), #0f9f6e);
      color: #fff;
      box-shadow: 0 12px 24px rgba(33,87,255,.18);
    }

    @media (max-width: 760px) {
      .page { padding: 12px 10px 50px; }
      .hero { padding: 24px 18px; border-radius: 24px; }
      .hero-actions { grid-template-columns: 1fr; }
      .section { padding: 14px; border-radius: 20px; }
      .cards, .seo-grid { grid-template-columns: 1fr; }
      .card { min-height: auto; }
      .section-title { display: block; }
      .mini-pill { display: inline-flex; margin-top: 8px; }
    }