@charset "UTF-8";
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg:           #ffffff;
    --bg-soft:      #F1F4EC;
    --bg-cream:     #F6F8F0;
    --bg-dark:      #0D2818;
    --bg-darker:    #061A0F;

    --ink:          #0A1F12;
    --ink-soft:     #2A3D31;
    --gray:         #6B7572;
    --gray-light:   #B5BFB8;
    --line:         #E2E8D9;

    --accent:       #15803D;
    --accent-soft:  #4ADE80;
    --warm:         #84A833;
    --warm-soft:    #C5D88F;

    --serif:        'Instrument Serif', 'Times New Roman', serif;
    --sans:         'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono:         'Manrope', 'SF Mono', monospace;

    --r-md:         18px;
    --r-lg:         28px;
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ───────────── LAYOUT ───────────── */
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .eyebrow::before {
    content: '';
    width: 52px; height: 2px;
    background: currentColor;
  }

  /* ───────────── HERO ───────────── */
  .hero {
    padding: 120px 0 100px;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 20%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(21,128,61,0.10), transparent 65%);
    z-index: -1;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: -8%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(132,168,51,0.18), transparent 65%);
    z-index: -1;
    pointer-events: none;
  }

  .hero-eyebrow { margin-bottom: 56px; }

  .hero-heading {
    font-size: clamp(40px, 7.6vw, 104px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
    word-break: keep-all;
  }
  .hero-heading .accent {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .hero-heading .highlight {
    color: var(--warm);
    position: relative;
    display: inline-block;
  }
  .hero-heading .highlight::after {
    content: '';
    position: absolute;
    left: 4%; right: 4%;
    bottom: 0.06em;
    height: 0.12em;
    background: var(--warm);
    opacity: 0.25;
    z-index: -1;
  }

  .hero-sub {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(18px, 2.2vw, 26px);
    color: var(--ink-soft);
    max-width: 720px;
    line-height: 1.5;
    word-break: keep-all;
  }

  /* ───────────── SECTION HEADER ───────────── */
  .sec-head {
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .sec-title {
    font-size: clamp(32px, 5.2vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    word-break: keep-all;
    max-width: 900px;
  }
  .sec-title .accent {
    font-family: var(--serif);
    font-weight: 400;
  }
  .sec-title .underline {
    background-image: linear-gradient(transparent 65%, rgba(132,168,51,0.55) 65%);
    background-size: 100% 100%;
    padding: 0 0.08em;
  }

  /* ───────────── VALUES ───────────── */
  .values { padding: 100px 0; background: var(--bg-cream); }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .v-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 36px 30px 32px;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    transition: transform 0.5s cubic-bezier(.2,.7,.3,1), box-shadow 0.5s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .v-card::after {
    content: attr(data-num);
    position: absolute;
    top: 8px;
    right: 22px;
    font-family: var(--serif);
    font-size: 130px;
    font-weight: 400;
    color: var(--accent);
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2,.7,.3,1);
  }
  .v-card:hover::after {
    opacity: 0.12;
    transform: translateY(-4px);
  }
  .v-card > * { position: relative; z-index: 1; }
  .v-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(13,40,24,0.20);
  }
  .v-card-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.2em;
    margin-bottom: 32px;
  }
  .v-card-title { margin-bottom: 32px; }
  .v-card-en {
    display: block;
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--accent);
    margin-bottom: 10px;
  }
  .v-card-kr {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .v-card-tag {
    display: block;
    font-family: var(--serif);
    font-size: 16px;
    color: var(--gray);
    margin-top: 16px;
    line-height: 1.5;
    letter-spacing: -0.005em;
    word-break: keep-all;
  }
  .v-list { list-style: none; margin-top: auto; }
  .v-list li {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    padding: 12px 0;
    border-top: 1px solid var(--line);
    word-break: keep-all;
    display: flex;
    gap: 10px;
  }
  .v-list li::before {
    content: '→';
    color: var(--accent);
    font-family: var(--serif);
    flex-shrink: 0;
  }

  .v-card.featured { background: var(--bg-dark); }
  .v-card.featured::after {
    color: var(--warm);
    opacity: 0.20;
  }
  .v-card.featured .v-card-num { color: var(--warm-soft); }
  .v-card.featured .v-card-en { color: var(--warm); }
  .v-card.featured .v-card-kr { color: #fff; }
  .v-card.featured .v-card-tag { color: rgba(255,255,255,0.58); }
  .v-card.featured .v-list li {
    color: rgba(255,255,255,0.82);
    border-top-color: rgba(255,255,255,0.10);
  }
  .v-card.featured .v-list li::before { color: var(--warm-soft); }

  /* ───────────── MISSION ───────────── */
  .mission {
    background: var(--bg-dark);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
  }
  .mission::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,197,94,0.45), transparent 65%);
    filter: blur(60px);
    top: -200px; left: -100px;
    z-index: 0;
  }
  .mission::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132,168,51,0.45), transparent 65%);
    filter: blur(60px);
    bottom: -150px; right: -50px;
    z-index: 0;
  }
  .mission-inner {
    position: relative;
    z-index: 1;
    text-align: left;
  }
  .mission .eyebrow { color: var(--warm-soft); margin-bottom: 36px; }
  .mission-text {
    font-size: clamp(26px, 4.6vw, 60px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.028em;
    max-width: 1000px;
    word-break: keep-all;
  }
  .mission-text .accent {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--warm-soft);
  }
  .mission-text .light {
    color: rgba(255,255,255,0.55);
    font-weight: 300;
  }
  .mission-sig {
    margin-top: 64px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
  }
  .mission-sig::before, .mission-sig::after {
    content: '';
    width: 40px; height: 1px;
    background: currentColor;
  }

  /* ───────────── STRATEGY ───────────── */
  .strategy { padding: 120px 0; position: relative; }

  .strat-hero {
    display: flex;
    justify-content: center;
    margin: 16px 0 72px;
    position: relative;
  }
  .orb {
    width: 260px; height: 260px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 30%, #4ADE80 0%, var(--accent) 45%, var(--bg-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    box-shadow:
      0 30px 80px -10px rgba(21,128,61,0.50),
      inset 0 -20px 40px rgba(0,0,0,0.25),
      inset 0 10px 30px rgba(255,255,255,0.15);
    position: relative;
  }
  .orb::before {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    border: 1px dashed rgba(21,128,61,0.40);
    animation: spin 28s linear infinite;
  }
  .orb::after {
    content: '';
    position: absolute;
    inset: -56px;
    border-radius: 50%;
    border: 1px solid rgba(21,128,61,0.12);
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  .orb-sub {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
    text-transform: uppercase;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  }
  .orb-main {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .orb-main .em {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--warm-soft);
    display: block;
    font-size: 26px;
    margin-top: 6px;
  }

  .strat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .strat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 40px 36px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(.2,.7,.3,1);
  }
  .strat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--warm));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
  }
  .strat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(21,128,61,0.35);
    box-shadow: 0 30px 60px -20px rgba(21,128,61,0.20);
  }
  .strat-card:hover::before { transform: scaleX(1); }

  .strat-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    gap: 16px;
  }
  .strat-num {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.15em;
  }
  .strat-tag {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--gray);
  }
  .strat-title {
    font-size: clamp(18px, 2.1vw, 21px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: var(--ink);
    word-break: keep-all;
  }
  .strat-title .accent { color: var(--accent); }
  .strat-list { list-style: none; }
  .strat-list li {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-soft);
    padding: 10px 0 10px 22px;
    position: relative;
    word-break: keep-all;
    border-top: 1px solid var(--line);
  }
  .strat-list li:first-child { border-top: none; padding-top: 0; }
  .strat-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 18px;
    width: 10px; height: 1px;
    background: var(--accent);
  }
  .strat-list li:first-child::before { top: 8px; }

  /* ───────────── FOOTER ───────────── */
  .foot {
    border-top: 1px solid var(--line);
    padding: 40px 0;
    background: var(--bg-cream);
  }
  .foot-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .foot-text {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  /* ───────────── ANIMATIONS ───────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .reveal { animation: fadeUp 0.9s cubic-bezier(.2,.7,.3,1) both; }
  .d1 { animation-delay: 0.05s; }
  .d2 { animation-delay: 0.15s; }
  .d3 { animation-delay: 0.25s; }
  .d4 { animation-delay: 0.35s; }

  /* scroll-triggered reveal */
  .s-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.85s cubic-bezier(.2,.7,.3,1),
      transform 0.85s cubic-bezier(.2,.7,.3,1);
    will-change: opacity, transform;
  }
  .s-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .sd-1 { transition-delay: 0.08s; }
  .sd-2 { transition-delay: 0.16s; }
  .sd-3 { transition-delay: 0.24s; }
  .sd-4 { transition-delay: 0.32s; }

  /* gentle orb float */
  @keyframes orb-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
  }
  .orb { animation: orb-float 6s ease-in-out infinite; }

  /* respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .reveal, .s-reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
    .orb, .orb::before { animation: none !important; }
  }

  /* ───────────── RESPONSIVE ───────────── */
  @media (max-width: 960px) {
    .wrap { padding: 0 24px; }
    .hero { padding: 80px 0 70px; }
    .hero-eyebrow { margin-bottom: 36px; }
    .hero-sub { margin-top: 40px; padding-top: 24px; }

    .values { padding: 70px 0; }
    .values-grid { grid-template-columns: 1fr; gap: 14px; }
    .v-card { min-height: auto; padding: 30px 26px; }

    .mission { padding: 90px 0; }
    .mission-sig { margin-top: 40px; }

    .strategy { padding: 80px 0; }
    .strat-grid { grid-template-columns: 1fr; gap: 14px; }
    .strat-card { padding: 30px 26px; }
    .orb { width: 220px; height: 220px; }
    .orb-main { font-size: 16px; }
    .orb-main .em { font-size: 22px; }

    .sec-head { margin-bottom: 36px; }
  }

  @media (max-width: 520px) {
    .wrap { padding: 0 18px; }
    .hero { padding: 60px 0 60px; }
    .hero-heading { letter-spacing: -0.03em; }

    .v-card-en { font-size: 30px; }
    .v-list li { font-size: 13px; }
    .strat-list li { font-size: 13px; }

    .orb { width: 200px; height: 200px; }
    .orb::after { inset: -36px; }
    .orb-main { font-size: 15px; }
    .orb-main .em { font-size: 19px; }
  }