:root {
    --bg: #0c1016;
    --panel: #121821;
    --border: #263140;
    --text: #f4f7fb;
    --muted: #9ba7b7;
    --accent: #c6d4e8;
    --max: 1120px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    background: var(--bg);
  }
  
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
  
    font-family:
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      "Apple SD Gothic Neo",
      "Noto Sans KR",
      sans-serif;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .header {
    max-width: var(--max);
    margin: auto;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    padding: 24px 28px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  
    font-weight: 700;
    letter-spacing: .04em;
  }
  
  .brand-mark {
    width: 36px;
    height: 36px;
  
    display: grid;
    place-items: center;
  
    border: 1px solid var(--border);
    border-radius: 11px;
  }
  
  nav {
    display: flex;
    gap: 24px;
  
    color: var(--muted);
    font-size: 14px;
  }
  
  nav a:hover,
  .text-link:hover {
    color: white;
  }
  
  main {
    max-width: var(--max);
    margin: auto;
    padding: 70px 28px 120px;
  }
  
  .hero {
    padding: 80px 0 120px;
    max-width: 850px;
  }
  
  .eyebrow {
    margin: 0 0 18px;
  
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  
    letter-spacing: .16em;
  }
  
  h1 {
    margin: 0;
  
    font-size: clamp(44px, 8vw, 90px);
    line-height: .98;
    letter-spacing: -.055em;
  }
  
  .lead {
    max-width: 720px;
    margin: 38px 0 0;
  
    color: var(--muted);
  
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.65;
  }
  
  .section {
    border-top: 1px solid var(--border);
    padding: 70px 0;
  }
  
  .section-heading {
    max-width: 670px;
    margin-bottom: 44px;
  }
  
  .section h2 {
    margin: 0;
  
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -.04em;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .card {
    min-height: 260px;
  
    padding: 28px;
  
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
  }
  
  .card .number {
    color: var(--muted);
    font-size: 12px;
  }
  
  .card h3 {
    margin: 70px 0 12px;
    font-size: 21px;
  }
  
  .card p,
  .text p {
    color: var(--muted);
    line-height: 1.7;
  }
  
  .google-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
  
  .text-link {
    color: var(--accent);
  }
  
  footer {
    max-width: var(--max);
    margin: auto;
  
    display: flex;
    justify-content: space-between;
    gap: 24px;
  
    padding: 28px;
    border-top: 1px solid var(--border);
  
    color: var(--muted);
    font-size: 13px;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  
  /* Legal pages */
  
  .legal {
    max-width: 820px;
    padding-top: 90px;
  }
  
  .legal h1 {
    font-size: clamp(44px, 7vw, 72px);
  }
  
  .legal-date {
    margin: 20px 0 70px;
    color: var(--muted);
  }
  
  .legal section {
    padding: 34px 0;
  
    border-top: 1px solid var(--border);
  }
  
  .legal h2 {
    margin: 0 0 18px;
    font-size: 21px;
  }
  
  .legal p,
  .legal li {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
  }
  
  .legal ul {
    padding-left: 22px;
  }
  
  
  @media (max-width: 760px) {
  
    .header {
      padding: 20px;
    }
  
    nav {
      gap: 14px;
    }
  
    main {
      padding:
        40px
        20px
        80px;
    }
  
    .hero {
      padding:
        60px
        0
        90px;
    }
  
    .grid {
      grid-template-columns: 1fr;
    }
  
    .card {
      min-height: auto;
    }
  
    .card h3 {
      margin-top: 45px;
    }
  
    .google-section {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    footer {
      padding: 24px 20px;
      flex-direction: column;
    }
  
  }